Rethinking Generalization of Neural Models: A Named Entity...

9
Rethinking Generalization of Neural Models: A Named Entity Recognition Case Study Jinlan Fu* , Pengfei Liu] * , Qi Zhang, Xuanjing HuangSchool of Computer Science, Fudan University, ] Language Technologies Institute, Carnegie Mellon University, {fujl16,qz,xjhuang}@fudan.edu.cn, [email protected] Abstract While neural network-based models have achieved impressive performance on a large body of NLP tasks, the generaliza- tion behavior of different models remains poorly understood: Does this excellent performance imply a perfect generalization model, or are there still some limitations? In this paper, we take the NER task as a testbed to analyze the generalization behavior of existing models from different perspectives and characterize the differences of their generalization abilities through the lens of our proposed measures, which guides us to better design models and training methods. Experiments with in-depth analyses diagnose the bottleneck of existing neural NER models in terms of breakdown performance analysis, an- notation errors, dataset bias, and category relationships, which suggest directions for improvement. We have released the datasets: (ReCoNLL, PLONER) for the future research at our project page: http://pfliu.com/InterpretNER/. 1 . 1 Introduction Neural network-based models have achieved great suc- cess on a wide range of NLP tasks (Devlin et al. 2018; Bahdanau, Cho, and Bengio 2014). However, the generaliza- tion behaviors of neural networks remain largely unexplained. Recently, some researchers are beginning to realize this prob- lem and attempt to understand the generalization behavior of neural networks in terms of network architectures or optimiza- tion procedure (Zhang et al. 2016; Baluja and Fischer 2017; Schmidt et al. 2018). However, it is incomplete to ignore the characteristics of tasks and datasets for generalization analy- sis since it not only depends on the model’s architectures but on the data itself (Arpit et al. 2017). In NLP, there is a massive gap between the growing task performance and the understanding of model generalization behavior. Many tasks have reached a plateau in the perfor- mance on a particular dataset (Rajpurkar, Jia, and Liang 2018; * These two authors contributed equally Copyright © 2020, Association for the Advancement of Artificial Intelligence (www.aaai.org). All rights reserved. 1 As a by-product of this paper, we have open-sourced a project that involves a comprehensive summary of recent NER papers and classifies them into different research topics: https://github.com/ pfliu-nlp/Named-Entity-Recognition-NER-Papers. Devlin et al. 2018), which calls for a data-dependent under- standing of models’ generalization behavior. In this paper, we take a step further towards diagnosing and characterizing generalization in the context of a specific task. Concretely, we take named entity recognition (NER) task as a study case and investigate three crucial yet rarely raised questions through entity- and class-centric generalization analyses. Q1: Does our model really have generalization ability, or it just pretends to understand and make some shallow template matches as observed in (Jia and Liang 2017)? We devise a measure, which can break down the test set into different interpretable groups, helping us diagnosing inadequacies in the generalization of NER models (Sec. 4.1). Furthermore, this measure makes it easier to find human annotation errors, which cover the actual generalization ability of the existing models (Sec. 4.1). Q2: What factor of a dataset can distin- guish neural networks that generalize well from those that don't? We introduce two metrics to quantify the dataset bias in a cross-dataset experimental setting, enabling us to better understand how the dataset bias influences the models’ gen- eralization ability (Sec. 4.2). Q3: How does the relationship between entity categories influence the difficulty of model learning? Our class-centric analysis shows that if two cate- gories, e.g. C 1 and C 2 , have overlaps (i.e. sharing a subset of entities), then most of the errors on C 1 made by the model are due to mistakenly predicting C 1 as C 2 (Sec. 4.3). Our experiment results show the prospects for further gains for these problems from novel architecture design and knowl- edge pre-training seem quite limited (Sec. 4.3). Tab. 1 shows the framework of our experimental designs. Main Contributions This paper understands the gener- alization behavior from multiple novel angles, which con- tributes from the following two perspectives: 1) For the task itself, we identify the bottleneck of existing methods on the NER task in terms of breakdown performance analysis, anno- tation errors, dataset bias, and category relationships, which suggest directions for improvement and can drive the progress of this area. 2) Other tasks can benefit from the research evi- dence found in this study. For example, this paper not only shows that utilizing less but more relevant data can achieve better performance, but also provides an effective and princi-

Transcript of Rethinking Generalization of Neural Models: A Named Entity...

Page 1: Rethinking Generalization of Neural Models: A Named Entity …pfliu.com/InterpretNER/rethink-ner.pdf · 2020-01-10 · Rethinking Generalization of Neural Models: A Named Entity Recognition

Rethinking Generalization of Neural Models:A Named Entity Recognition Case Study

Jinlan Fu†*, Pengfei Liu]*, Qi Zhang†, Xuanjing Huang††School of Computer Science, Fudan University,

] Language Technologies Institute, Carnegie Mellon University,{fujl16,qz,xjhuang}@fudan.edu.cn, [email protected]

Abstract

While neural network-based models have achieved impressiveperformance on a large body of NLP tasks, the generaliza-tion behavior of different models remains poorly understood:Does this excellent performance imply a perfect generalizationmodel, or are there still some limitations? In this paper, wetake the NER task as a testbed to analyze the generalizationbehavior of existing models from different perspectives andcharacterize the differences of their generalization abilitiesthrough the lens of our proposed measures, which guides us tobetter design models and training methods. Experiments within-depth analyses diagnose the bottleneck of existing neuralNER models in terms of breakdown performance analysis, an-notation errors, dataset bias, and category relationships, whichsuggest directions for improvement. We have released thedatasets: (ReCoNLL, PLONER) for the future research atour project page: http://pfliu.com/InterpretNER/.1.

1 IntroductionNeural network-based models have achieved great suc-cess on a wide range of NLP tasks (Devlin et al. 2018;Bahdanau, Cho, and Bengio 2014). However, the generaliza-tion behaviors of neural networks remain largely unexplained.Recently, some researchers are beginning to realize this prob-lem and attempt to understand the generalization behavior ofneural networks in terms of network architectures or optimiza-tion procedure (Zhang et al. 2016; Baluja and Fischer 2017;Schmidt et al. 2018). However, it is incomplete to ignore thecharacteristics of tasks and datasets for generalization analy-sis since it not only depends on the model’s architectures buton the data itself (Arpit et al. 2017).

In NLP, there is a massive gap between the growing taskperformance and the understanding of model generalizationbehavior. Many tasks have reached a plateau in the perfor-mance on a particular dataset (Rajpurkar, Jia, and Liang 2018;

*These two authors contributed equallyCopyright © 2020, Association for the Advancement of ArtificialIntelligence (www.aaai.org). All rights reserved.

1As a by-product of this paper, we have open-sourced a projectthat involves a comprehensive summary of recent NER papers andclassifies them into different research topics: https://github.com/pfliu-nlp/Named-Entity-Recognition-NER-Papers.

Devlin et al. 2018), which calls for a data-dependent under-standing of models’ generalization behavior.

In this paper, we take a step further towards diagnosing andcharacterizing generalization in the context of a specific task.Concretely, we take named entity recognition (NER) task asa study case and investigate three crucial yet rarely raisedquestions through entity- and class-centric generalizationanalyses.

Q1: Does our model really have generalization ability, or itjust pretends to understand and make some shallow templatematches as observed in (Jia and Liang 2017)? We devise ameasure, which can break down the test set into differentinterpretable groups, helping us diagnosing inadequacies inthe generalization of NER models (Sec. 4.1). Furthermore,this measure makes it easier to find human annotation errors,which cover the actual generalization ability of the existingmodels (Sec. 4.1). Q2: What factor of a dataset can distin-guish neural networks that generalize well from those thatdon't? We introduce two metrics to quantify the dataset biasin a cross-dataset experimental setting, enabling us to betterunderstand how the dataset bias influences the models’ gen-eralization ability (Sec. 4.2). Q3: How does the relationshipbetween entity categories influence the difficulty of modellearning? Our class-centric analysis shows that if two cate-gories, e.g. C1 and C2, have overlaps (i.e. sharing a subset ofentities), then most of the errors on C1 made by the modelare due to mistakenly predicting C1 as C2 (Sec. 4.3). Ourexperiment results show the prospects for further gains forthese problems from novel architecture design and knowl-edge pre-training seem quite limited (Sec. 4.3). Tab. 1 showsthe framework of our experimental designs.

Main Contributions This paper understands the gener-alization behavior from multiple novel angles, which con-tributes from the following two perspectives: 1) For the taskitself, we identify the bottleneck of existing methods on theNER task in terms of breakdown performance analysis, anno-tation errors, dataset bias, and category relationships, whichsuggest directions for improvement and can drive the progressof this area. 2) Other tasks can benefit from the research evi-dence found in this study. For example, this paper not onlyshows that utilizing less but more relevant data can achievebetter performance, but also provides an effective and princi-

Page 2: Rethinking Generalization of Neural Models: A Named Entity …pfliu.com/InterpretNER/rethink-ner.pdf · 2020-01-10 · Rethinking Generalization of Neural Models: A Named Entity Recognition

pled way to select more relevant training samples.Observations Our findings are summarized as follows: (1)

The fine-grained evaluation based on our proposed measurereveals that the performance of existing models (includingthe state-of-the-art model) heavily influenced by the degreeto which test entities have been seen in training set with thesame label (Exp-I in Sec. 4.1). (2) The proposed measureenables us to detect human annotation errors, which coverthe actual generalization ability of the existing model. Weobserve that once these errors are fixed, previous modelscan achieve new state-of-the-art results, 93.78 F1-score onCoNLL2003, which refers to Exp-II in Sec. 4.1. (3) We in-troduce two measures to characterize the data bias and thecross-dataset generalization experiment shows that the per-formance of NER systems is influenced not only by whetherthe test entity has been seen in the training set but also bywhether the context of the test entity has been observed (Exp-III in Sec. 4.2). (4) Providing more training samples is nota guarantee of better results. A targeted increase in trainingsamples will make it more profitable, which refers to Exp-IVin Sec. 4.2. (5) The relationship between entity categoriesinfluences the difficulty of model learning, which leads tosome hard test samples that are difficult to solve using com-mon learning methods, which refer to Exp-V and Exp-VI inSec. 4.3.

2 Related WorkOur work can be uniquely positioned in the context of thefollowing two aspects.

Neural Network-based Models for NER Some re-searchers design different architectures which vary in wordencoder (Chiu and Nichols 2016; Ma and Hovy 2016), sen-tence encoder (Huang, Xu, and Yu 2015; Ma and Hovy 2016;Chiu and Nichols 2016) and decoder (CRF) (Huang, Xu, andYu 2015). Some works explore how to transfer learned pa-rameters from the source domain to a new domain (Chen andMoschitti 2019; Lin and Lu 2018; Cao et al. 2018). Recently,(Yang, Liang, and Zhang 2018; Reimers and Gurevych 2017)systematically analyze neural NER models to provide usefulguidelines for NLP practitioners. Different from the aboveworks, instead of exploring the possibility for a new state-of-the-art in this paper, we aim to bridge the gap between thegrowing task performance and the understanding of modelgeneralization behavior.

Analyzing Generalization Ability of Neural NetworksMost existing works have analyzed the generalization powerof DNNs by quantifying how the number of parameters, noiselabel, regularization, influence training process on a set ofsimple classification tasks. (Fort, Nowak, and Narayanan2019) investigate neural network training and generaliza-tion by introducing a measure and study how it varies withtraining iteration and learning rate. (Zhang et al. 2016;Arpit et al. 2017) explore the generalization of the neuralnetwork by showing how the impact of representational ca-pacity changes with varying noise levels and regularization.The goal of this paper is to study in the light of a specificNLP task, discussing how neural networks achieve linguisticgeneralization abilities. More recently, (Zhong et al. 2019)try to analyze the generalization of neural networks in the

text summarization task, which is mainly performed from adataset perspective.

3 Task, Methods, and Datasets

3.1 Task Description

Named entity recognition (NER) is usually formulated asa sequence labeling problem (Borthwick et al. 1998). For-mally, let X = {x1, x2, . . . , xT } be an input sequence andY = {y1, y2, . . . , yT } be the output tags. The goal of thistask is to estimate the conditional probability: P (Y |X) =P (yt|X, y1, · · · , yt−1)

Why do We Choose the NER Task? The goal of this pa-per is to study how neural networks achieve linguistic-levelgeneralization abilities via the lens of a well-chosen NLPtask. Compared with other general classification tasks, theNER task is particularly suitable here because 1) it containsmore category labels; 2) different categories contain a num-ber of training samples, which provides an ideal testbed forus to observe the generalization behavior of neural networks.Although our focus is on NER tasks, our solution can beported to the other tagging problems.

3.2 Neural Network-based Methods for NER

To evaluate the importance of different components of theNER systems, we varied our models mainly in terms of threeaspects: different choices of character-, word-, and sentence-level encoders and decoders. Tab.2 illustrates the modelswe have studied in this paper. Specifically, for Exp-I, wemainly focus on how different choices of pre-trained models(Mikolov et al. 2013; Peters et al. 2018; Devlin et al. 2018)influence systems’ generalization abilities. All models adoptLSTM as sentence encoder and CRF as the decoder. ForExp-III and Exp-IV, we use CnoneWrandlstmCrf model toachieve cross-dataset generalization evaluation.

For Exp-V, we adopt CcnnWglovelstmMLP architecturesince MLP decoder is easy to compute the measure Consis-tency. For Exp-VI, detailed choices of evaluated models arelisted in Tab.7.

3.3 NER Datasets for Evaluation

We conduct experiments on three benchmark datasets: theCoNLL2003 NER dataset, the WNUT16 dataset, an dOntoNotes 5.0 dataset. The CoNLL2003 NER dataset (Sangand De Meulder 2003) is based on Reuters data (Collobert etal. 2011). WNUT16 dataset is provided by the second sharedtask at WNUT-2016. The OntoNotes 5.0 dataset (Weischedelet al. 2013) is collected from telephone conversations (TC),newswire (NW), newsgroups, broadcast news (BN), broad-cast conversation (BC) and weblogs (WB), pivot text (PT)and magazine genre (MZ). Due to the lack of NER labelsof PT and the insufficient amount of data of TC, we onlyevaluate the other five domains.

Page 3: Rethinking Generalization of Neural Models: A Named Entity …pfliu.com/InterpretNER/rethink-ner.pdf · 2020-01-10 · Rethinking Generalization of Neural Models: A Named Entity Recognition

Views Q. Measures Applications

EntityQ1 (Sec. 4.1) Entity Coverage Ratio

(Exp I) Breaking down the test set(Exp-II) Annotation errors detecting and fixing

Q2 (Sec. 4.2)Expectation of Coverage Ratio (Exp-III) Cross-dataset generalizationContextual Coverage Ratio (Exp-IV) Order matters for data augmentation

Category Q3 (Sec. 4.3) Consistency (Exp V) Probing inter-category relationships(Exp-VI) Exploring the errors of hard cases

Table 1: Outline of our experiment designs. Q1: Does our model really have generalization? Q2: What factor of a dataset candistinguish neural networks that generalize well from those that don’t? Q3: How does the relationship between entity categoriesinfluence the difficulty of model learning?

ModelsCharacter Word Sentence Decoder

none

cnn

elm

ofla

irbe

rtno

nera

ndgl

ove

lstm

cnn

crf

mlp

CcnnWglovecnnMlp√ √ √ √

CcnnWglovelstmMlp√ √ √ √

CcnnWglovecnnCrf√ √ √ √

CnoneWglovelstmCrf√ √ √ √

CcnnWglovelstmCrf√ √ √ √

CelmWnonelstmCrf√ √ √ √

CelmWglovelstmCrf√ √ √ √

CnoneWrandlstmCrf√ √ √ √

CflairWglovelstmCrf√ √ √ √

CbertWnonelstmCrf√ √ √ √

Table 2: Neural NER systems with different architectures andpre-trained knowledge, which we studied in this paper.

4 Experiment and Analysis4.1 Diagnosing Generalization with Entity

Coverage RatioThe generalization ability of neural models is often evaluatedbased on a holistic metric over the whole test set. For example,the performance of the NER system is commonly measuredby the F1 score. Despite its effectiveness, this holistic metricfails to provide fine-grained analysis and as a result, weare not clear about what the strengths and weaknesses of aspecific NER system are.

Driven by Q1, we propose to shift the focus of evaluationfrom a holistic way to fine-grained way, navigating directly tothe parts which influence the generalization ability of neuralNER models. We approach the above end by introducing thenotion of entity coverage ratio (ECR) for each test entity,by which the test set will be divided into different sub-sets,and the overall performance could be broken down into inter-pretable categories.

Entity Coverage Ratio (ECR) The measure entity cover-age ratio is used to describe the degree to which entities inthe test set have been seen in the training set with the samecategory. Specifically, we refer to ei as a test entity, whosecoverage ratio is defined as:

ρ(ei) =

{0 C = 0

(∑Kk=1

#(etr,ki )

Ctr #̇(ete,ki ))/Cte otherwise(1)

ρ(e) Interpretation

ρ = 1 Entity e appears in train set with only label kρ ∈ (0, 1) Entity e appears in train set with diverse labelsρ = 0 ∧ C 6= 0 Entity e appears in train set but without label kρ = 0 ∧ C = 0 Entity e doesn’t appear in train set

Table 3: Interpretation of ρ with different values.

where etr,ki is the entity ei in the training set with groundtruth label k, ete,ki is the entity ei in the test set with groundtruth label k, Ctr =

∑Kk=1 #(etr,ki ), Cte =

∑Kk=1 #(ete,ki ),

and # denotes the counting operation.For example, in the training set, “chelsea” is labeled

as the category Person 6 times, and Organization 4times, while in the test set, labeled as Person 3 times andOrganization 2 times, so ρ (“chelsea”) = (0.6× 3 +0.4 × 2)/3 = 0.52. According to Eq.1, we can investigatethe relationship between the coverage ratio of the entity eiand model’s generalization ability on this entity. The possiblevalues of ρ(ei) and their corresponding interpretation can befound in Tab. 3.

Exp-I: Breaking Down the Test Set

Instead of utilizing a holistic metric on the whole dataset,we break down the test set into interpretable regions by themeasure ρ and then observe how the generalization ability ofthe NER models varies with it.

Results Based on Tab. 4 and driven by Q1, our observa-tions are: 1) In general, the part of test entities with highperformance are usually the ones that appear in the trainingset. By contrast, if the test entity is unseen, it will achievea lower performance. 2) No matter what level (characteror word) pre-trained embeddings are introduced, the perfor-mances of unseen entities are largely improved. 3) Compar-ing two different levels of pre-trained methods, ELMo andFLAIR achieve better performances on unseen entities buthave not shown significant gain on seen entities. 4) Com-pared to Rand, CNN shows its superior performance on theprediction of unseen entities. 5) For different parts of the testset, we find C 6= 0 is the most challenging part (even for

Page 4: Rethinking Generalization of Neural Models: A Named Entity …pfliu.com/InterpretNER/rethink-ner.pdf · 2020-01-10 · Rethinking Generalization of Neural Models: A Named Entity Recognition

DatasetsEmbed-layer Entity Coverage Rate

Char Word Overall 1 (0.5, 1) (0, 0.5] C 6= 0 C = 0

CoNLL

CNN - 76.42 79.94 86.99 78.84 69.74 77.61FLAIR - 89.98 95.30 95.58 82.39 72.16 90.39ELMo - 91.79 97.61 95.98 85.15 71.43 92.22BERT - 91.34 97.72 95.17 86.66 77.83 92.37- Rand 78.43 95.05 94.75 73.54 37.97 66.40- GloVe 89.10 98.44 96.31 81.34 57.80 87.23CNN Rand 82.88 94.13 94.48 74.25 47.78 78.91CNN GloVe 90.33 98.32 95.94 80.33 59.67 89.74ELMo GloVe 92.46 98.08 96.46 86.14 69.79 93.08FLAIR GloVe 93.03 98.56 96.38 87.07 73.58 93.42

WNUT

CNN - 20.88 45.99 67.01 40.25 19.14 19.74FLAIR - 41.49 81.15 88.14 54.36 39.56 43.44ELMo - 43.70 88.72 90.83 55.56 44.19 43.32BERT - 44.08 77.75 81.61 49.74 34.65 41.92- Rand 14.97 60.62 83.84 50.00 3.90 4.77- GloVe 37.28 89.29 92.62 45.65 35.34 35.15CNN Rand 22.29 48.88 71.43 39.08 16.75 18.83CNN GloVe 40.72 86.12 92.24 49.74 26.67 40.06ELMo GloVe 45.33 90.38 89.92 56.57 37.8 46.58FLAIR GloVe 45.96 90.52 89.92 61.69 42.07 48.38

Table 4: The breakdown performance on CoNLL and WNUT datasets with different pre-training strategies, which is based onthe LSTM as sentence encoder and CRF as the decoder. “Rand” represents the word representations are randomly initialized.“Overall” denotes the F1 score on the whole test set and the names of the last five columns correspond to ρ definition in Tab.3.

the state-of-the-art model), followed by C = 0 and (0, 0.5].Interestingly, on the CoNLL dataset, we find that if the testentity is labeled as a different category in the training set, itwill be more difficult to learn compared with entities whichhave not been seen in the training set. 6) We find that thecharacter- and the word-level pre-trained embeddings arecomplementary to each other. Combining these two types ofpre-trained knowledge will further improve the performanceby a considerable margin.

Exp-II: Annotation Errors Detecting and Fixing

For each test entity with tag k, the measure ECR quantifiesits label ambiguity: the proportion that this entity is labeledas k in the training set. Its intriguing property could help usfind the annotation errors of the dataset.

Detecting Errors Specifically, since ρmeasures the degreeto which entities in the test set have been seen in the trainingset with the same label, the value of ρ within some rangessuggests that corresponding entities are more prone to an-notation errors, such as ρ = 0, C 6= 0 (entity ek appearedin train set but without label k) and ρ ∈ (0, 0.5] (entity ekappeared in train set with diverse labels).

Fixing Errors While researchers have been aware of anno-tation errors, such as on the tasks of Part-of-Speech (Manning2011) and Chinese word segmentation (Ma, Ganchev, andWeiss 2018), yet few attempts have been made to fix them.The significance of correcting annotation errors for tagging

tasks has been originally mentioned by (Manning 2011). Inthis paper, we argue that fixing annotation errors can not onlyboost the NER performance, but can reflect the true general-ization ability of the existing models, making it possible toidentify the real weaknesses of current systems.

Evaluation on Revised CoNLL (ReCoNLL) Many errorsand inconsistencies in NER datasets are quite non-systematicand are hard to fix by deterministic rules. Therefore, wemanually fixed errors with the instruction of the measure ECR(entity coverage ratio). Finally, we corrected 65 sentences inthe test set, and 14 sentences in training set. When the reviseddataset is ready, we re-train several typical NER models andmake a comparison to the original ones.

The results are shown in Tab. 5. We find that once theseerrors are fixed, the performance of all these models hasbeen improved, which indicates that human annotation errorscover the actual generalization ability of the existing model.Notably, the NER model FLAIR has driven the state-of-the-art result to a new level.

4.2 Measuring Dataset BiasTo answer the question Q2: “what factor of a dataset candistinguish neural networks that generalize well from thosethat don’t”, in this section, we introduce two measures, whichcan quantify the relationship of entities between trainingand test sets from dataset-level and help us understand thegeneralization behavior.

Expectation of Entity Coverage Ratio (EECR) Here, wedefine the expectation of the coverage ratio over all entities

Page 5: Rethinking Generalization of Neural Models: A Named Entity …pfliu.com/InterpretNER/rethink-ner.pdf · 2020-01-10 · Rethinking Generalization of Neural Models: A Named Entity Recognition

Model CoNLL ReCoNLL

(Devlin et al. 2018) 92.80 -(Peters et al. 2018) 92.22 -(Akbik, Blythe, and Vollgraf 2018) 93.09 -(Akbik, Bergmann, and Vollgraf ) 93.18 -

Our Implementation

GloVe 89.10 89.85ELMo 91.79 92.65BERT 91.34 92.16FLAIR 93.03 93.78

Table 5: The test performance (F1 score) on CoNLL 2003and its revised version.

in test data as Eρ(e) as follows:

Eρ(e) =∑i∈Ne

ρ(ei) ∗ freq(ei) (2)

in which Ne denotes the number of unique test entities andfreq(ei) represents the frequency of the test entity ei.

This index measures the degree to which the test entitieshave been seen in the training set. A higher value is suggestiveof a larger proportion of entities with high coverage ratio.

Contextual Coverage Ratio (CCR) We introduce a no-tion of η to measure the contextual similarity of entitiesbelonging to the same category but from the training and thetest sets, respectively.

ηk(Dtr, Dte) =∑fi∈φkte

∑fj∈φktr

pfipfjSim(vfi , vfj ) (3)

where k denotes the category of an entity. Dtr and Dte rep-resents the training and test sets. φktr denotes a set of thehigh-frequency contextual patterns in which entities in train-ing set reside in. We set the window size to 3, and choose 30bigrams and 20 trigrams, then we obtain their vector repre-sentation vf∗ of each word span using BERT followed by amean operation. Sim(·) is a cosine-similarity function. pfiis the probability of the contextual pattern fi, which is usingthe frequency of the contextual pattern divided by the totalcontextual patterns’ frequency.

Exp-III: Cross-dataset Generalization

The Expectation of Entity Coverage Ratio and ContextualCoverage Ratio can measure the similarity between trainingand test set from a different perspective. Next, we show howthese two measures correlate with the model’s performanceby a cross-dataset generalization experiment.

Data Construction: PLONER We re-purpose a dataset forcross-domain generalization evaluation, in which three typesof entities (PERSON, LOCATION, ORGANIZATION) from dif-ferent domains are involved, therefore named “PLONER”dataset. Specifically, we pick a set of representative NER

datasets including: WNUT16, CoNLL03, OntoNotes-bn, OntoNotes-wb, OntoNotes-mz, OntoNotes-nw, and OntoNotes-bc. These datasets use disparate en-tity classification schemes, which makes it hard to conductzero-shot transfer. We collapse types into standard categoriesused in the MUC (Grishman and Sundheim 1996) competi-tions (PERSON, LOCATION, ORGANIZATION) and the othercategories are dropped. 2 To be fair, we limited the numberof samples in each dataset to the same 2,500.

Matrix Train WN. Co. BN WB MZ NW BC P-row

MF

1

WN. 46.6 16.7 12.0 13.8 11.4 6.50 11.7 0.98

Co. 22.2 70.2 19.4 17.5 12.7 19.8 17.3 0.93BN 24.4 35.2 65.7 35.4 28.6 36.2 42.3 0.93WB 19.6 25.6 28.0 55.7 17.3 28.3 25.8 0.83

MZ 15.3 25.0 29.7 21.8 67.8 32.2 26.6 0.89NW 22.2 24.2 32.6 29.3 24.6 68.4 26.9 0.87BC 28.6 29.1 41.1 43.6 25.5 33.2 70.3 0.90

P-col 0.93 0.97 0.97 0.83 0.96 0.94 0.96 0.88

WN. 1.00 0.26 0.29 0.21 0.07 0.24 0.31 0.96

Co. 0.325 1.00 0.35 0.37 0.29 0.36 0.37 0.94BN 0.35 0.33 1.00 0.49 0.32 0.45 0.65 0.95WB 0.27 0.22 0.43 1.00 0.29 0.34 0.52 0.91

MZ 0.15 0.15 0.24 0.15 1.00 0.31 0.23 0.99NW 0.20 0.27 0.38 0.34 0.34 1.00 0.41 0.92BC 0.28 0.22 0.52 0.49 0.35 0.36 1.00 0.87

P-col 0.95 0.95 0.91 0.89 0.97 0.92 0.92 0.78

WN. 1.00 0.06 0.08 0.11 0.07 0.03 0.12 0.99

Co. 0.176 1.00 0.20 0.35 0.20 0.13 0.27 0.91BN 0.19 0.22 1.00 0.56 0.34 0.18 0.65 0.88WB 0.29 0.26 0.41 0.88 0.42 0.23 0.70 0.70

MZ 0.32 0.28 0.43 1.00 1.00 0.33 0.68 0.57NW 0.36 0.22 0.42 0.90 0.53 1.00 0.69 0.70BC 0.26 0.22 0.40 0.52 0.32 0.19 1.00 0.90

P-col 0.85 0.97 0.96 0.45 0.93 0.93 0.83 0.89

Table 6: Illustration of F1 score, EECR, and CCR on cross-dataset setting. P-row and P-col represent row- andcolumn-wise Pearson correlation coefficient. Green, Pinkand Yellow regions denote the correlation between MF1

and Mρ+Mφ, Mρ, Mφ respectively. The Blue is the overallcorrelation coefficient.

Results Tab. 6 shows the cross-dataset expectation of cov-erage ratio (Mρ), contextual coverage ratio (Mφ), and F1score (MF1). Each column corresponds to the performancewhen testing on one dataset and training on each of otherdatasets. We detail our findings as follows:

1) The diagonal elements of the MF1 achieve the highestvalues, which suggests that models generalize poorly on thesamples from different distributions (domains).

2) The highest values are also achieved on the diagonalin Mρ and Mφ. Additionally, from the values of Pearsoncoefficient, we could find the two measures: expectation of

2We have released the dataset.

Page 6: Rethinking Generalization of Neural Models: A Named Entity …pfliu.com/InterpretNER/rethink-ner.pdf · 2020-01-10 · Rethinking Generalization of Neural Models: A Named Entity Recognition

coverage ratio (Mρ), contextual coverage ratio (Mφ) correlateclosely with F1-score Mρ.

3) Column-wisely, given a test dataset, ρ, φ, and F1 canusually achieve the highest values on the same training set,which suggests we can select the most useful training setsthrough the measures ρ and φ when the distribution to betested is given and we have some samples from it as thevalidation set.

4) Given a test set, the training set with higher EECR(Expectation of Entity Coverage Ratio) value could also ob-tain a lower F1 score, since entity coverage ratio is not theonly factor that effects generalization and the contextualcoverage ratio also matters.

A significant case can be found in Tab. 6 (numbers inboxes), taking the WB as a test set, we observe that WNUT andCoNLL have higher ECR(ρ) value than MZ while obtaininglower F1 score. We can speculate the reason from the φ-M , that the contextual coverage ratio between WB and MZ ismuch higher than utilizing WNUT and CoNLL as training sets.The above results show that the generalization ability of NERmodels is influenced not only by whether the test entity hasbeen seen in the training set but also by whether the contextof the test entity has been seen.

Exp-IV: Order Matters for Data Augmentation

The measure ECCR can be used to quantify the im-portance of different source domains, therefore allowingus to select suitable ones for data augmentation. Next wewill show how to utilize the ECCR metric to make bet-ter choices of source domains from the seven candidates:WNUT16, CoNLL03, OntoNotes-bn, OntoNotes-wb,OntoNotes-mz, OntoNotes-nw, and OntoNotes-bc. We take WNUT as the tested object and continuouslyincrease the training samples of above seven datasets in threeways: 1) random order of EECR scores; 2) descending orderof EECR scores; 3) ascending order of EECR scores;

Results Fig. 1 shows the results and we can find that it isnot that the more training data we have, the better perfor-mance we will obtain. When we introduce multiple trainingsets for data augmentation, the order of the distance betweentraining sets and validation sets can help us select the mostuseful training sets.

4.3 Diagnosing Generalization with ConsistencyAbove entity-centric analyses encourage us to find inter-pretable factors that affect the model’s generalization ability.We can also understand the models’ generalization behaviorfrom the perspective of the category of each entity. To an-swer the question Q3, we propose to use a proxy measureconsistency via the angle of gradients to investigate how therelationship between entity categories influence the difficultyof model learning.

The core idea behind the measure consistency is to quan-tify the effect of different test samples on the trained pa-rameters in NER models. Formally, given a training samplex and its ground truth label y, we refer to f(x, θ) as the

1 2 3 4 5 6 750

52

54

56

58

60

descendascendrandom

Figure 1: Changes of F1-score as more source domains areintroduced in three different orders: descending order (red),ascending order (orange) and random order (blue) of EECRscores.

Algorithm 1 Consistency calculation and evaluation forNamed Entity RecognitionRequire: Training dataset Dtr and multiple subsets of validation

dataDval1 , · · · ,Dval

K ⊂ Dval. . K is the number of categoriesRequire: Parameters of the model θ ← θ0

1: Train the model using Dtr: θ ← θ̂2: for p ∈ {1 · · ·K} do3: for q ∈ {1 · · ·K} do4: Compute class-level consistency: δ(p, q) =

1|Dvalp ||Dvalq |

∑|Dvalp |i

∑|Dvalq |j Cs(pei ,

qej ) . Eq.4

5: end for6: end for7: Obtain a consistency matrix M ∈ RK×K =0

parameterized neural network. Generally, the loss functionL(f(x, θ), y) shows the difference between model’s outputand ground truth label. And the gradients of the loss withrespect to θ can be formulated as: g = ∇θL(f(x, θ), y) Here,we propose to characterize the generalization ability of neu-ral networks by observing the gradients’ behaviors of testsamples. Specifically, given any two samples, the measureconsistency Cs can be defined as the cosine angle of theirgradients: Cs(1,2 ) = 1·2

|1||2| , where |v| denotes the L2-normof vector v. 1 and 2 represent two gradient vectors derivedfrom two samples. The idea of utilizing the angle of gradientsinduced by two test examples has been originally exploredon image classification (Fort, Nowak, and Narayanan 2019).Here, we extend this idea to NLP tasks.

Consistency Evaluation for NER Formally, given an en-tity ek and its label yk, we refer to gke = ∇θL(f(x, θ), yk)as its generated gradient vector, where x is the input samplecontaining entity ek. Then, for any two samples that con-tain two entities (ei and ej) with different categories (p andq), we introduce the measure δ(p, q) to quantify the differ-ence between two directions along which the parameters areupdated.

δ(p, q) =1

CpCq

Cp∑i

Cq∑j

Cs(pei ,qej ) (4)

Page 7: Rethinking Generalization of Neural Models: A Named Entity …pfliu.com/InterpretNER/rethink-ner.pdf · 2020-01-10 · Rethinking Generalization of Neural Models: A Named Entity Recognition

gqe

<latexit sha1_base64="WK2N2RXfidl+wc4LSbGGG3Z/fX4=">AAACzHicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdFlw40oq2IdULUk6rUPzcjIRSsjWH3Cr3yX+gf6Fd8YU1CI6IcmZc+85M/deN/Z5Ii3rtWTMzS8sLpWXKyura+sb1c2tdhKlwmMtL/Ij0XWdhPk8ZC3Jpc+6sWBO4Pqs445PVLxzz0TCo/BCTmJ2HTijkA+550iiLkc32V3ez1jer9asuqWXOQvsAtRQrGZUfcEVBojgIUUAhhCSsA8HCT092LAQE3eNjDhBiOs4Q44KaVPKYpThEDum74h2vYINaa88E6326BSfXkFKE3ukiShPEFanmTqeamfF/uadaU91twn93cIrIFbilti/dNPM/+pULRJDHOsaONUUa0ZV5xUuqe6Kurn5pSpJDjFxCg8oLgh7Wjnts6k1ia5d9dbR8TedqVi194rcFO/qljRg++c4Z0H7oG5bdfv8sNawilGXsYNd7NM8j9DAKZpokXeARzzh2TgzpJEZ+WeqUSo02/i2jIcP0n6TLQ==</latexit><latexit sha1_base64="WK2N2RXfidl+wc4LSbGGG3Z/fX4=">AAACzHicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdFlw40oq2IdULUk6rUPzcjIRSsjWH3Cr3yX+gf6Fd8YU1CI6IcmZc+85M/deN/Z5Ii3rtWTMzS8sLpWXKyura+sb1c2tdhKlwmMtL/Ij0XWdhPk8ZC3Jpc+6sWBO4Pqs445PVLxzz0TCo/BCTmJ2HTijkA+550iiLkc32V3ez1jer9asuqWXOQvsAtRQrGZUfcEVBojgIUUAhhCSsA8HCT092LAQE3eNjDhBiOs4Q44KaVPKYpThEDum74h2vYINaa88E6326BSfXkFKE3ukiShPEFanmTqeamfF/uadaU91twn93cIrIFbilti/dNPM/+pULRJDHOsaONUUa0ZV5xUuqe6Kurn5pSpJDjFxCg8oLgh7Wjnts6k1ia5d9dbR8TedqVi194rcFO/qljRg++c4Z0H7oG5bdfv8sNawilGXsYNd7NM8j9DAKZpokXeARzzh2TgzpJEZ+WeqUSo02/i2jIcP0n6TLQ==</latexit><latexit sha1_base64="WK2N2RXfidl+wc4LSbGGG3Z/fX4=">AAACzHicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdFlw40oq2IdULUk6rUPzcjIRSsjWH3Cr3yX+gf6Fd8YU1CI6IcmZc+85M/deN/Z5Ii3rtWTMzS8sLpWXKyura+sb1c2tdhKlwmMtL/Ij0XWdhPk8ZC3Jpc+6sWBO4Pqs445PVLxzz0TCo/BCTmJ2HTijkA+550iiLkc32V3ez1jer9asuqWXOQvsAtRQrGZUfcEVBojgIUUAhhCSsA8HCT092LAQE3eNjDhBiOs4Q44KaVPKYpThEDum74h2vYINaa88E6326BSfXkFKE3ukiShPEFanmTqeamfF/uadaU91twn93cIrIFbilti/dNPM/+pULRJDHOsaONUUa0ZV5xUuqe6Kurn5pSpJDjFxCg8oLgh7Wjnts6k1ia5d9dbR8TedqVi194rcFO/qljRg++c4Z0H7oG5bdfv8sNawilGXsYNd7NM8j9DAKZpokXeARzzh2TgzpJEZ+WeqUSo02/i2jIcP0n6TLQ==</latexit>

gpe

<latexit sha1_base64="yEI7KYKZ7CBwAcYN0esNTFxgdMY=">AAACzHicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdFlw40oq2IfUWpJ0WkPzYjIRSsjWH3Cr3yX+gf6Fd8YpqEV0QpIz595zZu69bhL4qbCs15KxsLi0vFJeraytb2xuVbd32mmccY+1vDiIedd1Uhb4EWsJXwSsm3DmhG7AOu7kTMY794ynfhxdiWnC+qEzjvyR7zmCqOvxbZ4Ug5wVg2rNqltqmfPA1qAGvZpx9QU3GCKGhwwhGCIIwgEcpPT0YMNCQlwfOXGckK/iDAUqpM0oi1GGQ+yEvmPa9TQb0V56pkrt0SkBvZyUJg5IE1MeJyxPM1U8U86S/c07V57yblP6u9orJFbgjti/dLPM/+pkLQIjnKoafKopUYysztMumeqKvLn5pSpBDglxEg8pzgl7Sjnrs6k0qapd9tZR8TeVKVm593Ruhnd5Sxqw/XOc86B9VLetun15XGtYetRl7GEfhzTPEzRwjiZa5B3iEU94Ni4MYeRG8ZlqlLRmF9+W8fAB0BmTLA==</latexit><latexit sha1_base64="yEI7KYKZ7CBwAcYN0esNTFxgdMY=">AAACzHicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdFlw40oq2IfUWpJ0WkPzYjIRSsjWH3Cr3yX+gf6Fd8YpqEV0QpIz595zZu69bhL4qbCs15KxsLi0vFJeraytb2xuVbd32mmccY+1vDiIedd1Uhb4EWsJXwSsm3DmhG7AOu7kTMY794ynfhxdiWnC+qEzjvyR7zmCqOvxbZ4Ug5wVg2rNqltqmfPA1qAGvZpx9QU3GCKGhwwhGCIIwgEcpPT0YMNCQlwfOXGckK/iDAUqpM0oi1GGQ+yEvmPa9TQb0V56pkrt0SkBvZyUJg5IE1MeJyxPM1U8U86S/c07V57yblP6u9orJFbgjti/dLPM/+pkLQIjnKoafKopUYysztMumeqKvLn5pSpBDglxEg8pzgl7Sjnrs6k0qapd9tZR8TeVKVm593Ruhnd5Sxqw/XOc86B9VLetun15XGtYetRl7GEfhzTPEzRwjiZa5B3iEU94Ni4MYeRG8ZlqlLRmF9+W8fAB0BmTLA==</latexit><latexit sha1_base64="yEI7KYKZ7CBwAcYN0esNTFxgdMY=">AAACzHicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdFlw40oq2IfUWpJ0WkPzYjIRSsjWH3Cr3yX+gf6Fd8YpqEV0QpIz595zZu69bhL4qbCs15KxsLi0vFJeraytb2xuVbd32mmccY+1vDiIedd1Uhb4EWsJXwSsm3DmhG7AOu7kTMY794ynfhxdiWnC+qEzjvyR7zmCqOvxbZ4Ug5wVg2rNqltqmfPA1qAGvZpx9QU3GCKGhwwhGCIIwgEcpPT0YMNCQlwfOXGckK/iDAUqpM0oi1GGQ+yEvmPa9TQb0V56pkrt0SkBvZyUJg5IE1MeJyxPM1U8U86S/c07V57yblP6u9orJFbgjti/dLPM/+pkLQIjnKoafKopUYysztMumeqKvLn5pSpBDglxEg8pzgl7Sjnrs6k0qapd9tZR8TeVKVm593Ruhnd5Sxqw/XOc86B9VLetun15XGtYetRl7GEfhzTPEzRwjiZa5B3iEU94Ni4MYeRG8ZlqlLRmF9+W8fAB0BmTLA==</latexit>

Cs > 0<latexit sha1_base64="N0TWKijOMPXaStSqjp4MvNd0htM=">AAAC0XicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdCWFblxWtA9oqyTTaRuaF5OJUEpB3PoDbvWnxD/Qv/DOmIJaRCckOXPuPWfm3uvGvpdIy3rNGQuLS8sr+dXC2vrG5lZxe6eRRKlgvM4iPxIt10m474W8Lj3p81YsuBO4Pm+6o6qKN2+5SLwovJLjmHcDZxB6fY85kqhrsxM4ciiCSTWZnlk3xZJVtvQy54GdgRKyVYuKL+ighwgMKQJwhJCEfThI6GnDhoWYuC4mxAlCno5zTFEgbUpZnDIcYkf0HdCunbEh7ZVnotWMTvHpFaQ0cUCaiPIEYXWaqeOpdlbsb94T7anuNqa/m3kFxEoMif1LN8v8r07VItHHqa7Bo5pizajqWOaS6q6om5tfqpLkEBOncI/igjDTylmfTa1JdO2qt46Ov+lMxao9y3JTvKtb0oDtn+OcB42jsm2V7YvjUsXKRp3HHvZxSPM8QQXnqKFO3gKPeMKzcWmMjTvj/jPVyGWaXXxbxsMHhJ6Ulg==</latexit><latexit sha1_base64="N0TWKijOMPXaStSqjp4MvNd0htM=">AAAC0XicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdCWFblxWtA9oqyTTaRuaF5OJUEpB3PoDbvWnxD/Qv/DOmIJaRCckOXPuPWfm3uvGvpdIy3rNGQuLS8sr+dXC2vrG5lZxe6eRRKlgvM4iPxIt10m474W8Lj3p81YsuBO4Pm+6o6qKN2+5SLwovJLjmHcDZxB6fY85kqhrsxM4ciiCSTWZnlk3xZJVtvQy54GdgRKyVYuKL+ighwgMKQJwhJCEfThI6GnDhoWYuC4mxAlCno5zTFEgbUpZnDIcYkf0HdCunbEh7ZVnotWMTvHpFaQ0cUCaiPIEYXWaqeOpdlbsb94T7anuNqa/m3kFxEoMif1LN8v8r07VItHHqa7Bo5pizajqWOaS6q6om5tfqpLkEBOncI/igjDTylmfTa1JdO2qt46Ov+lMxao9y3JTvKtb0oDtn+OcB42jsm2V7YvjUsXKRp3HHvZxSPM8QQXnqKFO3gKPeMKzcWmMjTvj/jPVyGWaXXxbxsMHhJ6Ulg==</latexit><latexit sha1_base64="N0TWKijOMPXaStSqjp4MvNd0htM=">AAAC0XicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdCWFblxWtA9oqyTTaRuaF5OJUEpB3PoDbvWnxD/Qv/DOmIJaRCckOXPuPWfm3uvGvpdIy3rNGQuLS8sr+dXC2vrG5lZxe6eRRKlgvM4iPxIt10m474W8Lj3p81YsuBO4Pm+6o6qKN2+5SLwovJLjmHcDZxB6fY85kqhrsxM4ciiCSTWZnlk3xZJVtvQy54GdgRKyVYuKL+ighwgMKQJwhJCEfThI6GnDhoWYuC4mxAlCno5zTFEgbUpZnDIcYkf0HdCunbEh7ZVnotWMTvHpFaQ0cUCaiPIEYXWaqeOpdlbsb94T7anuNqa/m3kFxEoMif1LN8v8r07VItHHqa7Bo5pizajqWOaS6q6om5tfqpLkEBOncI/igjDTylmfTa1JdO2qt46Ov+lMxao9y3JTvKtb0oDtn+OcB42jsm2V7YvjUsXKRp3HHvZxSPM8QQXnqKFO3gKPeMKzcWmMjTvj/jPVyGWaXXxbxsMHhJ6Ulg==</latexit>Cs = 0

<latexit sha1_base64="wQU2EL3Hhfcq5X/7AGwpObdx+TQ=">AAAC0XicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdCMUunFZ0T6grZJMp21oXkwmQikFcesPuNWfEv9A/8I7YwpqEZ2Q5My595yZe68b+14iLes1ZywsLi2v5FcLa+sbm1vF7Z1GEqWC8TqL/Ei0XCfhvhfyuvSkz1ux4E7g+rzpjqoq3rzlIvGi8EqOY94NnEHo9T3mSKKuzU7gyKEIJtVkembdFEtW2dLLnAd2BkrIVi0qvqCDHiIwpAjAEUIS9uEgoacNGxZi4rqYECcIeTrOMUWBtCllccpwiB3Rd0C7dsaGtFeeiVYzOsWnV5DSxAFpIsoThNVppo6n2lmxv3lPtKe625j+buYVECsxJPYv3SzzvzpVi0Qfp7oGj2qKNaOqY5lLqruibm5+qUqSQ0ycwj2KC8JMK2d9NrUm0bWr3jo6/qYzFav2LMtN8a5uSQO2f45zHjSOyrZVti+OSxUrG3Uee9jHIc3zBBWco4Y6eQs84gnPxqUxNu6M+89UI5dpdvFtGQ8fgj2UlQ==</latexit><latexit sha1_base64="wQU2EL3Hhfcq5X/7AGwpObdx+TQ=">AAAC0XicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdCMUunFZ0T6grZJMp21oXkwmQikFcesPuNWfEv9A/8I7YwpqEZ2Q5My595yZe68b+14iLes1ZywsLi2v5FcLa+sbm1vF7Z1GEqWC8TqL/Ei0XCfhvhfyuvSkz1ux4E7g+rzpjqoq3rzlIvGi8EqOY94NnEHo9T3mSKKuzU7gyKEIJtVkembdFEtW2dLLnAd2BkrIVi0qvqCDHiIwpAjAEUIS9uEgoacNGxZi4rqYECcIeTrOMUWBtCllccpwiB3Rd0C7dsaGtFeeiVYzOsWnV5DSxAFpIsoThNVppo6n2lmxv3lPtKe625j+buYVECsxJPYv3SzzvzpVi0Qfp7oGj2qKNaOqY5lLqruibm5+qUqSQ0ycwj2KC8JMK2d9NrUm0bWr3jo6/qYzFav2LMtN8a5uSQO2f45zHjSOyrZVti+OSxUrG3Uee9jHIc3zBBWco4Y6eQs84gnPxqUxNu6M+89UI5dpdvFtGQ8fgj2UlQ==</latexit><latexit sha1_base64="wQU2EL3Hhfcq5X/7AGwpObdx+TQ=">AAAC0XicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdCMUunFZ0T6grZJMp21oXkwmQikFcesPuNWfEv9A/8I7YwpqEZ2Q5My595yZe68b+14iLes1ZywsLi2v5FcLa+sbm1vF7Z1GEqWC8TqL/Ei0XCfhvhfyuvSkz1ux4E7g+rzpjqoq3rzlIvGi8EqOY94NnEHo9T3mSKKuzU7gyKEIJtVkembdFEtW2dLLnAd2BkrIVi0qvqCDHiIwpAjAEUIS9uEgoacNGxZi4rqYECcIeTrOMUWBtCllccpwiB3Rd0C7dsaGtFeeiVYzOsWnV5DSxAFpIsoThNVppo6n2lmxv3lPtKe625j+buYVECsxJPYv3SzzvzpVi0Qfp7oGj2qKNaOqY5lLqruibm5+qUqSQ0ycwj2KC8JMK2d9NrUm0bWr3jo6/qYzFav2LMtN8a5uSQO2f45zHjSOyrZVti+OSxUrG3Uee9jHIc3zBBWco4Y6eQs84gnPxqUxNu6M+89UI5dpdvFtGQ8fgj2UlQ==</latexit>

Cs < 0<latexit sha1_base64="HWntXeOe0PGXp3DONwm6iE2r6qk=">AAAC0XicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdOGi0I3LivYBbZVkOm1D82IyEUopiFt/wK3+lPgH+hfeGVNQi+iEJGfOvefM3Hvd2PcSaVmvOWNhcWl5Jb9aWFvf2Nwqbu80kigVjNdZ5Eei5ToJ972Q16Unfd6KBXcC1+dNd1RV8eYtF4kXhVdyHPNu4AxCr+8xRxJ1bXYCRw5FMKkm0zPrpliyypZe5jywM1BCtmpR8QUd9BCBIUUAjhCSsA8HCT1t2LAQE9fFhDhByNNxjikKpE0pi1OGQ+yIvgPatTM2pL3yTLSa0Sk+vYKUJg5IE1GeIKxOM3U81c6K/c17oj3V3cb0dzOvgFiJIbF/6WaZ/9WpWiT6ONU1eFRTrBlVHctcUt0VdXPzS1WSHGLiFO5RXBBmWjnrs6k1ia5d9dbR8TedqVi1Z1luind1Sxqw/XOc86BxVLatsn1xXKpY2ajz2MM+DmmeJ6jgHDXUyVvgEU94Ni6NsXFn3H+mGrlMs4tvy3j4AH/clJQ=</latexit><latexit sha1_base64="HWntXeOe0PGXp3DONwm6iE2r6qk=">AAAC0XicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdOGi0I3LivYBbZVkOm1D82IyEUopiFt/wK3+lPgH+hfeGVNQi+iEJGfOvefM3Hvd2PcSaVmvOWNhcWl5Jb9aWFvf2Nwqbu80kigVjNdZ5Eei5ToJ972Q16Unfd6KBXcC1+dNd1RV8eYtF4kXhVdyHPNu4AxCr+8xRxJ1bXYCRw5FMKkm0zPrpliyypZe5jywM1BCtmpR8QUd9BCBIUUAjhCSsA8HCT1t2LAQE9fFhDhByNNxjikKpE0pi1OGQ+yIvgPatTM2pL3yTLSa0Sk+vYKUJg5IE1GeIKxOM3U81c6K/c17oj3V3cb0dzOvgFiJIbF/6WaZ/9WpWiT6ONU1eFRTrBlVHctcUt0VdXPzS1WSHGLiFO5RXBBmWjnrs6k1ia5d9dbR8TedqVi1Z1luind1Sxqw/XOc86BxVLatsn1xXKpY2ajz2MM+DmmeJ6jgHDXUyVvgEU94Ni6NsXFn3H+mGrlMs4tvy3j4AH/clJQ=</latexit><latexit sha1_base64="HWntXeOe0PGXp3DONwm6iE2r6qk=">AAAC0XicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdOGi0I3LivYBbZVkOm1D82IyEUopiFt/wK3+lPgH+hfeGVNQi+iEJGfOvefM3Hvd2PcSaVmvOWNhcWl5Jb9aWFvf2Nwqbu80kigVjNdZ5Eei5ToJ972Q16Unfd6KBXcC1+dNd1RV8eYtF4kXhVdyHPNu4AxCr+8xRxJ1bXYCRw5FMKkm0zPrpliyypZe5jywM1BCtmpR8QUd9BCBIUUAjhCSsA8HCT1t2LAQE9fFhDhByNNxjikKpE0pi1OGQ+yIvgPatTM2pL3yTLSa0Sk+vYKUJg5IE1GeIKxOM3U81c6K/c17oj3V3cb0dzOvgFiJIbF/6WaZ/9WpWiT6ONU1eFRTrBlVHctcUt0VdXPzS1WSHGLiFO5RXBBmWjnrs6k1ia5d9dbR8TedqVi1Z1luind1Sxqw/XOc86BxVLatsn1xXKpY2ajz2MM+DmmeJ6jgHDXUyVvgEU94Ni6NsXFn3H+mGrlMs4tvy3j4AH/clJQ=</latexit>

gpe

<latexit sha1_base64="yEI7KYKZ7CBwAcYN0esNTFxgdMY=">AAACzHicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdFlw40oq2IfUWpJ0WkPzYjIRSsjWH3Cr3yX+gf6Fd8YpqEV0QpIz595zZu69bhL4qbCs15KxsLi0vFJeraytb2xuVbd32mmccY+1vDiIedd1Uhb4EWsJXwSsm3DmhG7AOu7kTMY794ynfhxdiWnC+qEzjvyR7zmCqOvxbZ4Ug5wVg2rNqltqmfPA1qAGvZpx9QU3GCKGhwwhGCIIwgEcpPT0YMNCQlwfOXGckK/iDAUqpM0oi1GGQ+yEvmPa9TQb0V56pkrt0SkBvZyUJg5IE1MeJyxPM1U8U86S/c07V57yblP6u9orJFbgjti/dLPM/+pkLQIjnKoafKopUYysztMumeqKvLn5pSpBDglxEg8pzgl7Sjnrs6k0qapd9tZR8TeVKVm593Ruhnd5Sxqw/XOc86B9VLetun15XGtYetRl7GEfhzTPEzRwjiZa5B3iEU94Ni4MYeRG8ZlqlLRmF9+W8fAB0BmTLA==</latexit><latexit sha1_base64="yEI7KYKZ7CBwAcYN0esNTFxgdMY=">AAACzHicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdFlw40oq2IfUWpJ0WkPzYjIRSsjWH3Cr3yX+gf6Fd8YpqEV0QpIz595zZu69bhL4qbCs15KxsLi0vFJeraytb2xuVbd32mmccY+1vDiIedd1Uhb4EWsJXwSsm3DmhG7AOu7kTMY794ynfhxdiWnC+qEzjvyR7zmCqOvxbZ4Ug5wVg2rNqltqmfPA1qAGvZpx9QU3GCKGhwwhGCIIwgEcpPT0YMNCQlwfOXGckK/iDAUqpM0oi1GGQ+yEvmPa9TQb0V56pkrt0SkBvZyUJg5IE1MeJyxPM1U8U86S/c07V57yblP6u9orJFbgjti/dLPM/+pkLQIjnKoafKopUYysztMumeqKvLn5pSpBDglxEg8pzgl7Sjnrs6k0qapd9tZR8TeVKVm593Ruhnd5Sxqw/XOc86B9VLetun15XGtYetRl7GEfhzTPEzRwjiZa5B3iEU94Ni4MYeRG8ZlqlLRmF9+W8fAB0BmTLA==</latexit><latexit sha1_base64="yEI7KYKZ7CBwAcYN0esNTFxgdMY=">AAACzHicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdFlw40oq2IfUWpJ0WkPzYjIRSsjWH3Cr3yX+gf6Fd8YpqEV0QpIz595zZu69bhL4qbCs15KxsLi0vFJeraytb2xuVbd32mmccY+1vDiIedd1Uhb4EWsJXwSsm3DmhG7AOu7kTMY794ynfhxdiWnC+qEzjvyR7zmCqOvxbZ4Ug5wVg2rNqltqmfPA1qAGvZpx9QU3GCKGhwwhGCIIwgEcpPT0YMNCQlwfOXGckK/iDAUqpM0oi1GGQ+yEvmPa9TQb0V56pkrt0SkBvZyUJg5IE1MeJyxPM1U8U86S/c07V57yblP6u9orJFbgjti/dLPM/+pkLQIjnKoafKopUYysztMumeqKvLn5pSpBDglxEg8pzgl7Sjnrs6k0qapd9tZR8TeVKVm593Ruhnd5Sxqw/XOc86B9VLetun15XGtYetRl7GEfhzTPEzRwjiZa5B3iEU94Ni4MYeRG8ZlqlLRmF9+W8fAB0BmTLA==</latexit>

gqe

<latexit sha1_base64="WK2N2RXfidl+wc4LSbGGG3Z/fX4=">AAACzHicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdFlw40oq2IdULUk6rUPzcjIRSsjWH3Cr3yX+gf6Fd8YU1CI6IcmZc+85M/deN/Z5Ii3rtWTMzS8sLpWXKyura+sb1c2tdhKlwmMtL/Ij0XWdhPk8ZC3Jpc+6sWBO4Pqs445PVLxzz0TCo/BCTmJ2HTijkA+550iiLkc32V3ez1jer9asuqWXOQvsAtRQrGZUfcEVBojgIUUAhhCSsA8HCT092LAQE3eNjDhBiOs4Q44KaVPKYpThEDum74h2vYINaa88E6326BSfXkFKE3ukiShPEFanmTqeamfF/uadaU91twn93cIrIFbilti/dNPM/+pULRJDHOsaONUUa0ZV5xUuqe6Kurn5pSpJDjFxCg8oLgh7Wjnts6k1ia5d9dbR8TedqVi194rcFO/qljRg++c4Z0H7oG5bdfv8sNawilGXsYNd7NM8j9DAKZpokXeARzzh2TgzpJEZ+WeqUSo02/i2jIcP0n6TLQ==</latexit><latexit sha1_base64="WK2N2RXfidl+wc4LSbGGG3Z/fX4=">AAACzHicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdFlw40oq2IdULUk6rUPzcjIRSsjWH3Cr3yX+gf6Fd8YU1CI6IcmZc+85M/deN/Z5Ii3rtWTMzS8sLpWXKyura+sb1c2tdhKlwmMtL/Ij0XWdhPk8ZC3Jpc+6sWBO4Pqs445PVLxzz0TCo/BCTmJ2HTijkA+550iiLkc32V3ez1jer9asuqWXOQvsAtRQrGZUfcEVBojgIUUAhhCSsA8HCT092LAQE3eNjDhBiOs4Q44KaVPKYpThEDum74h2vYINaa88E6326BSfXkFKE3ukiShPEFanmTqeamfF/uadaU91twn93cIrIFbilti/dNPM/+pULRJDHOsaONUUa0ZV5xUuqe6Kurn5pSpJDjFxCg8oLgh7Wjnts6k1ia5d9dbR8TedqVi194rcFO/qljRg++c4Z0H7oG5bdfv8sNawilGXsYNd7NM8j9DAKZpokXeARzzh2TgzpJEZ+WeqUSo02/i2jIcP0n6TLQ==</latexit><latexit sha1_base64="WK2N2RXfidl+wc4LSbGGG3Z/fX4=">AAACzHicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdFlw40oq2IdULUk6rUPzcjIRSsjWH3Cr3yX+gf6Fd8YU1CI6IcmZc+85M/deN/Z5Ii3rtWTMzS8sLpWXKyura+sb1c2tdhKlwmMtL/Ij0XWdhPk8ZC3Jpc+6sWBO4Pqs445PVLxzz0TCo/BCTmJ2HTijkA+550iiLkc32V3ez1jer9asuqWXOQvsAtRQrGZUfcEVBojgIUUAhhCSsA8HCT092LAQE3eNjDhBiOs4Q44KaVPKYpThEDum74h2vYINaa88E6326BSfXkFKE3ukiShPEFanmTqeamfF/uadaU91twn93cIrIFbilti/dNPM/+pULRJDHOsaONUUa0ZV5xUuqe6Kurn5pSpJDjFxCg8oLgh7Wjnts6k1ia5d9dbR8TedqVi194rcFO/qljRg++c4Z0H7oG5bdfv8sNawilGXsYNd7NM8j9DAKZpokXeARzzh2TgzpJEZ+WeqUSo02/i2jIcP0n6TLQ==</latexit>

gpe

<latexit sha1_base64="yEI7KYKZ7CBwAcYN0esNTFxgdMY=">AAACzHicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdFlw40oq2IfUWpJ0WkPzYjIRSsjWH3Cr3yX+gf6Fd8YpqEV0QpIz595zZu69bhL4qbCs15KxsLi0vFJeraytb2xuVbd32mmccY+1vDiIedd1Uhb4EWsJXwSsm3DmhG7AOu7kTMY794ynfhxdiWnC+qEzjvyR7zmCqOvxbZ4Ug5wVg2rNqltqmfPA1qAGvZpx9QU3GCKGhwwhGCIIwgEcpPT0YMNCQlwfOXGckK/iDAUqpM0oi1GGQ+yEvmPa9TQb0V56pkrt0SkBvZyUJg5IE1MeJyxPM1U8U86S/c07V57yblP6u9orJFbgjti/dLPM/+pkLQIjnKoafKopUYysztMumeqKvLn5pSpBDglxEg8pzgl7Sjnrs6k0qapd9tZR8TeVKVm593Ruhnd5Sxqw/XOc86B9VLetun15XGtYetRl7GEfhzTPEzRwjiZa5B3iEU94Ni4MYeRG8ZlqlLRmF9+W8fAB0BmTLA==</latexit><latexit sha1_base64="yEI7KYKZ7CBwAcYN0esNTFxgdMY=">AAACzHicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdFlw40oq2IfUWpJ0WkPzYjIRSsjWH3Cr3yX+gf6Fd8YpqEV0QpIz595zZu69bhL4qbCs15KxsLi0vFJeraytb2xuVbd32mmccY+1vDiIedd1Uhb4EWsJXwSsm3DmhG7AOu7kTMY794ynfhxdiWnC+qEzjvyR7zmCqOvxbZ4Ug5wVg2rNqltqmfPA1qAGvZpx9QU3GCKGhwwhGCIIwgEcpPT0YMNCQlwfOXGckK/iDAUqpM0oi1GGQ+yEvmPa9TQb0V56pkrt0SkBvZyUJg5IE1MeJyxPM1U8U86S/c07V57yblP6u9orJFbgjti/dLPM/+pkLQIjnKoafKopUYysztMumeqKvLn5pSpBDglxEg8pzgl7Sjnrs6k0qapd9tZR8TeVKVm593Ruhnd5Sxqw/XOc86B9VLetun15XGtYetRl7GEfhzTPEzRwjiZa5B3iEU94Ni4MYeRG8ZlqlLRmF9+W8fAB0BmTLA==</latexit><latexit sha1_base64="yEI7KYKZ7CBwAcYN0esNTFxgdMY=">AAACzHicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdFlw40oq2IfUWpJ0WkPzYjIRSsjWH3Cr3yX+gf6Fd8YpqEV0QpIz595zZu69bhL4qbCs15KxsLi0vFJeraytb2xuVbd32mmccY+1vDiIedd1Uhb4EWsJXwSsm3DmhG7AOu7kTMY794ynfhxdiWnC+qEzjvyR7zmCqOvxbZ4Ug5wVg2rNqltqmfPA1qAGvZpx9QU3GCKGhwwhGCIIwgEcpPT0YMNCQlwfOXGckK/iDAUqpM0oi1GGQ+yEvmPa9TQb0V56pkrt0SkBvZyUJg5IE1MeJyxPM1U8U86S/c07V57yblP6u9orJFbgjti/dLPM/+pkLQIjnKoafKopUYysztMumeqKvLn5pSpBDglxEg8pzgl7Sjnrs6k0qapd9tZR8TeVKVm593Ruhnd5Sxqw/XOc86B9VLetun15XGtYetRl7GEfhzTPEzRwjiZa5B3iEU94Ni4MYeRG8ZlqlLRmF9+W8fAB0BmTLA==</latexit>

gqe

<latexit sha1_base64="WK2N2RXfidl+wc4LSbGGG3Z/fX4=">AAACzHicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdFlw40oq2IdULUk6rUPzcjIRSsjWH3Cr3yX+gf6Fd8YU1CI6IcmZc+85M/deN/Z5Ii3rtWTMzS8sLpWXKyura+sb1c2tdhKlwmMtL/Ij0XWdhPk8ZC3Jpc+6sWBO4Pqs445PVLxzz0TCo/BCTmJ2HTijkA+550iiLkc32V3ez1jer9asuqWXOQvsAtRQrGZUfcEVBojgIUUAhhCSsA8HCT092LAQE3eNjDhBiOs4Q44KaVPKYpThEDum74h2vYINaa88E6326BSfXkFKE3ukiShPEFanmTqeamfF/uadaU91twn93cIrIFbilti/dNPM/+pULRJDHOsaONUUa0ZV5xUuqe6Kurn5pSpJDjFxCg8oLgh7Wjnts6k1ia5d9dbR8TedqVi194rcFO/qljRg++c4Z0H7oG5bdfv8sNawilGXsYNd7NM8j9DAKZpokXeARzzh2TgzpJEZ+WeqUSo02/i2jIcP0n6TLQ==</latexit><latexit sha1_base64="WK2N2RXfidl+wc4LSbGGG3Z/fX4=">AAACzHicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdFlw40oq2IdULUk6rUPzcjIRSsjWH3Cr3yX+gf6Fd8YU1CI6IcmZc+85M/deN/Z5Ii3rtWTMzS8sLpWXKyura+sb1c2tdhKlwmMtL/Ij0XWdhPk8ZC3Jpc+6sWBO4Pqs445PVLxzz0TCo/BCTmJ2HTijkA+550iiLkc32V3ez1jer9asuqWXOQvsAtRQrGZUfcEVBojgIUUAhhCSsA8HCT092LAQE3eNjDhBiOs4Q44KaVPKYpThEDum74h2vYINaa88E6326BSfXkFKE3ukiShPEFanmTqeamfF/uadaU91twn93cIrIFbilti/dNPM/+pULRJDHOsaONUUa0ZV5xUuqe6Kurn5pSpJDjFxCg8oLgh7Wjnts6k1ia5d9dbR8TedqVi194rcFO/qljRg++c4Z0H7oG5bdfv8sNawilGXsYNd7NM8j9DAKZpokXeARzzh2TgzpJEZ+WeqUSo02/i2jIcP0n6TLQ==</latexit><latexit sha1_base64="WK2N2RXfidl+wc4LSbGGG3Z/fX4=">AAACzHicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdFlw40oq2IdULUk6rUPzcjIRSsjWH3Cr3yX+gf6Fd8YU1CI6IcmZc+85M/deN/Z5Ii3rtWTMzS8sLpWXKyura+sb1c2tdhKlwmMtL/Ij0XWdhPk8ZC3Jpc+6sWBO4Pqs445PVLxzz0TCo/BCTmJ2HTijkA+550iiLkc32V3ez1jer9asuqWXOQvsAtRQrGZUfcEVBojgIUUAhhCSsA8HCT092LAQE3eNjDhBiOs4Q44KaVPKYpThEDum74h2vYINaa88E6326BSfXkFKE3ukiShPEFanmTqeamfF/uadaU91twn93cIrIFbilti/dNPM/+pULRJDHOsaONUUa0ZV5xUuqe6Kurn5pSpJDjFxCg8oLgh7Wjnts6k1ia5d9dbR8TedqVi194rcFO/qljRg++c4Z0H7oG5bdfv8sNawilGXsYNd7NM8j9DAKZpokXeARzzh2TgzpJEZ+WeqUSo02/i2jIcP0n6TLQ==</latexit>

(a) The concept of consistency Cs

q<latexit sha1_base64="5hZBkg4Zz5aCBxYsogUdwStkLyE=">AAACxHicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdFkQxGUL9gG1SJJO69BpEicToRT9Abf6beIf6F94Z5yCWkQnJDlz7j1n5t4bpoJnyvNeC87C4tLySnG1tLa+sblV3t5pZUkuI9aMEpHIThhkTPCYNRVXgnVSyYJxKFg7HJ3pePuOyYwn8aWapKw3DoYxH/AoUEQ1bq/LFa/qmeXOA9+CCuyqJ+UXXKGPBBFyjMEQQxEWCJDR04UPDylxPUyJk4S4iTPco0TanLIYZQTEjug7pF3XsjHttWdm1BGdIuiVpHRxQJqE8iRhfZpr4rlx1uxv3lPjqe82oX9ovcbEKtwQ+5dulvlfna5FYYBTUwOnmlLD6Ooi65Kbruibu1+qUuSQEqdxn+KScGSUsz67RpOZ2nVvAxN/M5ma1fvI5uZ417ekAfs/xzkPWkdV36v6jeNKzbOjLmIP+zikeZ6ghgvU0TTej3jCs3PuCCdz8s9Up2A1u/i2nIcPVRKPZA==</latexit><latexit sha1_base64="5hZBkg4Zz5aCBxYsogUdwStkLyE=">AAACxHicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdFkQxGUL9gG1SJJO69BpEicToRT9Abf6beIf6F94Z5yCWkQnJDlz7j1n5t4bpoJnyvNeC87C4tLySnG1tLa+sblV3t5pZUkuI9aMEpHIThhkTPCYNRVXgnVSyYJxKFg7HJ3pePuOyYwn8aWapKw3DoYxH/AoUEQ1bq/LFa/qmeXOA9+CCuyqJ+UXXKGPBBFyjMEQQxEWCJDR04UPDylxPUyJk4S4iTPco0TanLIYZQTEjug7pF3XsjHttWdm1BGdIuiVpHRxQJqE8iRhfZpr4rlx1uxv3lPjqe82oX9ovcbEKtwQ+5dulvlfna5FYYBTUwOnmlLD6Ooi65Kbruibu1+qUuSQEqdxn+KScGSUsz67RpOZ2nVvAxN/M5ma1fvI5uZ417ekAfs/xzkPWkdV36v6jeNKzbOjLmIP+zikeZ6ghgvU0TTej3jCs3PuCCdz8s9Up2A1u/i2nIcPVRKPZA==</latexit><latexit sha1_base64="5hZBkg4Zz5aCBxYsogUdwStkLyE=">AAACxHicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdFkQxGUL9gG1SJJO69BpEicToRT9Abf6beIf6F94Z5yCWkQnJDlz7j1n5t4bpoJnyvNeC87C4tLySnG1tLa+sblV3t5pZUkuI9aMEpHIThhkTPCYNRVXgnVSyYJxKFg7HJ3pePuOyYwn8aWapKw3DoYxH/AoUEQ1bq/LFa/qmeXOA9+CCuyqJ+UXXKGPBBFyjMEQQxEWCJDR04UPDylxPUyJk4S4iTPco0TanLIYZQTEjug7pF3XsjHttWdm1BGdIuiVpHRxQJqE8iRhfZpr4rlx1uxv3lPjqe82oX9ovcbEKtwQ+5dulvlfna5FYYBTUwOnmlLD6Ooi65Kbruibu1+qUuSQEqdxn+KScGSUsz67RpOZ2nVvAxN/M5ma1fvI5uZ417ekAfs/xzkPWkdV36v6jeNKzbOjLmIP+zikeZ6ghgvU0TTej3jCs3PuCCdz8s9Up2A1u/i2nIcPVRKPZA==</latexit>

p<latexit sha1_base64="soXmGNFSiDFU7lveu79rwAaSmHA=">AAACxHicjVHLSsNAFD2Nr/quunQTLIKrkoigy4IgLluwD6hFknRah+bFzEQoRX/ArX6b+Af6F94Zp6AW0QlJzpx7z5m594Z5zKXyvNeSs7C4tLxSXl1b39jc2q7s7LZlVoiItaIszkQ3DCSLecpaiquYdXPBgiSMWSccn+t4544JybP0Sk1y1k+CUcqHPAoUUc38plL1ap5Z7jzwLajCrkZWecE1BsgQoUAChhSKcIwAkp4efHjIietjSpwgxE2c4R5rpC0oi1FGQOyYviPa9Syb0l57SqOO6JSYXkFKF4ekyShPENanuSZeGGfN/uY9NZ76bhP6h9YrIVbhlti/dLPM/+p0LQpDnJkaONWUG0ZXF1mXwnRF39z9UpUih5w4jQcUF4Qjo5z12TUaaWrXvQ1M/M1kalbvI5tb4F3fkgbs/xznPGgf13yv5jdPqnXPjrqMfRzgiOZ5ijou0UDLeD/iCc/OhRM70ik+U52S1ezh23IePgBSso9j</latexit><latexit sha1_base64="soXmGNFSiDFU7lveu79rwAaSmHA=">AAACxHicjVHLSsNAFD2Nr/quunQTLIKrkoigy4IgLluwD6hFknRah+bFzEQoRX/ArX6b+Af6F94Zp6AW0QlJzpx7z5m594Z5zKXyvNeSs7C4tLxSXl1b39jc2q7s7LZlVoiItaIszkQ3DCSLecpaiquYdXPBgiSMWSccn+t4544JybP0Sk1y1k+CUcqHPAoUUc38plL1ap5Z7jzwLajCrkZWecE1BsgQoUAChhSKcIwAkp4efHjIietjSpwgxE2c4R5rpC0oi1FGQOyYviPa9Syb0l57SqOO6JSYXkFKF4ekyShPENanuSZeGGfN/uY9NZ76bhP6h9YrIVbhlti/dLPM/+p0LQpDnJkaONWUG0ZXF1mXwnRF39z9UpUih5w4jQcUF4Qjo5z12TUaaWrXvQ1M/M1kalbvI5tb4F3fkgbs/xznPGgf13yv5jdPqnXPjrqMfRzgiOZ5ijou0UDLeD/iCc/OhRM70ik+U52S1ezh23IePgBSso9j</latexit><latexit sha1_base64="soXmGNFSiDFU7lveu79rwAaSmHA=">AAACxHicjVHLSsNAFD2Nr/quunQTLIKrkoigy4IgLluwD6hFknRah+bFzEQoRX/ArX6b+Af6F94Zp6AW0QlJzpx7z5m594Z5zKXyvNeSs7C4tLxSXl1b39jc2q7s7LZlVoiItaIszkQ3DCSLecpaiquYdXPBgiSMWSccn+t4544JybP0Sk1y1k+CUcqHPAoUUc38plL1ap5Z7jzwLajCrkZWecE1BsgQoUAChhSKcIwAkp4efHjIietjSpwgxE2c4R5rpC0oi1FGQOyYviPa9Syb0l57SqOO6JSYXkFKF4ekyShPENanuSZeGGfN/uY9NZ76bhP6h9YrIVbhlti/dLPM/+p0LQpDnJkaONWUG0ZXF1mXwnRF39z9UpUih5w4jQcUF4Qjo5z12TUaaWrXvQ1M/M1kalbvI5tb4F3fkgbs/xznPGgf13yv5jdPqnXPjrqMfRzgiOZ5ijou0UDLeD/iCc/OhRM70ik+U52S1ezh23IePgBSso9j</latexit>

q<latexit sha1_base64="5hZBkg4Zz5aCBxYsogUdwStkLyE=">AAACxHicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdFkQxGUL9gG1SJJO69BpEicToRT9Abf6beIf6F94Z5yCWkQnJDlz7j1n5t4bpoJnyvNeC87C4tLySnG1tLa+sblV3t5pZUkuI9aMEpHIThhkTPCYNRVXgnVSyYJxKFg7HJ3pePuOyYwn8aWapKw3DoYxH/AoUEQ1bq/LFa/qmeXOA9+CCuyqJ+UXXKGPBBFyjMEQQxEWCJDR04UPDylxPUyJk4S4iTPco0TanLIYZQTEjug7pF3XsjHttWdm1BGdIuiVpHRxQJqE8iRhfZpr4rlx1uxv3lPjqe82oX9ovcbEKtwQ+5dulvlfna5FYYBTUwOnmlLD6Ooi65Kbruibu1+qUuSQEqdxn+KScGSUsz67RpOZ2nVvAxN/M5ma1fvI5uZ417ekAfs/xzkPWkdV36v6jeNKzbOjLmIP+zikeZ6ghgvU0TTej3jCs3PuCCdz8s9Up2A1u/i2nIcPVRKPZA==</latexit><latexit sha1_base64="5hZBkg4Zz5aCBxYsogUdwStkLyE=">AAACxHicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdFkQxGUL9gG1SJJO69BpEicToRT9Abf6beIf6F94Z5yCWkQnJDlz7j1n5t4bpoJnyvNeC87C4tLySnG1tLa+sblV3t5pZUkuI9aMEpHIThhkTPCYNRVXgnVSyYJxKFg7HJ3pePuOyYwn8aWapKw3DoYxH/AoUEQ1bq/LFa/qmeXOA9+CCuyqJ+UXXKGPBBFyjMEQQxEWCJDR04UPDylxPUyJk4S4iTPco0TanLIYZQTEjug7pF3XsjHttWdm1BGdIuiVpHRxQJqE8iRhfZpr4rlx1uxv3lPjqe82oX9ovcbEKtwQ+5dulvlfna5FYYBTUwOnmlLD6Ooi65Kbruibu1+qUuSQEqdxn+KScGSUsz67RpOZ2nVvAxN/M5ma1fvI5uZ417ekAfs/xzkPWkdV36v6jeNKzbOjLmIP+zikeZ6ghgvU0TTej3jCs3PuCCdz8s9Up2A1u/i2nIcPVRKPZA==</latexit><latexit sha1_base64="5hZBkg4Zz5aCBxYsogUdwStkLyE=">AAACxHicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdFkQxGUL9gG1SJJO69BpEicToRT9Abf6beIf6F94Z5yCWkQnJDlz7j1n5t4bpoJnyvNeC87C4tLySnG1tLa+sblV3t5pZUkuI9aMEpHIThhkTPCYNRVXgnVSyYJxKFg7HJ3pePuOyYwn8aWapKw3DoYxH/AoUEQ1bq/LFa/qmeXOA9+CCuyqJ+UXXKGPBBFyjMEQQxEWCJDR04UPDylxPUyJk4S4iTPco0TanLIYZQTEjug7pF3XsjHttWdm1BGdIuiVpHRxQJqE8iRhfZpr4rlx1uxv3lPjqe82oX9ovcbEKtwQ+5dulvlfna5FYYBTUwOnmlLD6Ooi65Kbruibu1+qUuSQEqdxn+KScGSUsz67RpOZ2nVvAxN/M5ma1fvI5uZ417ekAfs/xzkPWkdV36v6jeNKzbOjLmIP+zikeZ6ghgvU0TTej3jCs3PuCCdz8s9Up2A1u/i2nIcPVRKPZA==</latexit>

p<latexit sha1_base64="soXmGNFSiDFU7lveu79rwAaSmHA=">AAACxHicjVHLSsNAFD2Nr/quunQTLIKrkoigy4IgLluwD6hFknRah+bFzEQoRX/ArX6b+Af6F94Zp6AW0QlJzpx7z5m594Z5zKXyvNeSs7C4tLxSXl1b39jc2q7s7LZlVoiItaIszkQ3DCSLecpaiquYdXPBgiSMWSccn+t4544JybP0Sk1y1k+CUcqHPAoUUc38plL1ap5Z7jzwLajCrkZWecE1BsgQoUAChhSKcIwAkp4efHjIietjSpwgxE2c4R5rpC0oi1FGQOyYviPa9Syb0l57SqOO6JSYXkFKF4ekyShPENanuSZeGGfN/uY9NZ76bhP6h9YrIVbhlti/dLPM/+p0LQpDnJkaONWUG0ZXF1mXwnRF39z9UpUih5w4jQcUF4Qjo5z12TUaaWrXvQ1M/M1kalbvI5tb4F3fkgbs/xznPGgf13yv5jdPqnXPjrqMfRzgiOZ5ijou0UDLeD/iCc/OhRM70ik+U52S1ezh23IePgBSso9j</latexit><latexit sha1_base64="soXmGNFSiDFU7lveu79rwAaSmHA=">AAACxHicjVHLSsNAFD2Nr/quunQTLIKrkoigy4IgLluwD6hFknRah+bFzEQoRX/ArX6b+Af6F94Zp6AW0QlJzpx7z5m594Z5zKXyvNeSs7C4tLxSXl1b39jc2q7s7LZlVoiItaIszkQ3DCSLecpaiquYdXPBgiSMWSccn+t4544JybP0Sk1y1k+CUcqHPAoUUc38plL1ap5Z7jzwLajCrkZWecE1BsgQoUAChhSKcIwAkp4efHjIietjSpwgxE2c4R5rpC0oi1FGQOyYviPa9Syb0l57SqOO6JSYXkFKF4ekyShPENanuSZeGGfN/uY9NZ76bhP6h9YrIVbhlti/dLPM/+p0LQpDnJkaONWUG0ZXF1mXwnRF39z9UpUih5w4jQcUF4Qjo5z12TUaaWrXvQ1M/M1kalbvI5tb4F3fkgbs/xznPGgf13yv5jdPqnXPjrqMfRzgiOZ5ijou0UDLeD/iCc/OhRM70ik+U52S1ezh23IePgBSso9j</latexit><latexit sha1_base64="soXmGNFSiDFU7lveu79rwAaSmHA=">AAACxHicjVHLSsNAFD2Nr/quunQTLIKrkoigy4IgLluwD6hFknRah+bFzEQoRX/ArX6b+Af6F94Zp6AW0QlJzpx7z5m594Z5zKXyvNeSs7C4tLxSXl1b39jc2q7s7LZlVoiItaIszkQ3DCSLecpaiquYdXPBgiSMWSccn+t4544JybP0Sk1y1k+CUcqHPAoUUc38plL1ap5Z7jzwLajCrkZWecE1BsgQoUAChhSKcIwAkp4efHjIietjSpwgxE2c4R5rpC0oi1FGQOyYviPa9Syb0l57SqOO6JSYXkFKF4ekyShPENanuSZeGGfN/uY9NZ76bhP6h9YrIVbhlti/dLPM/+p0LQpDnJkaONWUG0ZXF1mXwnRF39z9UpUih5w4jQcUF4Qjo5z12TUaaWrXvQ1M/M1kalbvI5tb4F3fkgbs/xznPGgf13yv5jdPqnXPjrqMfRzgiOZ5ijou0UDLeD/iCc/OhRM70ik+U52S1ezh23IePgBSso9j</latexit>

e<latexit sha1_base64="LSSzw6uxTJPNR1qM4Ke/ShqAQjU=">AAACxHicjVHLSsNAFD2Nr/quunQTLIKrkoigy4IgLluwD6hFknRah04ezEyEUvQH3Oq3iX+gf+GdMQW1iE5Icubce87MvTfMBFfa815LzsLi0vJKeXVtfWNza7uys9tWaS4j1opSkcpuGCgmeMJammvBuplkQRwK1gnH5ybeuWNS8TS50pOM9eNglPAhjwJNVJPdVKpezbPLnQd+AaooViOtvOAaA6SIkCMGQwJNWCCAoqcHHx4y4vqYEicJcRtnuMcaaXPKYpQREDum74h2vYJNaG88lVVHdIqgV5LSxSFpUsqThM1pro3n1tmwv3lPrae524T+YeEVE6txS+xfulnmf3WmFo0hzmwNnGrKLGOqiwqX3HbF3Nz9UpUmh4w4gwcUl4Qjq5z12bUaZWs3vQ1s/M1mGtbsoyI3x7u5JQ3Y/znOedA+rvlezW+eVOteMeoy9nGAI5rnKeq4RAMt6/2IJzw7F45wlJN/pjqlQrOHb8t5+AA4ko9Y</latexit><latexit sha1_base64="LSSzw6uxTJPNR1qM4Ke/ShqAQjU=">AAACxHicjVHLSsNAFD2Nr/quunQTLIKrkoigy4IgLluwD6hFknRah04ezEyEUvQH3Oq3iX+gf+GdMQW1iE5Icubce87MvTfMBFfa815LzsLi0vJKeXVtfWNza7uys9tWaS4j1opSkcpuGCgmeMJammvBuplkQRwK1gnH5ybeuWNS8TS50pOM9eNglPAhjwJNVJPdVKpezbPLnQd+AaooViOtvOAaA6SIkCMGQwJNWCCAoqcHHx4y4vqYEicJcRtnuMcaaXPKYpQREDum74h2vYJNaG88lVVHdIqgV5LSxSFpUsqThM1pro3n1tmwv3lPrae524T+YeEVE6txS+xfulnmf3WmFo0hzmwNnGrKLGOqiwqX3HbF3Nz9UpUmh4w4gwcUl4Qjq5z12bUaZWs3vQ1s/M1mGtbsoyI3x7u5JQ3Y/znOedA+rvlezW+eVOteMeoy9nGAI5rnKeq4RAMt6/2IJzw7F45wlJN/pjqlQrOHb8t5+AA4ko9Y</latexit><latexit sha1_base64="LSSzw6uxTJPNR1qM4Ke/ShqAQjU=">AAACxHicjVHLSsNAFD2Nr/quunQTLIKrkoigy4IgLluwD6hFknRah04ezEyEUvQH3Oq3iX+gf+GdMQW1iE5Icubce87MvTfMBFfa815LzsLi0vJKeXVtfWNza7uys9tWaS4j1opSkcpuGCgmeMJammvBuplkQRwK1gnH5ybeuWNS8TS50pOM9eNglPAhjwJNVJPdVKpezbPLnQd+AaooViOtvOAaA6SIkCMGQwJNWCCAoqcHHx4y4vqYEicJcRtnuMcaaXPKYpQREDum74h2vYJNaG88lVVHdIqgV5LSxSFpUsqThM1pro3n1tmwv3lPrae524T+YeEVE6txS+xfulnmf3WmFo0hzmwNnGrKLGOqiwqX3HbF3Nz9UpUmh4w4gwcUl4Qjq5z12bUaZWs3vQ1s/M1mGtbsoyI3x7u5JQ3Y/znOedA+rvlezW+eVOteMeoy9nGAI5rnKeq4RAMt6/2IJzw7F45wlJN/pjqlQrOHb8t5+AA4ko9Y</latexit>

f<latexit sha1_base64="4ETgWLBdoE99SJAqd+LGoGujsdM=">AAACxHicjVHLSsNAFD2Nr/quunQTLIKrkoigy4IgLluwD6hFkum0hubFzEQoRX/ArX6b+Af6F94Zp6AW0QlJzpx7z5m594Z5HEnlea8lZ2FxaXmlvLq2vrG5tV3Z2W3LrBCMt1gWZ6IbBpLHUcpbKlIx7+aCB0kY8044Ptfxzh0XMsrSKzXJeT8JRmk0jFigiGoObypVr+aZ5c4D34Iq7GpklRdcY4AMDAUScKRQhGMEkPT04MNDTlwfU+IEocjEOe6xRtqCsjhlBMSO6TuiXc+yKe21pzRqRqfE9ApSujgkTUZ5grA+zTXxwjhr9jfvqfHUd5vQP7ReCbEKt8T+pZtl/lena1EY4szUEFFNuWF0dcy6FKYr+ubul6oUOeTEaTyguCDMjHLWZ9dopKld9zYw8TeTqVm9Zza3wLu+JQ3Y/znOedA+rvlezW+eVOueHXUZ+zjAEc3zFHVcooGW8X7EE56dCyd2pFN8pjolq9nDt+U8fAA68o9Z</latexit><latexit sha1_base64="4ETgWLBdoE99SJAqd+LGoGujsdM=">AAACxHicjVHLSsNAFD2Nr/quunQTLIKrkoigy4IgLluwD6hFkum0hubFzEQoRX/ArX6b+Af6F94Zp6AW0QlJzpx7z5m594Z5HEnlea8lZ2FxaXmlvLq2vrG5tV3Z2W3LrBCMt1gWZ6IbBpLHUcpbKlIx7+aCB0kY8044Ptfxzh0XMsrSKzXJeT8JRmk0jFigiGoObypVr+aZ5c4D34Iq7GpklRdcY4AMDAUScKRQhGMEkPT04MNDTlwfU+IEocjEOe6xRtqCsjhlBMSO6TuiXc+yKe21pzRqRqfE9ApSujgkTUZ5grA+zTXxwjhr9jfvqfHUd5vQP7ReCbEKt8T+pZtl/lena1EY4szUEFFNuWF0dcy6FKYr+ubul6oUOeTEaTyguCDMjHLWZ9dopKld9zYw8TeTqVm9Zza3wLu+JQ3Y/znOedA+rvlezW+eVOueHXUZ+zjAEc3zFHVcooGW8X7EE56dCyd2pFN8pjolq9nDt+U8fAA68o9Z</latexit><latexit sha1_base64="4ETgWLBdoE99SJAqd+LGoGujsdM=">AAACxHicjVHLSsNAFD2Nr/quunQTLIKrkoigy4IgLluwD6hFkum0hubFzEQoRX/ArX6b+Af6F94Zp6AW0QlJzpx7z5m594Z5HEnlea8lZ2FxaXmlvLq2vrG5tV3Z2W3LrBCMt1gWZ6IbBpLHUcpbKlIx7+aCB0kY8044Ptfxzh0XMsrSKzXJeT8JRmk0jFigiGoObypVr+aZ5c4D34Iq7GpklRdcY4AMDAUScKRQhGMEkPT04MNDTlwfU+IEocjEOe6xRtqCsjhlBMSO6TuiXc+yKe21pzRqRqfE9ApSujgkTUZ5grA+zTXxwjhr9jfvqfHUd5vQP7ReCbEKt8T+pZtl/lena1EY4szUEFFNuWF0dcy6FKYr+ubul6oUOeTEaTyguCDMjHLWZ9dopKld9zYw8TeTqVm9Zza3wLu+JQ3Y/znOedA+rvlezW+eVOueHXUZ+zjAEc3zFHVcooGW8X7EE56dCyd2pFN8pjolq9nDt+U8fAA68o9Z</latexit>

q<latexit sha1_base64="5hZBkg4Zz5aCBxYsogUdwStkLyE=">AAACxHicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdFkQxGUL9gG1SJJO69BpEicToRT9Abf6beIf6F94Z5yCWkQnJDlz7j1n5t4bpoJnyvNeC87C4tLySnG1tLa+sblV3t5pZUkuI9aMEpHIThhkTPCYNRVXgnVSyYJxKFg7HJ3pePuOyYwn8aWapKw3DoYxH/AoUEQ1bq/LFa/qmeXOA9+CCuyqJ+UXXKGPBBFyjMEQQxEWCJDR04UPDylxPUyJk4S4iTPco0TanLIYZQTEjug7pF3XsjHttWdm1BGdIuiVpHRxQJqE8iRhfZpr4rlx1uxv3lPjqe82oX9ovcbEKtwQ+5dulvlfna5FYYBTUwOnmlLD6Ooi65Kbruibu1+qUuSQEqdxn+KScGSUsz67RpOZ2nVvAxN/M5ma1fvI5uZ417ekAfs/xzkPWkdV36v6jeNKzbOjLmIP+zikeZ6ghgvU0TTej3jCs3PuCCdz8s9Up2A1u/i2nIcPVRKPZA==</latexit><latexit sha1_base64="5hZBkg4Zz5aCBxYsogUdwStkLyE=">AAACxHicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdFkQxGUL9gG1SJJO69BpEicToRT9Abf6beIf6F94Z5yCWkQnJDlz7j1n5t4bpoJnyvNeC87C4tLySnG1tLa+sblV3t5pZUkuI9aMEpHIThhkTPCYNRVXgnVSyYJxKFg7HJ3pePuOyYwn8aWapKw3DoYxH/AoUEQ1bq/LFa/qmeXOA9+CCuyqJ+UXXKGPBBFyjMEQQxEWCJDR04UPDylxPUyJk4S4iTPco0TanLIYZQTEjug7pF3XsjHttWdm1BGdIuiVpHRxQJqE8iRhfZpr4rlx1uxv3lPjqe82oX9ovcbEKtwQ+5dulvlfna5FYYBTUwOnmlLD6Ooi65Kbruibu1+qUuSQEqdxn+KScGSUsz67RpOZ2nVvAxN/M5ma1fvI5uZ417ekAfs/xzkPWkdV36v6jeNKzbOjLmIP+zikeZ6ghgvU0TTej3jCs3PuCCdz8s9Up2A1u/i2nIcPVRKPZA==</latexit><latexit sha1_base64="5hZBkg4Zz5aCBxYsogUdwStkLyE=">AAACxHicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdFkQxGUL9gG1SJJO69BpEicToRT9Abf6beIf6F94Z5yCWkQnJDlz7j1n5t4bpoJnyvNeC87C4tLySnG1tLa+sblV3t5pZUkuI9aMEpHIThhkTPCYNRVXgnVSyYJxKFg7HJ3pePuOyYwn8aWapKw3DoYxH/AoUEQ1bq/LFa/qmeXOA9+CCuyqJ+UXXKGPBBFyjMEQQxEWCJDR04UPDylxPUyJk4S4iTPco0TanLIYZQTEjug7pF3XsjHttWdm1BGdIuiVpHRxQJqE8iRhfZpr4rlx1uxv3lPjqe82oX9ovcbEKtwQ+5dulvlfna5FYYBTUwOnmlLD6Ooi65Kbruibu1+qUuSQEqdxn+KScGSUsz67RpOZ2nVvAxN/M5ma1fvI5uZ417ekAfs/xzkPWkdV36v6jeNKzbOjLmIP+zikeZ6ghgvU0TTej3jCs3PuCCdz8s9Up2A1u/i2nIcPVRKPZA==</latexit>

p<latexit sha1_base64="soXmGNFSiDFU7lveu79rwAaSmHA=">AAACxHicjVHLSsNAFD2Nr/quunQTLIKrkoigy4IgLluwD6hFknRah+bFzEQoRX/ArX6b+Af6F94Zp6AW0QlJzpx7z5m594Z5zKXyvNeSs7C4tLxSXl1b39jc2q7s7LZlVoiItaIszkQ3DCSLecpaiquYdXPBgiSMWSccn+t4544JybP0Sk1y1k+CUcqHPAoUUc38plL1ap5Z7jzwLajCrkZWecE1BsgQoUAChhSKcIwAkp4efHjIietjSpwgxE2c4R5rpC0oi1FGQOyYviPa9Syb0l57SqOO6JSYXkFKF4ekyShPENanuSZeGGfN/uY9NZ76bhP6h9YrIVbhlti/dLPM/+p0LQpDnJkaONWUG0ZXF1mXwnRF39z9UpUih5w4jQcUF4Qjo5z12TUaaWrXvQ1M/M1kalbvI5tb4F3fkgbs/xznPGgf13yv5jdPqnXPjrqMfRzgiOZ5ijou0UDLeD/iCc/OhRM70ik+U52S1ezh23IePgBSso9j</latexit><latexit sha1_base64="soXmGNFSiDFU7lveu79rwAaSmHA=">AAACxHicjVHLSsNAFD2Nr/quunQTLIKrkoigy4IgLluwD6hFknRah+bFzEQoRX/ArX6b+Af6F94Zp6AW0QlJzpx7z5m594Z5zKXyvNeSs7C4tLxSXl1b39jc2q7s7LZlVoiItaIszkQ3DCSLecpaiquYdXPBgiSMWSccn+t4544JybP0Sk1y1k+CUcqHPAoUUc38plL1ap5Z7jzwLajCrkZWecE1BsgQoUAChhSKcIwAkp4efHjIietjSpwgxE2c4R5rpC0oi1FGQOyYviPa9Syb0l57SqOO6JSYXkFKF4ekyShPENanuSZeGGfN/uY9NZ76bhP6h9YrIVbhlti/dLPM/+p0LQpDnJkaONWUG0ZXF1mXwnRF39z9UpUih5w4jQcUF4Qjo5z12TUaaWrXvQ1M/M1kalbvI5tb4F3fkgbs/xznPGgf13yv5jdPqnXPjrqMfRzgiOZ5ijou0UDLeD/iCc/OhRM70ik+U52S1ezh23IePgBSso9j</latexit><latexit sha1_base64="soXmGNFSiDFU7lveu79rwAaSmHA=">AAACxHicjVHLSsNAFD2Nr/quunQTLIKrkoigy4IgLluwD6hFknRah+bFzEQoRX/ArX6b+Af6F94Zp6AW0QlJzpx7z5m594Z5zKXyvNeSs7C4tLxSXl1b39jc2q7s7LZlVoiItaIszkQ3DCSLecpaiquYdXPBgiSMWSccn+t4544JybP0Sk1y1k+CUcqHPAoUUc38plL1ap5Z7jzwLajCrkZWecE1BsgQoUAChhSKcIwAkp4efHjIietjSpwgxE2c4R5rpC0oi1FGQOyYviPa9Syb0l57SqOO6JSYXkFKF4ekyShPENanuSZeGGfN/uY9NZ76bhP6h9YrIVbhlti/dLPM/+p0LQpDnJkaONWUG0ZXF1mXwnRF39z9UpUih5w4jQcUF4Qjo5z12TUaaWrXvQ1M/M1kalbvI5tb4F3fkgbs/xznPGgf13yv5jdPqnXPjrqMfRzgiOZ5ijou0UDLeD/iCc/OhRM70ik+U52S1ezh23IePgBSso9j</latexit>

;<latexit sha1_base64="iCD6Hbi+wvlt+QQ60Pjzx9pBjLA=">AAACzHicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdFlw40oq2FbRIsl0WofmRWYilNKtP+BWv0v8A/0L74xTUIvohCRnzr3nzNx7wywSUnnea8mZm19YXCovV1ZW19Y3qptbbZkWOeMtlkZpfhkGkkci4S0lVMQvs5wHcRjxTjg80fHOPc+lSJMLNcp4Nw4GiegLFiiirm54nKmR5Oq2WvPqnlnuLPAtqMGuZlp9wQ16SMFQIAZHAkU4QgBJzzV8eMiI62JMXE5ImDjHBBXSFpTFKSMgdkjfAe2uLZvQXntKo2Z0SkRvTkoXe6RJKS8nrE9zTbwwzpr9zXtsPPXdRvQPrVdMrMIdsX/pppn/1elaFPo4NjUIqikzjK6OWZfCdEXf3P1SlSKHjDiNexTPCTOjnPbZNRppate9DUz8zWRqVu+ZzS3wrm9JA/Z/jnMWtA/qvlf3zw9rDc+Ouowd7GKf5nmEBk7RRIu8YzziCc/OmaOcsTP5THVKVrONb8t5+ACk+JMa</latexit><latexit sha1_base64="iCD6Hbi+wvlt+QQ60Pjzx9pBjLA=">AAACzHicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdFlw40oq2FbRIsl0WofmRWYilNKtP+BWv0v8A/0L74xTUIvohCRnzr3nzNx7wywSUnnea8mZm19YXCovV1ZW19Y3qptbbZkWOeMtlkZpfhkGkkci4S0lVMQvs5wHcRjxTjg80fHOPc+lSJMLNcp4Nw4GiegLFiiirm54nKmR5Oq2WvPqnlnuLPAtqMGuZlp9wQ16SMFQIAZHAkU4QgBJzzV8eMiI62JMXE5ImDjHBBXSFpTFKSMgdkjfAe2uLZvQXntKo2Z0SkRvTkoXe6RJKS8nrE9zTbwwzpr9zXtsPPXdRvQPrVdMrMIdsX/pppn/1elaFPo4NjUIqikzjK6OWZfCdEXf3P1SlSKHjDiNexTPCTOjnPbZNRppate9DUz8zWRqVu+ZzS3wrm9JA/Z/jnMWtA/qvlf3zw9rDc+Ouowd7GKf5nmEBk7RRIu8YzziCc/OmaOcsTP5THVKVrONb8t5+ACk+JMa</latexit><latexit sha1_base64="iCD6Hbi+wvlt+QQ60Pjzx9pBjLA=">AAACzHicjVHLSsNAFD2Nr1pfVZdugkVwVRIRdFlw40oq2FbRIsl0WofmRWYilNKtP+BWv0v8A/0L74xTUIvohCRnzr3nzNx7wywSUnnea8mZm19YXCovV1ZW19Y3qptbbZkWOeMtlkZpfhkGkkci4S0lVMQvs5wHcRjxTjg80fHOPc+lSJMLNcp4Nw4GiegLFiiirm54nKmR5Oq2WvPqnlnuLPAtqMGuZlp9wQ16SMFQIAZHAkU4QgBJzzV8eMiI62JMXE5ImDjHBBXSFpTFKSMgdkjfAe2uLZvQXntKo2Z0SkRvTkoXe6RJKS8nrE9zTbwwzpr9zXtsPPXdRvQPrVdMrMIdsX/pppn/1elaFPo4NjUIqikzjK6OWZfCdEXf3P1SlSKHjDiNexTPCTOjnPbZNRppate9DUz8zWRqVu+ZzS3wrm9JA/Z/jnMWtA/qvlf3zw9rDc+Ouowd7GKf5nmEBk7RRIu8YzziCc/OmaOcsTP5THVKVrONb8t5+ACk+JMa</latexit>

Overlapping Categories<latexit sha1_base64="g5T2p98U3AnV/m27wZ2UtEcy7so=">AAAC23icjVHLSsQwFD3W9/gaFdy4KQ6CuBja2ehScONOBecB4yBpjWMw05Y0FYbRlTtx6w+41f8R/0D/wpuYAR+IprQ9Ofeek9x7o0yKXAfBy4g3OjY+MTk1XZqZnZtfKC8uNfK0UDGvx6lMVStiOZci4XUttOStTHHWiyRvRhe7Jt685CoXaXKk+xnv9Fg3EWciZpqok/LKPkUlyzKRdP1dpnk3VYLnJ+VKUA3s8n+C0IEK3DpIy884xilSxCjQA0cCTViCIaenjRABMuI6GBCnCAkb57hGibQFZXHKYMRe0LdLu7ZjE9obz9yqYzpF0qtI6WOdNCnlKcLmNN/GC+ts2N+8B9bT3K1P/8h59YjVOCf2L90w8786U4vGGbZtDYJqyixjqoudS2G7Ym7uf6pKk0NGnMGnFFeEY6sc9tm3mtzWbnrLbPzVZhrW7GOXW+DN3JIGHH4f50/QqFXDoBoe1io7m27UU1jFGjZonlvYwR4OUCfvKzzgEU9ex7vxbr27j1RvxGmW8WV59+/qmJib</latexit><latexit sha1_base64="g5T2p98U3AnV/m27wZ2UtEcy7so=">AAAC23icjVHLSsQwFD3W9/gaFdy4KQ6CuBja2ehScONOBecB4yBpjWMw05Y0FYbRlTtx6w+41f8R/0D/wpuYAR+IprQ9Ofeek9x7o0yKXAfBy4g3OjY+MTk1XZqZnZtfKC8uNfK0UDGvx6lMVStiOZci4XUttOStTHHWiyRvRhe7Jt685CoXaXKk+xnv9Fg3EWciZpqok/LKPkUlyzKRdP1dpnk3VYLnJ+VKUA3s8n+C0IEK3DpIy884xilSxCjQA0cCTViCIaenjRABMuI6GBCnCAkb57hGibQFZXHKYMRe0LdLu7ZjE9obz9yqYzpF0qtI6WOdNCnlKcLmNN/GC+ts2N+8B9bT3K1P/8h59YjVOCf2L90w8786U4vGGbZtDYJqyixjqoudS2G7Ym7uf6pKk0NGnMGnFFeEY6sc9tm3mtzWbnrLbPzVZhrW7GOXW+DN3JIGHH4f50/QqFXDoBoe1io7m27UU1jFGjZonlvYwR4OUCfvKzzgEU9ex7vxbr27j1RvxGmW8WV59+/qmJib</latexit><latexit sha1_base64="g5T2p98U3AnV/m27wZ2UtEcy7so=">AAAC23icjVHLSsQwFD3W9/gaFdy4KQ6CuBja2ehScONOBecB4yBpjWMw05Y0FYbRlTtx6w+41f8R/0D/wpuYAR+IprQ9Ofeek9x7o0yKXAfBy4g3OjY+MTk1XZqZnZtfKC8uNfK0UDGvx6lMVStiOZci4XUttOStTHHWiyRvRhe7Jt685CoXaXKk+xnv9Fg3EWciZpqok/LKPkUlyzKRdP1dpnk3VYLnJ+VKUA3s8n+C0IEK3DpIy884xilSxCjQA0cCTViCIaenjRABMuI6GBCnCAkb57hGibQFZXHKYMRe0LdLu7ZjE9obz9yqYzpF0qtI6WOdNCnlKcLmNN/GC+ts2N+8B9bT3K1P/8h59YjVOCf2L90w8786U4vGGbZtDYJqyixjqoudS2G7Ym7uf6pKk0NGnMGnFFeEY6sc9tm3mtzWbnrLbPzVZhrW7GOXW+DN3JIGHH4f50/QqFXDoBoe1io7m27UU1jFGjZonlvYwR4OUCfvKzzgEU9ex7vxbr27j1RvxGmW8WV59+/qmJib</latexit>

Orthogonal Categories<latexit sha1_base64="ytOhcXzI9oXfiUuHIq+o/FYE7dA=">AAAC2nicjVHLSsNAFD2Nr/qOiis3wSKIi5J0o0vBjTsrWBXaUibpWIemmTCZCKW4cSdu/QG3+kHiH+hfeGeMoBbRCUnOnHvPmbn3hmksMu37LyVnYnJqeqY8Oze/sLi07K6snmYyVxFvRDKW6jxkGY9Fwhta6Jifp4qzQRjzs7B/YOJnV1xlQiYnepjy9oD1EnEhIqaJ6rjrR0pfyp5MWOwdMM17UgmeddyKX/Xt8sZBUIAKilWX7jNa6EIiQo4BOBJowjEYMnqaCOAjJa6NEXGKkLBxjmvMkTanLE4ZjNg+fXu0axZsQnvjmVl1RKfE9CpSetgijaQ8Rdic5tl4bp0N+5v3yHqauw3pHxZeA2I1Lon9S/eZ+V+dqUXjAnu2BkE1pZYx1UWFS267Ym7ufalKk0NKnMFdiivCkVV+9tmzmszWbnrLbPzVZhrW7KMiN8ebuSUNOPg5znFwWqsGfjU4rlX2d4pRl7GBTWzTPHexj0PU0SDvER7wiCen5dw4t87dR6pTKjRr+Lac+3fAOZgn</latexit><latexit sha1_base64="ytOhcXzI9oXfiUuHIq+o/FYE7dA=">AAAC2nicjVHLSsNAFD2Nr/qOiis3wSKIi5J0o0vBjTsrWBXaUibpWIemmTCZCKW4cSdu/QG3+kHiH+hfeGeMoBbRCUnOnHvPmbn3hmksMu37LyVnYnJqeqY8Oze/sLi07K6snmYyVxFvRDKW6jxkGY9Fwhta6Jifp4qzQRjzs7B/YOJnV1xlQiYnepjy9oD1EnEhIqaJ6rjrR0pfyp5MWOwdMM17UgmeddyKX/Xt8sZBUIAKilWX7jNa6EIiQo4BOBJowjEYMnqaCOAjJa6NEXGKkLBxjmvMkTanLE4ZjNg+fXu0axZsQnvjmVl1RKfE9CpSetgijaQ8Rdic5tl4bp0N+5v3yHqauw3pHxZeA2I1Lon9S/eZ+V+dqUXjAnu2BkE1pZYx1UWFS267Ym7ufalKk0NKnMFdiivCkVV+9tmzmszWbnrLbPzVZhrW7KMiN8ebuSUNOPg5znFwWqsGfjU4rlX2d4pRl7GBTWzTPHexj0PU0SDvER7wiCen5dw4t87dR6pTKjRr+Lac+3fAOZgn</latexit><latexit sha1_base64="ytOhcXzI9oXfiUuHIq+o/FYE7dA=">AAAC2nicjVHLSsNAFD2Nr/qOiis3wSKIi5J0o0vBjTsrWBXaUibpWIemmTCZCKW4cSdu/QG3+kHiH+hfeGeMoBbRCUnOnHvPmbn3hmksMu37LyVnYnJqeqY8Oze/sLi07K6snmYyVxFvRDKW6jxkGY9Fwhta6Jifp4qzQRjzs7B/YOJnV1xlQiYnepjy9oD1EnEhIqaJ6rjrR0pfyp5MWOwdMM17UgmeddyKX/Xt8sZBUIAKilWX7jNa6EIiQo4BOBJowjEYMnqaCOAjJa6NEXGKkLBxjmvMkTanLE4ZjNg+fXu0axZsQnvjmVl1RKfE9CpSetgijaQ8Rdic5tl4bp0N+5v3yHqauw3pHxZeA2I1Lon9S/eZ+V+dqUXjAnu2BkE1pZYx1UWFS267Ym7ufalKk0NKnMFdiivCkVV+9tmzmszWbnrLbPzVZhrW7KMiN8ebuSUNOPg5znFwWqsGfjU4rlX2d4pRl7GBTWzTPHexj0PU0SDvER7wiCen5dw4t87dR6pTKjRr+Lac+3fAOZgn</latexit>

Sibling Categories<latexit sha1_base64="90bxZTf2hLkiBdCsJKYkh//QJv0=">AAAC13icjVHLSsNAFD2Nr1pfsS7dBIsgLkriRpeFblxWtA+ppSTptA5NkzCZiKWIO3HrD7jVPxL/QP/CO2MKahGdkOTMufecmXuvFwc8kbb9mjPm5hcWl/LLhZXVtfUNc7PYSKJU+KzuR0EkWp6bsICHrC65DFgrFswdeQFresOqijevmEh4FJ7Jccw6I3cQ8j73XUlU1yyeco+0A6vqSjaIBGdJ1yzZZVsvaxY4GSghW7XIfMEFeojgI8UIDCEk4QAuEnracGAjJq6DCXGCENdxhhsUSJtSFqMMl9ghfQe0a2dsSHvlmWi1T6cE9ApSWtglTUR5grA6zdLxVDsr9jfvifZUdxvT38u8RsRKXBL7l26a+V+dqkWijyNdA6eaYs2o6vzMJdVdUTe3vlQlySEmTuEexQVhXyunfba0JtG1q966Ov6mMxWr9n6Wm+Jd3ZIG7Pwc5yxoHJQdu+ycHJQq+9mo89jGDvZonoeo4Bg11Mn7Go94wrNxbtwad8b9Z6qRyzRb+LaMhw8LQ5a0</latexit><latexit sha1_base64="90bxZTf2hLkiBdCsJKYkh//QJv0=">AAAC13icjVHLSsNAFD2Nr1pfsS7dBIsgLkriRpeFblxWtA+ppSTptA5NkzCZiKWIO3HrD7jVPxL/QP/CO2MKahGdkOTMufecmXuvFwc8kbb9mjPm5hcWl/LLhZXVtfUNc7PYSKJU+KzuR0EkWp6bsICHrC65DFgrFswdeQFresOqijevmEh4FJ7Jccw6I3cQ8j73XUlU1yyeco+0A6vqSjaIBGdJ1yzZZVsvaxY4GSghW7XIfMEFeojgI8UIDCEk4QAuEnracGAjJq6DCXGCENdxhhsUSJtSFqMMl9ghfQe0a2dsSHvlmWi1T6cE9ApSWtglTUR5grA6zdLxVDsr9jfvifZUdxvT38u8RsRKXBL7l26a+V+dqkWijyNdA6eaYs2o6vzMJdVdUTe3vlQlySEmTuEexQVhXyunfba0JtG1q966Ov6mMxWr9n6Wm+Jd3ZIG7Pwc5yxoHJQdu+ycHJQq+9mo89jGDvZonoeo4Bg11Mn7Go94wrNxbtwad8b9Z6qRyzRb+LaMhw8LQ5a0</latexit><latexit sha1_base64="90bxZTf2hLkiBdCsJKYkh//QJv0=">AAAC13icjVHLSsNAFD2Nr1pfsS7dBIsgLkriRpeFblxWtA+ppSTptA5NkzCZiKWIO3HrD7jVPxL/QP/CO2MKahGdkOTMufecmXuvFwc8kbb9mjPm5hcWl/LLhZXVtfUNc7PYSKJU+KzuR0EkWp6bsICHrC65DFgrFswdeQFresOqijevmEh4FJ7Jccw6I3cQ8j73XUlU1yyeco+0A6vqSjaIBGdJ1yzZZVsvaxY4GSghW7XIfMEFeojgI8UIDCEk4QAuEnracGAjJq6DCXGCENdxhhsUSJtSFqMMl9ghfQe0a2dsSHvlmWi1T6cE9ApSWtglTUR5grA6zdLxVDsr9jfvifZUdxvT38u8RsRKXBL7l26a+V+dqkWijyNdA6eaYs2o6vzMJdVdUTe3vlQlySEmTuEexQVhXyunfba0JtG1q966Ov6mMxWr9n6Wm+Jd3ZIG7Pwc5yxoHJQdu+ycHJQq+9mo89jGDvZonoeo4Bg11Mn7Go94wrNxbtwad8b9Z6qRyzRb+LaMhw8LQ5a0</latexit>

(b) Entity categories relationship

Figure 2: Illustration of the concept of consistency Cs andentity categories relationship. gpe and gqe represents the gra-dient of entity belongs to category p and q, respectively. eand f are the collection of entities and features overlappedby categories p and q, respectively.

where p and q denote different entity categories. Cp rep-resents the number of test entities with category p. Alg. 1illustrates the process for consistency calculation and evalua-tion.

Exp-V: Probing Inter-category Relationships via Consis-tency

Given an NER model, we can understand its generaliza-tion ability by calculating the consistency matrix based onAlg. 1. As shown in Fig. 3, the sub-figure (a) illustrates theconsistency matrice of two NER models trained on CoNLLAs expected, the on-diagonal elements of Mp,q (p = q) usu-ally stay high, since it is easier for the model to find sharedfeatures between different entities within the same category.Algorithmically speaking, a gradient step taken with respectto one test entity can reduce the loss on another test entity.

Additionally, a larger value of off-diagonal elements indi-cates that the two categories share more common properties.As a result, a correct judgment of one category is useful foranother. For example, Percent category and Ordinalcategory shared a common property of “digit”. We name thisrelationship between them as Sibling Categories, shown inFig. 2(b).

However, if the off-diagonal elements are negative, it sug-gests that a gradient step taken with respect to one test entitywould increase loss on another test entity with different cate-gories, which we define as Overlapping Categories, shownin Fig. 2(b). This phenomenon usually occurs when two cat-egories have some overlapped entities. For instance, “NewYork University” is usually a Location name, butwhen “New York University” represents as the NewYork University football team, “New York University”is an Organization name.

Particularly, if the off-diagonal elements are close to zero,

it means the features of two categories tend to be orthogonal:they share few entities or common properties. We name therelationship of these categories as Orthogonal Categories,shown in Fig. 2(b).

Overall: 0.83<latexit sha1_base64="qUQCLbpxuFkLYiHi/nFuFF8thaQ=">AAAC0HicjVHLSsNAFD2Nr1pfVZdugkVxFZK6sLgquHFnFfuAWiSZTmvoNInJRCxFxK0/4Fa/SvwD/QvvjBHUIjohyZlz7zkz914vEn4ibfslZ0xNz8zO5ecLC4tLyyvF1bVGEqYx43UWijBueW7ChR/wuvSl4K0o5u7QE7zpDQ5UvHnF48QPg1M5inhn6PYDv+czVxLVOaKYK8S+aVuV3fNiybZsvcxJ4GSghGzVwuIzztBFCIYUQ3AEkIQFXCT0tOHARkRcB2PiYkK+jnPcoEDalLI4ZbjEDujbp107YwPaK89EqxmdIuiNSWliizQh5cWE1WmmjqfaWbG/eY+1p7rbiP5e5jUkVuKC2L90n5n/1alaJHqo6Bp8qinSjKqOZS6p7oq6ufmlKkkOEXEKdykeE2Za+dlnU2sSXbvqravjrzpTsWrPstwUb+qWNGDn5zgnQaNsObblHJdL1e1s1HlsYBM7NM89VHGIGurkfYkHPOLJODGujVvj7iPVyGWadXxbxv07lC6TVw==</latexit><latexit sha1_base64="qUQCLbpxuFkLYiHi/nFuFF8thaQ=">AAAC0HicjVHLSsNAFD2Nr1pfVZdugkVxFZK6sLgquHFnFfuAWiSZTmvoNInJRCxFxK0/4Fa/SvwD/QvvjBHUIjohyZlz7zkz914vEn4ibfslZ0xNz8zO5ecLC4tLyyvF1bVGEqYx43UWijBueW7ChR/wuvSl4K0o5u7QE7zpDQ5UvHnF48QPg1M5inhn6PYDv+czVxLVOaKYK8S+aVuV3fNiybZsvcxJ4GSghGzVwuIzztBFCIYUQ3AEkIQFXCT0tOHARkRcB2PiYkK+jnPcoEDalLI4ZbjEDujbp107YwPaK89EqxmdIuiNSWliizQh5cWE1WmmjqfaWbG/eY+1p7rbiP5e5jUkVuKC2L90n5n/1alaJHqo6Bp8qinSjKqOZS6p7oq6ufmlKkkOEXEKdykeE2Za+dlnU2sSXbvqravjrzpTsWrPstwUb+qWNGDn5zgnQaNsObblHJdL1e1s1HlsYBM7NM89VHGIGurkfYkHPOLJODGujVvj7iPVyGWadXxbxv07lC6TVw==</latexit><latexit sha1_base64="qUQCLbpxuFkLYiHi/nFuFF8thaQ=">AAAC0HicjVHLSsNAFD2Nr1pfVZdugkVxFZK6sLgquHFnFfuAWiSZTmvoNInJRCxFxK0/4Fa/SvwD/QvvjBHUIjohyZlz7zkz914vEn4ibfslZ0xNz8zO5ecLC4tLyyvF1bVGEqYx43UWijBueW7ChR/wuvSl4K0o5u7QE7zpDQ5UvHnF48QPg1M5inhn6PYDv+czVxLVOaKYK8S+aVuV3fNiybZsvcxJ4GSghGzVwuIzztBFCIYUQ3AEkIQFXCT0tOHARkRcB2PiYkK+jnPcoEDalLI4ZbjEDujbp107YwPaK89EqxmdIuiNSWliizQh5cWE1WmmjqfaWbG/eY+1p7rbiP5e5jUkVuKC2L90n5n/1alaJHqo6Bp8qinSjKqOZS6p7oq6ufmlKkkOEXEKdykeE2Za+dlnU2sSXbvqravjrzpTsWrPstwUb+qWNGDn5zgnQaNsObblHJdL1e1s1HlsYBM7NM89VHGIGurkfYkHPOLJODGujVvj7iPVyGWadXxbxv07lC6TVw==</latexit>

P-row<latexit sha1_base64="/V9t3CBb4+zr0P4e4CvgmOZ7Y1Y=">AAACyHicjVHLTsJAFD3UF+ILdemmkWjcSFo2uiRxY1xhYoEEiWmHASeUtplOJYS48Qfc6pcZ/0D/wjtjSVRidJq2Z86958zce4MkFKlynNeCtbC4tLxSXC2trW9sbpW3d5ppnEnGPRaHsWwHfspDEXFPCRXydiK5PwpC3gqGZzreuuMyFXF0pSYJ7478QST6gvmKKK9xLOPxTbniVB2z7Hng5qCCfDXi8guu0UMMhgwjcERQhEP4SOnpwIWDhLgupsRJQsLEOe5RIm1GWZwyfGKH9B3QrpOzEe21Z2rUjE4J6ZWktHFAmpjyJGF9mm3imXHW7G/eU+Op7zahf5B7jYhVuCX2L90s8786XYtCH6emBkE1JYbR1bHcJTNd0Te3v1SlyCEhTuMexSVhZpSzPttGk5radW99E38zmZrVe5bnZnjXt6QBuz/HOQ+atarrVN3LWqV+mI+6iD3s44jmeYI6ztGAR94Cj3jCs3VhJdbYmnymWoVcs4tvy3r4ADlSkOQ=</latexit><latexit sha1_base64="/V9t3CBb4+zr0P4e4CvgmOZ7Y1Y=">AAACyHicjVHLTsJAFD3UF+ILdemmkWjcSFo2uiRxY1xhYoEEiWmHASeUtplOJYS48Qfc6pcZ/0D/wjtjSVRidJq2Z86958zce4MkFKlynNeCtbC4tLxSXC2trW9sbpW3d5ppnEnGPRaHsWwHfspDEXFPCRXydiK5PwpC3gqGZzreuuMyFXF0pSYJ7478QST6gvmKKK9xLOPxTbniVB2z7Hng5qCCfDXi8guu0UMMhgwjcERQhEP4SOnpwIWDhLgupsRJQsLEOe5RIm1GWZwyfGKH9B3QrpOzEe21Z2rUjE4J6ZWktHFAmpjyJGF9mm3imXHW7G/eU+Op7zahf5B7jYhVuCX2L90s8786XYtCH6emBkE1JYbR1bHcJTNd0Te3v1SlyCEhTuMexSVhZpSzPttGk5radW99E38zmZrVe5bnZnjXt6QBuz/HOQ+atarrVN3LWqV+mI+6iD3s44jmeYI6ztGAR94Cj3jCs3VhJdbYmnymWoVcs4tvy3r4ADlSkOQ=</latexit><latexit sha1_base64="/V9t3CBb4+zr0P4e4CvgmOZ7Y1Y=">AAACyHicjVHLTsJAFD3UF+ILdemmkWjcSFo2uiRxY1xhYoEEiWmHASeUtplOJYS48Qfc6pcZ/0D/wjtjSVRidJq2Z86958zce4MkFKlynNeCtbC4tLxSXC2trW9sbpW3d5ppnEnGPRaHsWwHfspDEXFPCRXydiK5PwpC3gqGZzreuuMyFXF0pSYJ7478QST6gvmKKK9xLOPxTbniVB2z7Hng5qCCfDXi8guu0UMMhgwjcERQhEP4SOnpwIWDhLgupsRJQsLEOe5RIm1GWZwyfGKH9B3QrpOzEe21Z2rUjE4J6ZWktHFAmpjyJGF9mm3imXHW7G/eU+Op7zahf5B7jYhVuCX2L90s8786XYtCH6emBkE1JYbR1bHcJTNd0Te3v1SlyCEhTuMexSVhZpSzPttGk5radW99E38zmZrVe5bnZnjXt6QBuz/HOQ+atarrVN3LWqV+mI+6iD3s44jmeYI6ztGAR94Cj3jCs3VhJdbYmnymWoVcs4tvy3r4ADlSkOQ=</latexit>

P-col<latexit sha1_base64="dx7+KXe9FUsGgzX1VhyOO513AQ0=">AAACyHicjVHLSsNAFD3GV62vqks3waK4sSTd6LLgRlxVMG2hFkmm0zo0LyYTpRQ3/oBb/TLxD/QvvDOmoBbRCUnOnHvPmbn3BmkoMuU4r3PW/MLi0nJppby6tr6xWdnabmVJLhn3WBImshP4GQ9FzD0lVMg7qeR+FIS8HYxOdbx9y2UmkvhSjVPei/xhLAaC+Yoor3lEFteVqlNzzLJngVuAKorVTCovuEIfCRhyROCIoQiH8JHR04ULBylxPUyIk4SEiXPco0zanLI4ZfjEjug7pF23YGPaa8/MqBmdEtIrSWljnzQJ5UnC+jTbxHPjrNnfvCfGU99tTP+g8IqIVbgh9i/dNPO/Ol2LwgAnpgZBNaWG0dWxwiU3XdE3t79UpcghJU7jPsUlYWaU0z7bRpOZ2nVvfRN/M5ma1XtW5OZ417ekAbs/xzkLWvWa69Tci3q1cVCMuoRd7OGQ5nmMBs7QhEfeAo94wrN1bqXWnTX+TLXmCs0Ovi3r4QP7ZZDK</latexit><latexit sha1_base64="dx7+KXe9FUsGgzX1VhyOO513AQ0=">AAACyHicjVHLSsNAFD3GV62vqks3waK4sSTd6LLgRlxVMG2hFkmm0zo0LyYTpRQ3/oBb/TLxD/QvvDOmoBbRCUnOnHvPmbn3BmkoMuU4r3PW/MLi0nJppby6tr6xWdnabmVJLhn3WBImshP4GQ9FzD0lVMg7qeR+FIS8HYxOdbx9y2UmkvhSjVPei/xhLAaC+Yoor3lEFteVqlNzzLJngVuAKorVTCovuEIfCRhyROCIoQiH8JHR04ULBylxPUyIk4SEiXPco0zanLI4ZfjEjug7pF23YGPaa8/MqBmdEtIrSWljnzQJ5UnC+jTbxHPjrNnfvCfGU99tTP+g8IqIVbgh9i/dNPO/Ol2LwgAnpgZBNaWG0dWxwiU3XdE3t79UpcghJU7jPsUlYWaU0z7bRpOZ2nVvfRN/M5ma1XtW5OZ417ekAbs/xzkLWvWa69Tci3q1cVCMuoRd7OGQ5nmMBs7QhEfeAo94wrN1bqXWnTX+TLXmCs0Ovi3r4QP7ZZDK</latexit><latexit sha1_base64="dx7+KXe9FUsGgzX1VhyOO513AQ0=">AAACyHicjVHLSsNAFD3GV62vqks3waK4sSTd6LLgRlxVMG2hFkmm0zo0LyYTpRQ3/oBb/TLxD/QvvDOmoBbRCUnOnHvPmbn3BmkoMuU4r3PW/MLi0nJppby6tr6xWdnabmVJLhn3WBImshP4GQ9FzD0lVMg7qeR+FIS8HYxOdbx9y2UmkvhSjVPei/xhLAaC+Yoor3lEFteVqlNzzLJngVuAKorVTCovuEIfCRhyROCIoQiH8JHR04ULBylxPUyIk4SEiXPco0zanLI4ZfjEjug7pF23YGPaa8/MqBmdEtIrSWljnzQJ5UnC+jTbxHPjrNnfvCfGU99tTP+g8IqIVbgh9i/dNPO/Ol2LwgAnpgZBNaWG0dWxwiU3XdE3t79UpcghJU7jPsUlYWaU0z7bRpOZ2nVvfRN/M5ma1XtW5OZ417ekAbs/xzkLWvWa69Tci3q1cVCMuoRd7OGQ5nmMBs7QhEfeAo94wrN1bqXWnTX+TLXmCs0Ovi3r4QP7ZZDK</latexit>

0.85<latexit sha1_base64="0gGmv/GlB9cmy9QBecqrVRUHaxU=">AAACx3icjVHLSsNAFD2Nr1pfVZdugkVxFZKC2GXBje4q2AfUIkk6bYfmxWRSLMWFP+BW/0z8A/0L74wpqEV0QpIz595zZu69XhLwVNr2a8FYWl5ZXSuulzY2t7Z3yrt7rTTOhM+afhzEouO5KQt4xJqSy4B1EsHc0AtY2xufq3h7wkTK4+haThPWC91hxAfcd6WibKt2eluu2Jatl7kInBxUkK9GXH7BDfqI4SNDCIYIknAAFyk9XTiwkRDXw4w4QYjrOMM9SqTNKItRhkvsmL5D2nVzNqK98ky12qdTAnoFKU0ckSamPEFYnWbqeKadFfub90x7qrtN6e/lXiGxEiNi/9LNM/+rU7VIDFDTNXCqKdGMqs7PXTLdFXVz80tVkhwS4hTuU1wQ9rVy3mdTa1Jdu+qtq+NvOlOxau/nuRne1S1pwM7PcS6CVtVybMu5qlbqx/moizjAIU5onmeo4wINNMl7hEc84dm4NGJjYtx9phqFXLOPb8t4+ACZqY/Q</latexit><latexit sha1_base64="0gGmv/GlB9cmy9QBecqrVRUHaxU=">AAACx3icjVHLSsNAFD2Nr1pfVZdugkVxFZKC2GXBje4q2AfUIkk6bYfmxWRSLMWFP+BW/0z8A/0L74wpqEV0QpIz595zZu69XhLwVNr2a8FYWl5ZXSuulzY2t7Z3yrt7rTTOhM+afhzEouO5KQt4xJqSy4B1EsHc0AtY2xufq3h7wkTK4+haThPWC91hxAfcd6WibKt2eluu2Jatl7kInBxUkK9GXH7BDfqI4SNDCIYIknAAFyk9XTiwkRDXw4w4QYjrOMM9SqTNKItRhkvsmL5D2nVzNqK98ky12qdTAnoFKU0ckSamPEFYnWbqeKadFfub90x7qrtN6e/lXiGxEiNi/9LNM/+rU7VIDFDTNXCqKdGMqs7PXTLdFXVz80tVkhwS4hTuU1wQ9rVy3mdTa1Jdu+qtq+NvOlOxau/nuRne1S1pwM7PcS6CVtVybMu5qlbqx/moizjAIU5onmeo4wINNMl7hEc84dm4NGJjYtx9phqFXLOPb8t4+ACZqY/Q</latexit><latexit sha1_base64="0gGmv/GlB9cmy9QBecqrVRUHaxU=">AAACx3icjVHLSsNAFD2Nr1pfVZdugkVxFZKC2GXBje4q2AfUIkk6bYfmxWRSLMWFP+BW/0z8A/0L74wpqEV0QpIz595zZu69XhLwVNr2a8FYWl5ZXSuulzY2t7Z3yrt7rTTOhM+afhzEouO5KQt4xJqSy4B1EsHc0AtY2xufq3h7wkTK4+haThPWC91hxAfcd6WibKt2eluu2Jatl7kInBxUkK9GXH7BDfqI4SNDCIYIknAAFyk9XTiwkRDXw4w4QYjrOMM9SqTNKItRhkvsmL5D2nVzNqK98ky12qdTAnoFKU0ckSamPEFYnWbqeKadFfub90x7qrtN6e/lXiGxEiNi/9LNM/+rU7VIDFDTNXCqKdGMqs7PXTLdFXVz80tVkhwS4hTuU1wQ9rVy3mdTa1Jdu+qtq+NvOlOxau/nuRne1S1pwM7PcS6CVtVybMu5qlbqx/moizjAIU5onmeo4wINNMl7hEc84dm4NGJjYtx9phqFXLOPb8t4+ACZqY/Q</latexit>

0.91<latexit sha1_base64="EQSiAvN7NQYA5MJq5ct1+f4StZQ=">AAACx3icjVHLTsJAFD3UF+ILdemmkWhcNS0bdUfiRneYCJggMe0wwITSNu2USIgLf8Ct/pnxD/QvvDMOiUqMTtP2zLn3nJl7b5CEIpOu+1qwFhaXlleKq6W19Y3NrfL2TjOL85TxBovDOL0O/IyHIuINKWTIr5OU+6Mg5K1geKbirTFPMxFHV3KS8M7I70eiJ5gvFeU6p95tueI6rl72PPAMqMCselx+wQ26iMGQYwSOCJJwCB8ZPW14cJEQ18GUuJSQ0HGOe5RIm1MWpwyf2CF9+7RrGzaivfLMtJrRKSG9KSltHJAmpryUsDrN1vFcOyv2N++p9lR3m9A/MF4jYiUGxP6lm2X+V6dqkejhRNcgqKZEM6o6Zlxy3RV1c/tLVZIcEuIU7lI8Jcy0ctZnW2syXbvqra/jbzpTsWrPTG6Od3VLGrD3c5zzoFl1PNfxLquV2qEZdRF72McRzfMYNZyjjgZ5D/CIJzxbF1Zsja27z1SrYDS7+Lashw+Sio/N</latexit><latexit sha1_base64="EQSiAvN7NQYA5MJq5ct1+f4StZQ=">AAACx3icjVHLTsJAFD3UF+ILdemmkWhcNS0bdUfiRneYCJggMe0wwITSNu2USIgLf8Ct/pnxD/QvvDMOiUqMTtP2zLn3nJl7b5CEIpOu+1qwFhaXlleKq6W19Y3NrfL2TjOL85TxBovDOL0O/IyHIuINKWTIr5OU+6Mg5K1geKbirTFPMxFHV3KS8M7I70eiJ5gvFeU6p95tueI6rl72PPAMqMCselx+wQ26iMGQYwSOCJJwCB8ZPW14cJEQ18GUuJSQ0HGOe5RIm1MWpwyf2CF9+7RrGzaivfLMtJrRKSG9KSltHJAmpryUsDrN1vFcOyv2N++p9lR3m9A/MF4jYiUGxP6lm2X+V6dqkejhRNcgqKZEM6o6Zlxy3RV1c/tLVZIcEuIU7lI8Jcy0ctZnW2syXbvqra/jbzpTsWrPTG6Od3VLGrD3c5zzoFl1PNfxLquV2qEZdRF72McRzfMYNZyjjgZ5D/CIJzxbF1Zsja27z1SrYDS7+Lashw+Sio/N</latexit><latexit sha1_base64="EQSiAvN7NQYA5MJq5ct1+f4StZQ=">AAACx3icjVHLTsJAFD3UF+ILdemmkWhcNS0bdUfiRneYCJggMe0wwITSNu2USIgLf8Ct/pnxD/QvvDMOiUqMTtP2zLn3nJl7b5CEIpOu+1qwFhaXlleKq6W19Y3NrfL2TjOL85TxBovDOL0O/IyHIuINKWTIr5OU+6Mg5K1geKbirTFPMxFHV3KS8M7I70eiJ5gvFeU6p95tueI6rl72PPAMqMCselx+wQ26iMGQYwSOCJJwCB8ZPW14cJEQ18GUuJSQ0HGOe5RIm1MWpwyf2CF9+7RrGzaivfLMtJrRKSG9KSltHJAmpryUsDrN1vFcOyv2N++p9lR3m9A/MF4jYiUGxP6lm2X+V6dqkejhRNcgqKZEM6o6Zlxy3RV1c/tLVZIcEuIU7lI8Jcy0ctZnW2syXbvqra/jbzpTsWrPTG6Od3VLGrD3c5zzoFl1PNfxLquV2qEZdRF72McRzfMYNZyjjgZ5D/CIJzxbF1Zsja27z1SrYDS7+Lashw+Sio/N</latexit>

0.94<latexit sha1_base64="KCqGVNPlGsBKtP5wwd/3Jy+G/2E=">AAACx3icjVHLSsNAFD2Nr1pfVZdugkVxFZIiqLuCG91VsA+oRZJ02obmxWRSLMWFP+BW/0z8A/0L74xTUIvohCRnzr3nzNx7vTQMMmHbrwVjYXFpeaW4Wlpb39jcKm/vNLMk5z5r+EmY8LbnZiwMYtYQgQhZO+XMjbyQtbzRuYy3xoxnQRJfi0nKupE7iIN+4LtCUrZ1dnxbrtiWrZY5DxwNKtCrnpRfcIMeEvjIEYEhhiAcwkVGTwcObKTEdTEljhMKVJzhHiXS5pTFKMMldkTfAe06mo1pLz0zpfbplJBeTkoTB6RJKI8TlqeZKp4rZ8n+5j1VnvJuE/p72isiVmBI7F+6WeZ/dbIWgT5OVQ0B1ZQqRlbna5dcdUXe3PxSlSCHlDiJexTnhH2lnPXZVJpM1S5766r4m8qUrNz7OjfHu7wlDdj5Oc550Kxajm05V9VK7VCPuog97OOI5nmCGi5QR4O8h3jEE56NSyMxxsbdZ6pR0JpdfFvGwweZqo/Q</latexit><latexit sha1_base64="KCqGVNPlGsBKtP5wwd/3Jy+G/2E=">AAACx3icjVHLSsNAFD2Nr1pfVZdugkVxFZIiqLuCG91VsA+oRZJ02obmxWRSLMWFP+BW/0z8A/0L74xTUIvohCRnzr3nzNx7vTQMMmHbrwVjYXFpeaW4Wlpb39jcKm/vNLMk5z5r+EmY8LbnZiwMYtYQgQhZO+XMjbyQtbzRuYy3xoxnQRJfi0nKupE7iIN+4LtCUrZ1dnxbrtiWrZY5DxwNKtCrnpRfcIMeEvjIEYEhhiAcwkVGTwcObKTEdTEljhMKVJzhHiXS5pTFKMMldkTfAe06mo1pLz0zpfbplJBeTkoTB6RJKI8TlqeZKp4rZ8n+5j1VnvJuE/p72isiVmBI7F+6WeZ/dbIWgT5OVQ0B1ZQqRlbna5dcdUXe3PxSlSCHlDiJexTnhH2lnPXZVJpM1S5766r4m8qUrNz7OjfHu7wlDdj5Oc550Kxajm05V9VK7VCPuog97OOI5nmCGi5QR4O8h3jEE56NSyMxxsbdZ6pR0JpdfFvGwweZqo/Q</latexit><latexit sha1_base64="KCqGVNPlGsBKtP5wwd/3Jy+G/2E=">AAACx3icjVHLSsNAFD2Nr1pfVZdugkVxFZIiqLuCG91VsA+oRZJ02obmxWRSLMWFP+BW/0z8A/0L74xTUIvohCRnzr3nzNx7vTQMMmHbrwVjYXFpeaW4Wlpb39jcKm/vNLMk5z5r+EmY8LbnZiwMYtYQgQhZO+XMjbyQtbzRuYy3xoxnQRJfi0nKupE7iIN+4LtCUrZ1dnxbrtiWrZY5DxwNKtCrnpRfcIMeEvjIEYEhhiAcwkVGTwcObKTEdTEljhMKVJzhHiXS5pTFKMMldkTfAe06mo1pLz0zpfbplJBeTkoTB6RJKI8TlqeZKp4rZ8n+5j1VnvJuE/p72isiVmBI7F+6WeZ/dbIWgT5OVQ0B1ZQqRlbna5dcdUXe3PxSlSCHlDiJexTnhH2lnPXZVJpM1S5766r4m8qUrNz7OjfHu7wlDdj5Oc550Kxajm05V9VK7VCPuog97OOI5nmCGi5QR4O8h3jEE56NSyMxxsbdZ6pR0JpdfFvGwweZqo/Q</latexit>

0.90<latexit sha1_base64="BlDiQV3DhCZW70YFvg28Mm2u4Qw=">AAACx3icjVHLTsJAFD3UF+ILdemmkWhcNS0bdUfiRneYCJggMe0wwITSNu2USIgLf8Ct/pnxD/QvvDMOiUqMTtP2zLn3nJl7b5CEIpOu+1qwFhaXlleKq6W19Y3NrfL2TjOL85TxBovDOL0O/IyHIuINKWTIr5OU+6Mg5K1geKbirTFPMxFHV3KS8M7I70eiJ5gvFeU6p+5tueI6rl72PPAMqMCselx+wQ26iMGQYwSOCJJwCB8ZPW14cJEQ18GUuJSQ0HGOe5RIm1MWpwyf2CF9+7RrGzaivfLMtJrRKSG9KSltHJAmpryUsDrN1vFcOyv2N++p9lR3m9A/MF4jYiUGxP6lm2X+V6dqkejhRNcgqKZEM6o6Zlxy3RV1c/tLVZIcEuIU7lI8Jcy0ctZnW2syXbvqra/jbzpTsWrPTG6Od3VLGrD3c5zzoFl1PNfxLquV2qEZdRF72McRzfMYNZyjjgZ5D/CIJzxbF1Zsja27z1SrYDS7+Lashw+QKo/M</latexit><latexit sha1_base64="BlDiQV3DhCZW70YFvg28Mm2u4Qw=">AAACx3icjVHLTsJAFD3UF+ILdemmkWhcNS0bdUfiRneYCJggMe0wwITSNu2USIgLf8Ct/pnxD/QvvDMOiUqMTtP2zLn3nJl7b5CEIpOu+1qwFhaXlleKq6W19Y3NrfL2TjOL85TxBovDOL0O/IyHIuINKWTIr5OU+6Mg5K1geKbirTFPMxFHV3KS8M7I70eiJ5gvFeU6p+5tueI6rl72PPAMqMCselx+wQ26iMGQYwSOCJJwCB8ZPW14cJEQ18GUuJSQ0HGOe5RIm1MWpwyf2CF9+7RrGzaivfLMtJrRKSG9KSltHJAmpryUsDrN1vFcOyv2N++p9lR3m9A/MF4jYiUGxP6lm2X+V6dqkejhRNcgqKZEM6o6Zlxy3RV1c/tLVZIcEuIU7lI8Jcy0ctZnW2syXbvqra/jbzpTsWrPTG6Od3VLGrD3c5zzoFl1PNfxLquV2qEZdRF72McRzfMYNZyjjgZ5D/CIJzxbF1Zsja27z1SrYDS7+Lashw+QKo/M</latexit><latexit sha1_base64="BlDiQV3DhCZW70YFvg28Mm2u4Qw=">AAACx3icjVHLTsJAFD3UF+ILdemmkWhcNS0bdUfiRneYCJggMe0wwITSNu2USIgLf8Ct/pnxD/QvvDMOiUqMTtP2zLn3nJl7b5CEIpOu+1qwFhaXlleKq6W19Y3NrfL2TjOL85TxBovDOL0O/IyHIuINKWTIr5OU+6Mg5K1geKbirTFPMxFHV3KS8M7I70eiJ5gvFeU6p+5tueI6rl72PPAMqMCselx+wQ26iMGQYwSOCJJwCB8ZPW14cJEQ18GUuJSQ0HGOe5RIm1MWpwyf2CF9+7RrGzaivfLMtJrRKSG9KSltHJAmpryUsDrN1vFcOyv2N++p9lR3m9A/MF4jYiUGxP6lm2X+V6dqkejhRNcgqKZEM6o6Zlxy3RV1c/tLVZIcEuIU7lI8Jcy0ctZnW2syXbvqra/jbzpTsWrPTG6Od3VLGrD3c5zzoFl1PNfxLquV2qEZdRF72McRzfMYNZyjjgZ5D/CIJzxbF1Zsja27z1SrYDS7+Lashw+QKo/M</latexit>

0.98<latexit sha1_base64="/Q/2gcuGkFsEa0X/rHha+eyWSwA=">AAACx3icjVHLSsNAFD2Nr1pfVZdugkVxFZJurLuCG91VsA+oRZJ02obmxWRSLMWFP+BW/0z8A/0L74xTUIvohCRnzr3nzNx7vTQMMmHbrwVjaXllda24XtrY3NreKe/utbIk5z5r+kmY8I7nZiwMYtYUgQhZJ+XMjbyQtb3xuYy3J4xnQRJfi2nKepE7jINB4LtCUrZ1VrstV2zLVstcBI4GFejVSMovuEEfCXzkiMAQQxAO4SKjpwsHNlLiepgRxwkFKs5wjxJpc8pilOESO6bvkHZdzca0l56ZUvt0SkgvJ6WJI9IklMcJy9NMFc+Vs2R/854pT3m3Kf097RURKzAi9i/dPPO/OlmLwAA1VUNANaWKkdX52iVXXZE3N79UJcghJU7iPsU5YV8p5302lSZTtcveuir+pjIlK/e+zs3xLm9JA3Z+jnMRtKqWY1vOVbVSP9ajLuIAhziheZ6ijgs00CTvER7xhGfj0kiMiXH3mWoUtGYf35bx8AGjKo/U</latexit><latexit sha1_base64="/Q/2gcuGkFsEa0X/rHha+eyWSwA=">AAACx3icjVHLSsNAFD2Nr1pfVZdugkVxFZJurLuCG91VsA+oRZJ02obmxWRSLMWFP+BW/0z8A/0L74xTUIvohCRnzr3nzNx7vTQMMmHbrwVjaXllda24XtrY3NreKe/utbIk5z5r+kmY8I7nZiwMYtYUgQhZJ+XMjbyQtb3xuYy3J4xnQRJfi2nKepE7jINB4LtCUrZ1VrstV2zLVstcBI4GFejVSMovuEEfCXzkiMAQQxAO4SKjpwsHNlLiepgRxwkFKs5wjxJpc8pilOESO6bvkHZdzca0l56ZUvt0SkgvJ6WJI9IklMcJy9NMFc+Vs2R/854pT3m3Kf097RURKzAi9i/dPPO/OlmLwAA1VUNANaWKkdX52iVXXZE3N79UJcghJU7iPsU5YV8p5302lSZTtcveuir+pjIlK/e+zs3xLm9JA3Z+jnMRtKqWY1vOVbVSP9ajLuIAhziheZ6ijgs00CTvER7xhGfj0kiMiXH3mWoUtGYf35bx8AGjKo/U</latexit><latexit sha1_base64="/Q/2gcuGkFsEa0X/rHha+eyWSwA=">AAACx3icjVHLSsNAFD2Nr1pfVZdugkVxFZJurLuCG91VsA+oRZJ02obmxWRSLMWFP+BW/0z8A/0L74xTUIvohCRnzr3nzNx7vTQMMmHbrwVjaXllda24XtrY3NreKe/utbIk5z5r+kmY8I7nZiwMYtYUgQhZJ+XMjbyQtb3xuYy3J4xnQRJfi2nKepE7jINB4LtCUrZ1VrstV2zLVstcBI4GFejVSMovuEEfCXzkiMAQQxAO4SKjpwsHNlLiepgRxwkFKs5wjxJpc8pilOESO6bvkHZdzca0l56ZUvt0SkgvJ6WJI9IklMcJy9NMFc+Vs2R/854pT3m3Kf097RURKzAi9i/dPPO/OlmLwAA1VUNANaWKkdX52iVXXZE3N79UJcghJU7iPsU5YV8p5302lSZTtcveuir+pjIlK/e+zs3xLm9JA3Z+jnMRtKqWY1vOVbVSP9ajLuIAhziheZ6ijgs00CTvER7xhGfj0kiMiXH3mWoUtGYf35bx8AGjKo/U</latexit>

0.99<latexit sha1_base64="KaG2xH3QYlMDkbGhBUN9tQkRosY=">AAACx3icjVHLSsNAFD2Nr1pfVZdugkVxFZJutLuCG91VsA+oRZJ02g7Ni8mkWIoLf8Ct/pn4B/oX3hlTUIvohCRnzr3nzNx7vSTgqbTt14KxtLyyulZcL21sbm3vlHf3WmmcCZ81/TiIRcdzUxbwiDUllwHrJIK5oRewtjc+V/H2hImUx9G1nCasF7rDiA+470pF2Vatdluu2Jatl7kInBxUkK9GXH7BDfqI4SNDCIYIknAAFyk9XTiwkRDXw4w4QYjrOMM9SqTNKItRhkvsmL5D2nVzNqK98ky12qdTAnoFKU0ckSamPEFYnWbqeKadFfub90x7qrtN6e/lXiGxEiNi/9LNM/+rU7VIDHCma+BUU6IZVZ2fu2S6K+rm5peqJDkkxCncp7gg7GvlvM+m1qS6dtVbV8ffdKZi1d7PczO8q1vSgJ2f41wErarl2JZzVa3Uj/NRF3GAQ5zQPE9RxwUaaJL3CI94wrNxacTGxLj7TDUKuWYf35bx8AGlio/V</latexit><latexit sha1_base64="KaG2xH3QYlMDkbGhBUN9tQkRosY=">AAACx3icjVHLSsNAFD2Nr1pfVZdugkVxFZJutLuCG91VsA+oRZJ02g7Ni8mkWIoLf8Ct/pn4B/oX3hlTUIvohCRnzr3nzNx7vSTgqbTt14KxtLyyulZcL21sbm3vlHf3WmmcCZ81/TiIRcdzUxbwiDUllwHrJIK5oRewtjc+V/H2hImUx9G1nCasF7rDiA+470pF2Vatdluu2Jatl7kInBxUkK9GXH7BDfqI4SNDCIYIknAAFyk9XTiwkRDXw4w4QYjrOMM9SqTNKItRhkvsmL5D2nVzNqK98ky12qdTAnoFKU0ckSamPEFYnWbqeKadFfub90x7qrtN6e/lXiGxEiNi/9LNM/+rU7VIDHCma+BUU6IZVZ2fu2S6K+rm5peqJDkkxCncp7gg7GvlvM+m1qS6dtVbV8ffdKZi1d7PczO8q1vSgJ2f41wErarl2JZzVa3Uj/NRF3GAQ5zQPE9RxwUaaJL3CI94wrNxacTGxLj7TDUKuWYf35bx8AGlio/V</latexit><latexit sha1_base64="KaG2xH3QYlMDkbGhBUN9tQkRosY=">AAACx3icjVHLSsNAFD2Nr1pfVZdugkVxFZJutLuCG91VsA+oRZJ02g7Ni8mkWIoLf8Ct/pn4B/oX3hlTUIvohCRnzr3nzNx7vSTgqbTt14KxtLyyulZcL21sbm3vlHf3WmmcCZ81/TiIRcdzUxbwiDUllwHrJIK5oRewtjc+V/H2hImUx9G1nCasF7rDiA+470pF2Vatdluu2Jatl7kInBxUkK9GXH7BDfqI4SNDCIYIknAAFyk9XTiwkRDXw4w4QYjrOMM9SqTNKItRhkvsmL5D2nVzNqK98ky12qdTAnoFKU0ckSamPEFYnWbqeKadFfub90x7qrtN6e/lXiGxEiNi/9LNM/+rU7VIDHCma+BUU6IZVZ2fu2S6K+rm5peqJDkkxCncp7gg7GvlvM+m1qS6dtVbV8ffdKZi1d7PczO8q1vSgJ2f41wErarl2JZzVa3Uj/NRF3GAQ5zQPE9RxwUaaJL3CI94wrNxacTGxLj7TDUKuWYf35bx8AGlio/V</latexit>

0.98<latexit sha1_base64="/Q/2gcuGkFsEa0X/rHha+eyWSwA=">AAACx3icjVHLSsNAFD2Nr1pfVZdugkVxFZJurLuCG91VsA+oRZJ02obmxWRSLMWFP+BW/0z8A/0L74xTUIvohCRnzr3nzNx7vTQMMmHbrwVjaXllda24XtrY3NreKe/utbIk5z5r+kmY8I7nZiwMYtYUgQhZJ+XMjbyQtb3xuYy3J4xnQRJfi2nKepE7jINB4LtCUrZ1VrstV2zLVstcBI4GFejVSMovuEEfCXzkiMAQQxAO4SKjpwsHNlLiepgRxwkFKs5wjxJpc8pilOESO6bvkHZdzca0l56ZUvt0SkgvJ6WJI9IklMcJy9NMFc+Vs2R/854pT3m3Kf097RURKzAi9i/dPPO/OlmLwAA1VUNANaWKkdX52iVXXZE3N79UJcghJU7iPsU5YV8p5302lSZTtcveuir+pjIlK/e+zs3xLm9JA3Z+jnMRtKqWY1vOVbVSP9ajLuIAhziheZ6ijgs00CTvER7xhGfj0kiMiXH3mWoUtGYf35bx8AGjKo/U</latexit><latexit sha1_base64="/Q/2gcuGkFsEa0X/rHha+eyWSwA=">AAACx3icjVHLSsNAFD2Nr1pfVZdugkVxFZJurLuCG91VsA+oRZJ02obmxWRSLMWFP+BW/0z8A/0L74xTUIvohCRnzr3nzNx7vTQMMmHbrwVjaXllda24XtrY3NreKe/utbIk5z5r+kmY8I7nZiwMYtYUgQhZJ+XMjbyQtb3xuYy3J4xnQRJfi2nKepE7jINB4LtCUrZ1VrstV2zLVstcBI4GFejVSMovuEEfCXzkiMAQQxAO4SKjpwsHNlLiepgRxwkFKs5wjxJpc8pilOESO6bvkHZdzca0l56ZUvt0SkgvJ6WJI9IklMcJy9NMFc+Vs2R/854pT3m3Kf097RURKzAi9i/dPPO/OlmLwAA1VUNANaWKkdX52iVXXZE3N79UJcghJU7iPsU5YV8p5302lSZTtcveuir+pjIlK/e+zs3xLm9JA3Z+jnMRtKqWY1vOVbVSP9ajLuIAhziheZ6ijgs00CTvER7xhGfj0kiMiXH3mWoUtGYf35bx8AGjKo/U</latexit><latexit sha1_base64="/Q/2gcuGkFsEa0X/rHha+eyWSwA=">AAACx3icjVHLSsNAFD2Nr1pfVZdugkVxFZJurLuCG91VsA+oRZJ02obmxWRSLMWFP+BW/0z8A/0L74xTUIvohCRnzr3nzNx7vTQMMmHbrwVjaXllda24XtrY3NreKe/utbIk5z5r+kmY8I7nZiwMYtYUgQhZJ+XMjbyQtb3xuYy3J4xnQRJfi2nKepE7jINB4LtCUrZ1VrstV2zLVstcBI4GFejVSMovuEEfCXzkiMAQQxAO4SKjpwsHNlLiepgRxwkFKs5wjxJpc8pilOESO6bvkHZdzca0l56ZUvt0SkgvJ6WJI9IklMcJy9NMFc+Vs2R/854pT3m3Kf097RURKzAi9i/dPPO/OlmLwAA1VUNANaWKkdX52iVXXZE3N79UJcghJU7iPsU5YV8p5302lSZTtcveuir+pjIlK/e+zs3xLm9JA3Z+jnMRtKqWY1vOVbVSP9ajLuIAhziheZ6ijgs00CTvER7xhGfj0kiMiXH3mWoUtGYf35bx8AGjKo/U</latexit>

0.45<latexit sha1_base64="HSGO+W6BrATAr14mbDZcAlTxCGI=">AAACx3icjVHLSsNAFD2Nr1pfVZdugkVxFZKi6LLgRncV7ANqkSSdtqF5MZkUS3HhD7jVPxP/QP/CO+MU1CI6IcmZc+85M/deLw2DTNj2a8FYWFxaXimultbWNza3yts7zSzJuc8afhImvO25GQuDmDVEIELWTjlzIy9kLW90LuOtMeNZkMTXYpKybuQO4qAf+K6QlG0dn9yWK7Zlq2XOA0eDCvSqJ+UX3KCHBD5yRGCIIQiHcJHR04EDGylxXUyJ44QCFWe4R4m0OWUxynCJHdF3QLuOZmPaS89MqX06JaSXk9LEAWkSyuOE5WmmiufKWbK/eU+Vp7zbhP6e9oqIFRgS+5dulvlfnaxFoI8zVUNANaWKkdX52iVXXZE3N79UJcghJU7iHsU5YV8pZ302lSZTtcveuir+pjIlK/e+zs3xLm9JA3Z+jnMeNKuWY1vOVbVSO9SjLmIP+ziieZ6ihgvU0SDvIR7xhGfj0kiMsXH3mWoUtGYX35bx8AGQJY/M</latexit><latexit sha1_base64="HSGO+W6BrATAr14mbDZcAlTxCGI=">AAACx3icjVHLSsNAFD2Nr1pfVZdugkVxFZKi6LLgRncV7ANqkSSdtqF5MZkUS3HhD7jVPxP/QP/CO+MU1CI6IcmZc+85M/deLw2DTNj2a8FYWFxaXimultbWNza3yts7zSzJuc8afhImvO25GQuDmDVEIELWTjlzIy9kLW90LuOtMeNZkMTXYpKybuQO4qAf+K6QlG0dn9yWK7Zlq2XOA0eDCvSqJ+UX3KCHBD5yRGCIIQiHcJHR04EDGylxXUyJ44QCFWe4R4m0OWUxynCJHdF3QLuOZmPaS89MqX06JaSXk9LEAWkSyuOE5WmmiufKWbK/eU+Vp7zbhP6e9oqIFRgS+5dulvlfnaxFoI8zVUNANaWKkdX52iVXXZE3N79UJcghJU7iHsU5YV8pZ302lSZTtcveuir+pjIlK/e+zs3xLm9JA3Z+jnMeNKuWY1vOVbVSO9SjLmIP+ziieZ6ihgvU0SDvIR7xhGfj0kiMsXH3mWoUtGYX35bx8AGQJY/M</latexit><latexit sha1_base64="HSGO+W6BrATAr14mbDZcAlTxCGI=">AAACx3icjVHLSsNAFD2Nr1pfVZdugkVxFZKi6LLgRncV7ANqkSSdtqF5MZkUS3HhD7jVPxP/QP/CO+MU1CI6IcmZc+85M/deLw2DTNj2a8FYWFxaXimultbWNza3yts7zSzJuc8afhImvO25GQuDmDVEIELWTjlzIy9kLW90LuOtMeNZkMTXYpKybuQO4qAf+K6QlG0dn9yWK7Zlq2XOA0eDCvSqJ+UX3KCHBD5yRGCIIQiHcJHR04EDGylxXUyJ44QCFWe4R4m0OWUxynCJHdF3QLuOZmPaS89MqX06JaSXk9LEAWkSyuOE5WmmiufKWbK/eU+Vp7zbhP6e9oqIFRgS+5dulvlfnaxFoI8zVUNANaWKkdX52iVXXZE3N79UJcghJU7iHsU5YV8pZ302lSZTtcveuir+pjIlK/e+zs3xLm9JA3Z+jnMeNKuWY1vOVbVSO9SjLmIP+ziieZ6ihgvU0SDvIR7xhGfj0kiMsXH3mWoUtGYX35bx8AGQJY/M</latexit>

0.40<latexit sha1_base64="LJd2lYMPC07mGlExvqTzNLFBgu8=">AAACx3icjVHLSsNAFD2Nr1pfVZdugkVxFZIi6LLgRncVbCvUIsl02g5Nk5BMiqW48Afc6p+Jf6B/4Z1xCmoRnZDkzLn3nJl7b5CEIpOu+1qwFhaXlleKq6W19Y3NrfL2TjOL85TxBovDOL0O/IyHIuINKWTIr5OU+6Mg5K1geKbirTFPMxFHV3KS8M7I70eiJ5gvFeU6x+5tueI6rl72PPAMqMCselx+wQ26iMGQYwSOCJJwCB8ZPW14cJEQ18GUuJSQ0HGOe5RIm1MWpwyf2CF9+7RrGzaivfLMtJrRKSG9KSltHJAmpryUsDrN1vFcOyv2N++p9lR3m9A/MF4jYiUGxP6lm2X+V6dqkejhVNcgqKZEM6o6Zlxy3RV1c/tLVZIcEuIU7lI8Jcy0ctZnW2syXbvqra/jbzpTsWrPTG6Od3VLGrD3c5zzoFl1PNfxLquV2qEZdRF72McRzfMENZyjjgZ5D/CIJzxbF1Zsja27z1SrYDS7+Lashw+ERY/H</latexit><latexit sha1_base64="LJd2lYMPC07mGlExvqTzNLFBgu8=">AAACx3icjVHLSsNAFD2Nr1pfVZdugkVxFZIi6LLgRncVbCvUIsl02g5Nk5BMiqW48Afc6p+Jf6B/4Z1xCmoRnZDkzLn3nJl7b5CEIpOu+1qwFhaXlleKq6W19Y3NrfL2TjOL85TxBovDOL0O/IyHIuINKWTIr5OU+6Mg5K1geKbirTFPMxFHV3KS8M7I70eiJ5gvFeU6x+5tueI6rl72PPAMqMCselx+wQ26iMGQYwSOCJJwCB8ZPW14cJEQ18GUuJSQ0HGOe5RIm1MWpwyf2CF9+7RrGzaivfLMtJrRKSG9KSltHJAmpryUsDrN1vFcOyv2N++p9lR3m9A/MF4jYiUGxP6lm2X+V6dqkejhVNcgqKZEM6o6Zlxy3RV1c/tLVZIcEuIU7lI8Jcy0ctZnW2syXbvqra/jbzpTsWrPTG6Od3VLGrD3c5zzoFl1PNfxLquV2qEZdRF72McRzfMENZyjjgZ5D/CIJzxbF1Zsja27z1SrYDS7+Lashw+ERY/H</latexit><latexit sha1_base64="LJd2lYMPC07mGlExvqTzNLFBgu8=">AAACx3icjVHLSsNAFD2Nr1pfVZdugkVxFZIi6LLgRncVbCvUIsl02g5Nk5BMiqW48Afc6p+Jf6B/4Z1xCmoRnZDkzLn3nJl7b5CEIpOu+1qwFhaXlleKq6W19Y3NrfL2TjOL85TxBovDOL0O/IyHIuINKWTIr5OU+6Mg5K1geKbirTFPMxFHV3KS8M7I70eiJ5gvFeU6x+5tueI6rl72PPAMqMCselx+wQ26iMGQYwSOCJJwCB8ZPW14cJEQ18GUuJSQ0HGOe5RIm1MWpwyf2CF9+7RrGzaivfLMtJrRKSG9KSltHJAmpryUsDrN1vFcOyv2N++p9lR3m9A/MF4jYiUGxP6lm2X+V6dqkejhVNcgqKZEM6o6Zlxy3RV1c/tLVZIcEuIU7lI8Jcy0ctZnW2syXbvqra/jbzpTsWrPTG6Od3VLGrD3c5zzoFl1PNfxLquV2qEZdRF72McRzfMENZyjjgZ5D/CIJzxbF1Zsja27z1SrYDS7+Lashw+ERY/H</latexit>

0.95<latexit sha1_base64="6KJhtxn3fRNTMwRFKrsyEWzGSM8=">AAACx3icjVHLSsNAFD2Nr1pfVZdugkVxFZKCqLuCG91VsA+oRZJ02obmxWRSLMWFP+BW/0z8A/0L74xTUIvohCRnzr3nzNx7vTQMMmHbrwVjYXFpeaW4Wlpb39jcKm/vNLMk5z5r+EmY8LbnZiwMYtYQgQhZO+XMjbyQtbzRuYy3xoxnQRJfi0nKupE7iIN+4LtCUrZ1dnxbrtiWrZY5DxwNKtCrnpRfcIMeEvjIEYEhhiAcwkVGTwcObKTEdTEljhMKVJzhHiXS5pTFKMMldkTfAe06mo1pLz0zpfbplJBeTkoTB6RJKI8TlqeZKp4rZ8n+5j1VnvJuE/p72isiVmBI7F+6WeZ/dbIWgT5OVQ0B1ZQqRlbna5dcdUXe3PxSlSCHlDiJexTnhH2lnPXZVJpM1S5766r4m8qUrNz7OjfHu7wlDdj5Oc550Kxajm05V9VK7VCPuog97OOI5nmCGi5QR4O8h3jEE56NSyMxxsbdZ6pR0JpdfFvGwwecCo/R</latexit><latexit sha1_base64="6KJhtxn3fRNTMwRFKrsyEWzGSM8=">AAACx3icjVHLSsNAFD2Nr1pfVZdugkVxFZKCqLuCG91VsA+oRZJ02obmxWRSLMWFP+BW/0z8A/0L74xTUIvohCRnzr3nzNx7vTQMMmHbrwVjYXFpeaW4Wlpb39jcKm/vNLMk5z5r+EmY8LbnZiwMYtYQgQhZO+XMjbyQtbzRuYy3xoxnQRJfi0nKupE7iIN+4LtCUrZ1dnxbrtiWrZY5DxwNKtCrnpRfcIMeEvjIEYEhhiAcwkVGTwcObKTEdTEljhMKVJzhHiXS5pTFKMMldkTfAe06mo1pLz0zpfbplJBeTkoTB6RJKI8TlqeZKp4rZ8n+5j1VnvJuE/p72isiVmBI7F+6WeZ/dbIWgT5OVQ0B1ZQqRlbna5dcdUXe3PxSlSCHlDiJexTnhH2lnPXZVJpM1S5766r4m8qUrNz7OjfHu7wlDdj5Oc550Kxajm05V9VK7VCPuog97OOI5nmCGi5QR4O8h3jEE56NSyMxxsbdZ6pR0JpdfFvGwwecCo/R</latexit><latexit sha1_base64="6KJhtxn3fRNTMwRFKrsyEWzGSM8=">AAACx3icjVHLSsNAFD2Nr1pfVZdugkVxFZKCqLuCG91VsA+oRZJ02obmxWRSLMWFP+BW/0z8A/0L74xTUIvohCRnzr3nzNx7vTQMMmHbrwVjYXFpeaW4Wlpb39jcKm/vNLMk5z5r+EmY8LbnZiwMYtYQgQhZO+XMjbyQtbzRuYy3xoxnQRJfi0nKupE7iIN+4LtCUrZ1dnxbrtiWrZY5DxwNKtCrnpRfcIMeEvjIEYEhhiAcwkVGTwcObKTEdTEljhMKVJzhHiXS5pTFKMMldkTfAe06mo1pLz0zpfbplJBeTkoTB6RJKI8TlqeZKp4rZ8n+5j1VnvJuE/p72isiVmBI7F+6WeZ/dbIWgT5OVQ0B1ZQqRlbna5dcdUXe3PxSlSCHlDiJexTnhH2lnPXZVJpM1S5766r4m8qUrNz7OjfHu7wlDdj5Oc550Kxajm05V9VK7VCPuog97OOI5nmCGi5QR4O8h3jEE56NSyMxxsbdZ6pR0JpdfFvGwwecCo/R</latexit>

(a) Consistency: CoNLL<latexit sha1_base64="PdUTpPY7PAx2/aNvlaImZ16F/eg=">AAAC23icjVHLSsNAFD2Nr1pfVcGNm2BR6qYk3SiuCt24KFLBPqCWkkynNZgXyUQo1ZU7cesPuNX/Ef9A/8I7YwpqEZ2Q5Nxz7zkzd64duk4sDOM1o83Mzs0vZBdzS8srq2v59Y1mHCQR4w0WuEHUtq2Yu47PG8IRLm+HEbc82+Ut+7Iq860rHsVO4J+JUci7njX0nYHDLEFUL79VtPb1auDHtBX32eiIgpNarZcvGCVDLX0amCkoIF31IP+Cc/QRgCGBBw4fgrALCzE9HZgwEBLXxZi4iJCj8hw3yJE2oSpOFRaxl/QdUtRJWZ9i6RkrNaNdXHojUurYJU1AdRFhuZuu8olyluxv3mPlKc82or+dennEClwQ+5duUvlfnexFYIBD1YNDPYWKkd2x1CVRtyJPrn/pSpBDSJzEfcpHhJlSTu5ZV5pY9S7v1lL5N1UpWRmztDbBuzwlDdj8Oc5p0CyXTKNknpYLlb101FlsYwdFmucBKjhGHQ3yvsYjnvCsdbVb7U67/yzVMqlmE9+W9vABq4GXQA==</latexit><latexit sha1_base64="PdUTpPY7PAx2/aNvlaImZ16F/eg=">AAAC23icjVHLSsNAFD2Nr1pfVcGNm2BR6qYk3SiuCt24KFLBPqCWkkynNZgXyUQo1ZU7cesPuNX/Ef9A/8I7YwpqEZ2Q5Nxz7zkzd64duk4sDOM1o83Mzs0vZBdzS8srq2v59Y1mHCQR4w0WuEHUtq2Yu47PG8IRLm+HEbc82+Ut+7Iq860rHsVO4J+JUci7njX0nYHDLEFUL79VtPb1auDHtBX32eiIgpNarZcvGCVDLX0amCkoIF31IP+Cc/QRgCGBBw4fgrALCzE9HZgwEBLXxZi4iJCj8hw3yJE2oSpOFRaxl/QdUtRJWZ9i6RkrNaNdXHojUurYJU1AdRFhuZuu8olyluxv3mPlKc82or+dennEClwQ+5duUvlfnexFYIBD1YNDPYWKkd2x1CVRtyJPrn/pSpBDSJzEfcpHhJlSTu5ZV5pY9S7v1lL5N1UpWRmztDbBuzwlDdj8Oc5p0CyXTKNknpYLlb101FlsYwdFmucBKjhGHQ3yvsYjnvCsdbVb7U67/yzVMqlmE9+W9vABq4GXQA==</latexit><latexit sha1_base64="PdUTpPY7PAx2/aNvlaImZ16F/eg=">AAAC23icjVHLSsNAFD2Nr1pfVcGNm2BR6qYk3SiuCt24KFLBPqCWkkynNZgXyUQo1ZU7cesPuNX/Ef9A/8I7YwpqEZ2Q5Nxz7zkzd64duk4sDOM1o83Mzs0vZBdzS8srq2v59Y1mHCQR4w0WuEHUtq2Yu47PG8IRLm+HEbc82+Ut+7Iq860rHsVO4J+JUci7njX0nYHDLEFUL79VtPb1auDHtBX32eiIgpNarZcvGCVDLX0amCkoIF31IP+Cc/QRgCGBBw4fgrALCzE9HZgwEBLXxZi4iJCj8hw3yJE2oSpOFRaxl/QdUtRJWZ9i6RkrNaNdXHojUurYJU1AdRFhuZuu8olyluxv3mPlKc82or+dennEClwQ+5duUvlfnexFYIBD1YNDPYWKkd2x1CVRtyJPrn/pSpBDSJzEfcpHhJlSTu5ZV5pY9S7v1lL5N1UpWRmztDbBuzwlDdj8Oc5p0CyXTKNknpYLlb101FlsYwdFmucBKjhGHQ3yvsYjnvCsdbVb7U67/yzVMqlmE9+W9vABq4GXQA==</latexit>

(b) Error: CoNLL<latexit sha1_base64="NdJM1bu8uNRW0iwySXlRHM1RIbg=">AAAC1XicjVHLSsQwFD3W97vq0k1xUHQztLNRXAmD4EJEwXGEUaTNZDTYaUqaCoPMTtz6A271l8Q/0L/wJkbwgWhK25Nz7znJvTfJU1HoMHwe8AaHhkdGx8YnJqemZ2b9ufmjQpaK8QaTqVTHSVzwVGS8oYVO+XGueNxNUt5MLusm3rziqhAyO9S9nJ924/NMdASLNVFnvr+arAXbSkm1GdTl3u7umV8Jq6FdwU8QOVCBW/vSf8IJ2pBgKNEFRwZNOEWMgp4WIoTIiTvFNXGKkLBxjj4mSFtSFqeMmNhL+p7TruXYjPbGs7BqRqek9CpSBlgmjaQ8RdicFth4aZ0N+5v3tfU0d+vRP3FeXWI1Loj9S/eR+V+dqUWjgw1bg6CacsuY6phzKW1XzM2DT1VpcsiJM7hNcUWYWeVHnwOrKWztprexjb/YTMOaPXO5JV7NLWnA0fdx/gRHtWoUVqODWmVrxY16DItYwirNcx1b2ME+GuR9hXs84NFren3vxrt9T/UGnGYBX5Z39wadhpR9</latexit><latexit sha1_base64="NdJM1bu8uNRW0iwySXlRHM1RIbg=">AAAC1XicjVHLSsQwFD3W97vq0k1xUHQztLNRXAmD4EJEwXGEUaTNZDTYaUqaCoPMTtz6A271l8Q/0L/wJkbwgWhK25Nz7znJvTfJU1HoMHwe8AaHhkdGx8YnJqemZ2b9ufmjQpaK8QaTqVTHSVzwVGS8oYVO+XGueNxNUt5MLusm3rziqhAyO9S9nJ924/NMdASLNVFnvr+arAXbSkm1GdTl3u7umV8Jq6FdwU8QOVCBW/vSf8IJ2pBgKNEFRwZNOEWMgp4WIoTIiTvFNXGKkLBxjj4mSFtSFqeMmNhL+p7TruXYjPbGs7BqRqek9CpSBlgmjaQ8RdicFth4aZ0N+5v3tfU0d+vRP3FeXWI1Loj9S/eR+V+dqUWjgw1bg6CacsuY6phzKW1XzM2DT1VpcsiJM7hNcUWYWeVHnwOrKWztprexjb/YTMOaPXO5JV7NLWnA0fdx/gRHtWoUVqODWmVrxY16DItYwirNcx1b2ME+GuR9hXs84NFren3vxrt9T/UGnGYBX5Z39wadhpR9</latexit><latexit sha1_base64="NdJM1bu8uNRW0iwySXlRHM1RIbg=">AAAC1XicjVHLSsQwFD3W97vq0k1xUHQztLNRXAmD4EJEwXGEUaTNZDTYaUqaCoPMTtz6A271l8Q/0L/wJkbwgWhK25Nz7znJvTfJU1HoMHwe8AaHhkdGx8YnJqemZ2b9ufmjQpaK8QaTqVTHSVzwVGS8oYVO+XGueNxNUt5MLusm3rziqhAyO9S9nJ924/NMdASLNVFnvr+arAXbSkm1GdTl3u7umV8Jq6FdwU8QOVCBW/vSf8IJ2pBgKNEFRwZNOEWMgp4WIoTIiTvFNXGKkLBxjj4mSFtSFqeMmNhL+p7TruXYjPbGs7BqRqek9CpSBlgmjaQ8RdicFth4aZ0N+5v3tfU0d+vRP3FeXWI1Loj9S/eR+V+dqUWjgw1bg6CacsuY6phzKW1XzM2DT1VpcsiJM7hNcUWYWeVHnwOrKWztprexjb/YTMOaPXO5JV7NLWnA0fdx/gRHtWoUVqODWmVrxY16DItYwirNcx1b2ME+GuR9hXs84NFren3vxrt9T/UGnGYBX5Z39wadhpR9</latexit>

(c) Peason coe�cient<latexit sha1_base64="JzkQ7t4lUSt1Yp1L8koFt+OvmI0=">AAAC23icjVHLSsQwFD1T3+9RwY2b4qCMm6F1o0vBjcsRHBV0GNqY0TCdpiSpIOrKnbj1B9zq/4h/oH/hTYzgA9GUtifn3nOSe29aZEKbKHquBAODQ8Mjo2PjE5NT0zPV2bk9LUvFeIvJTKqDNNE8EzlvGWEyflAonvTTjO+nvS0b3z/jSguZ75rzgrf7yUkuuoIlhqhOdaHOVsMmT7TMQyZ5lyKC56ZTrUWNyK3wJ4g9qMGvpqw+4QjHkGAo0QdHDkM4QwJNzyFiRCiIa+OCOEVIuDjHFcZJW1IWp4yE2B59T2h36Nmc9tZTOzWjUzJ6FSlDLJNGUp4ibE8LXbx0zpb9zfvCedq7ndM/9V59Yg1Oif1L95H5X52txaCLDVeDoJoKx9jqmHcpXVfszcNPVRlyKIiz+JjiijBzyo8+h06jXe22t4mLv7hMy9o987klXu0tacDx93H+BHtrjThqxDtrtc0VP+pRLGIJdZrnOjaxjSZa5H2JezzgMWgH18FNcPueGlS8Zh5fVnD3BuF7l8M=</latexit><latexit sha1_base64="JzkQ7t4lUSt1Yp1L8koFt+OvmI0=">AAAC23icjVHLSsQwFD1T3+9RwY2b4qCMm6F1o0vBjcsRHBV0GNqY0TCdpiSpIOrKnbj1B9zq/4h/oH/hTYzgA9GUtifn3nOSe29aZEKbKHquBAODQ8Mjo2PjE5NT0zPV2bk9LUvFeIvJTKqDNNE8EzlvGWEyflAonvTTjO+nvS0b3z/jSguZ75rzgrf7yUkuuoIlhqhOdaHOVsMmT7TMQyZ5lyKC56ZTrUWNyK3wJ4g9qMGvpqw+4QjHkGAo0QdHDkM4QwJNzyFiRCiIa+OCOEVIuDjHFcZJW1IWp4yE2B59T2h36Nmc9tZTOzWjUzJ6FSlDLJNGUp4ibE8LXbx0zpb9zfvCedq7ndM/9V59Yg1Oif1L95H5X52txaCLDVeDoJoKx9jqmHcpXVfszcNPVRlyKIiz+JjiijBzyo8+h06jXe22t4mLv7hMy9o987klXu0tacDx93H+BHtrjThqxDtrtc0VP+pRLGIJdZrnOjaxjSZa5H2JezzgMWgH18FNcPueGlS8Zh5fVnD3BuF7l8M=</latexit><latexit sha1_base64="JzkQ7t4lUSt1Yp1L8koFt+OvmI0=">AAAC23icjVHLSsQwFD1T3+9RwY2b4qCMm6F1o0vBjcsRHBV0GNqY0TCdpiSpIOrKnbj1B9zq/4h/oH/hTYzgA9GUtifn3nOSe29aZEKbKHquBAODQ8Mjo2PjE5NT0zPV2bk9LUvFeIvJTKqDNNE8EzlvGWEyflAonvTTjO+nvS0b3z/jSguZ75rzgrf7yUkuuoIlhqhOdaHOVsMmT7TMQyZ5lyKC56ZTrUWNyK3wJ4g9qMGvpqw+4QjHkGAo0QdHDkM4QwJNzyFiRCiIa+OCOEVIuDjHFcZJW1IWp4yE2B59T2h36Nmc9tZTOzWjUzJ6FSlDLJNGUp4ibE8LXbx0zpb9zfvCedq7ndM/9V59Yg1Oif1L95H5X52txaCLDVeDoJoKx9jqmHcpXVfszcNPVRlyKIiz+JjiijBzyo8+h06jXe22t4mLv7hMy9o987klXu0tacDx93H+BHtrjThqxDtrtc0VP+pRLGIJdZrnOjaxjSZa5H2JezzgMWgH18FNcPueGlS8Zh5fVnD3BuF7l8M=</latexit>

Figure 3: The alignment between consistency Cs and theerror ratio. Sub-figure (a) is the category-membership depen-dence of consistency Cs. Sub-figure (b) is the cross-categoryerror ratios. Sub-figure (c) denotes the Pearson coefficientsbetween consistency values and error values. The change incolor from blue to red represents the change in value fromnegative to positive.

CoNLL WNUT ON-BN

Models F1 org-

loc

loc-

org

mis

c-o

F1 fac.

-loc

spo.

-loc

mus

.-per

F1 ord.

-dat

e

per-

org

gpe-

loc

CcnnWglovecnnMlp 87.6 43.2 57.3 37.5 31.0 23.3 30.4 41.1 83.5 44.5 4.80 40.5CcnnWglovelstmMlp 88.4 43.3 58.9 32.9 37.8 31.1 34.6 43.8 84.1 37.5 9.09 29.7CcnnWglovecnnCrf 89.1 50.6 64.2 29.2 34.2 34.0 34.4 37.8 85.2 27.3 30.0 51.2CnoneWglovelstmCrf 89.1 33.6 37.5 59.1 37.3 32.2 26.4 37.3 86.2 44.4 11.1 40.5CcnnWglovelstmCrf 90.3 39.9 55.1 33.7 39.2 53.7 26.9 40.8 88.6 25.0 47.2 26.5CelmWnonelstmCrf 91.8 41.0 56.4 40.5 43.7 60.0 51.6 43.5 89.3 50.0 50.0 40.7CelmWglovelstmCrf 92.3 48.8 54.4 35.1 44.0 51.0 43.4 46.8 90.0 28.6 33.3 33.3

Table 7: Error ratios for hard cases (typical error types) withvarious NER systems. The detail model architecture is shownin Table 2.

Exp-VI: Exploring the Errors of Hard Cases

As shown in Fig. 3, the two sub-figure (a-b) illustrate theconsistency and error matrices of the NER model trainedon CoNLL. In the error matrix, the off-diagonal elementsof Erp,q (p 6= q) is computed as the number of entity be-longing to category p predicted as category q, divided bythe total number of prediction errors of the category p. Theon-diagonal elements of Erp,q (p = q) is the accuracy ofthe category p. Notably, we find that the consistency val-ues correlate closely with error ratios based on the Pearsoncoefficient in Fig. 3-(c). Taking the marked positions in sub-figures (a-b) for example, We find that if two categories havelow consistency, the model tends to have difficulty distin-guishing them, and it is easy to mis-predict each other.This observation demonstrates that relationships between en-tity categories influence model’s generalization ability. We

Page 8: Rethinking Generalization of Neural Models: A Named Entity …pfliu.com/InterpretNER/rethink-ner.pdf · 2020-01-10 · Rethinking Generalization of Neural Models: A Named Entity Recognition

additionally find the prospects for further gains from archi-tecture design and knowledge pre-training seem quite limitedbased Tab.7. To address these issues, more contextual knowl-edge or prior linguistic knowledge is needed.

5 AcknowledgmentsThanks Jie Fu for useful comments, and thank the anony-mous reviewers for their helpful comments. This work waspartially funded by China National Key RD Program (No.2018YFB1005104, 2018YFC0831105), National NaturalScience Foundation of China (No. 61976056, 61532011,61751201), Science and Technology Commission of Shang-hai Municipality Grant (No.18DZ1201000, 16JC1420401,17JC1420200), Shanghai Municipal Science and TechnologyMajor Project (No.2018SHZDZX01), and ZJ Lab.

References[Akbik, Bergmann, and Vollgraf ] Akbik, A.; Bergmann, T.;and Vollgraf, R. Pooled contextualized embeddings fornamed entity recognition.

[Akbik, Blythe, and Vollgraf 2018] Akbik, A.; Blythe, D.;and Vollgraf, R. 2018. Contextual string embeddings forsequence labeling. In Proceedings of the 27th COLING,1638–1649.

[Arpit et al. 2017] Arpit, D.; Jastrzebski, S.; Ballas, N.;Krueger, D.; Bengio, E.; Kanwal, M. S.; Maharaj, T.; Fischer,A.; Courville, A.; Bengio, Y.; et al. 2017. A closer look atmemorization in deep networks. In Proceedings of the 34thICML-Volume 70, 233–242. JMLR. org.

[Bahdanau, Cho, and Bengio 2014] Bahdanau, D.; Cho, K.;and Bengio, Y. 2014. Neural machine translation by jointlylearning to align and translate. ArXiv e-prints.

[Baluja and Fischer 2017] Baluja, S., and Fischer, I. 2017.Adversarial transformation networks: Learning to generateadversarial examples. arXiv preprint arXiv:1703.09387.

[Borthwick et al. 1998] Borthwick, A.; Sterling, J.; Agichtein,E.; and Grishman, R. 1998. Exploiting diverse knowledgesources via maximum entropy in named entity recognition.In Sixth Workshop on Very Large Corpora.

[Cao et al. 2018] Cao, P.; Chen, Y.; Liu, K.; Zhao, J.; and Liu,S. 2018. Adversarial transfer learning for chinese namedentity recognition with self-attention mechanism. In Proceed-ings of the 2018 Conference on EMNLP, 182–192.

[Chen and Moschitti 2019] Chen, L., and Moschitti, A. 2019.Transfer learning for sequence labeling using source modeland target data.

[Chiu and Nichols 2016] Chiu, J. P., and Nichols, E. 2016.Named entity recognition with bidirectional lstm-cnns. TACL4:357–370.

[Collobert et al. 2011] Collobert, R.; Weston, J.; Bottou, L.;Karlen, M.; Kavukcuoglu, K.; and Kuksa, P. 2011. Natu-ral language processing (almost) from scratch. Journal ofMachine Learning Research 12(Aug):2493–2537.

[Devlin et al. 2018] Devlin, J.; Chang, M.-W.; Lee, K.; andToutanova, K. 2018. Bert: Pre-training of deep bidirectional

transformers for language understanding. arXiv preprintarXiv:1810.04805.

[Fort, Nowak, and Narayanan 2019] Fort, S.; Nowak, P. K.;and Narayanan, S. 2019. Stiffness: A new perspec-tive on generalization in neural networks. arXiv preprintarXiv:1901.09491.

[Grishman and Sundheim 1996] Grishman, R., and Sund-heim, B. 1996. Message understanding conference-6: Abrief history. In COLING 1996 Volume 1: The 16th Interna-tional Conference on Computational Linguistics, volume 1.

[Huang, Xu, and Yu 2015] Huang, Z.; Xu, W.; and Yu, K.2015. Bidirectional lstm-crf models for sequence tagging.arXiv preprint arXiv:1508.01991.

[Jia and Liang 2017] Jia, R., and Liang, P. 2017. Adversar-ial examples for evaluating reading comprehension systems.arXiv preprint arXiv:1707.07328.

[Lin and Lu 2018] Lin, B. Y., and Lu, W. 2018. Neuraladaptation layers for cross-domain named entity recognition.arXiv preprint arXiv:1810.06368.

[Ma and Hovy 2016] Ma, X., and Hovy, E. 2016. End-to-end sequence labeling via bi-directional lstm-cnns-crf. InProceedings of the 54th Annual Meeting of ACL, volume 1,1064–1074.

[Ma, Ganchev, and Weiss 2018] Ma, J.; Ganchev, K.; andWeiss, D. 2018. State-of-the-art chinese word segmenta-tion with bi-lstms. In Proceedings of the 2018 Conferenceon EMNLP, 4902–4908.

[Manning 2011] Manning, C. D. 2011. Part-of-speech tag-ging from 97% to 100%: is it time for some linguistics? InInternational conference on intelligent text processing andcomputational linguistics, 171–189. Springer.

[Mikolov et al. 2013] Mikolov, T.; Chen, K.; Corrado, G.; andDean, J. 2013. Efficient estimation of word representationsin vector space. arXiv preprint arXiv:1301.3781.

[Peters et al. 2018] Peters, M.; Neumann, M.; Iyyer, M.;Gardner, M.; Clark, C.; Lee, K.; and Zettlemoyer, L. 2018.Deep contextualized word representations. In Proceedings ofthe 2018 Conference of NAACL, volume 1, 2227–2237.

[Rajpurkar, Jia, and Liang 2018] Rajpurkar, P.; Jia, R.; andLiang, P. 2018. Know what you don’t know: Unanswerablequestions for squad. arXiv preprint arXiv:1806.03822.

[Reimers and Gurevych 2017] Reimers, N., and Gurevych, I.2017. Optimal hyperparameters for deep lstm-networks forsequence labeling tasks. arXiv preprint arXiv:1707.06799.

[Sang and De Meulder 2003] Sang, E. F., and De Meulder,F. 2003. Introduction to the conll-2003 shared task:Language-independent named entity recognition. arXivpreprint cs/0306050.

[Schmidt et al. 2018] Schmidt, L.; Santurkar, S.; Tsipras, D.;Talwar, K.; and Madry, A. 2018. Adversarially robust general-ization requires more data. In Advances in NIPS, 5014–5026.

[Weischedel et al. 2013] Weischedel, R.; Palmer, M.; Marcus,M.; Hovy, E.; Pradhan, S.; Ramshaw, L.; Xue, N.; Taylor, A.;Kaufman, J.; Franchini, M.; et al. 2013. Ontonotes release5.0 ldc2013t19. LDC, Philadelphia, PA.

Page 9: Rethinking Generalization of Neural Models: A Named Entity …pfliu.com/InterpretNER/rethink-ner.pdf · 2020-01-10 · Rethinking Generalization of Neural Models: A Named Entity Recognition

[Yang, Liang, and Zhang 2018] Yang, J.; Liang, S.; andZhang, Y. 2018. Design challenges and misconceptions inneural sequence labeling. arXiv preprint arXiv:1806.04470.

[Zhang et al. 2016] Zhang, C.; Bengio, S.; Hardt, M.; Recht,B.; and Vinyals, O. 2016. Understanding deep learn-ing requires rethinking generalization. arXiv preprintarXiv:1611.03530.

[Zhong et al. 2019] Zhong, M.; Wang, D.; Liu, P.; Qiu, X.;and Huang, X. 2019. A closer look at data bias in neuralextractive summarization models. In Proceedings of the 2ndWorkshop on New Frontiers in Summarization. Hong Kong,China: Association for Computational Linguistics.