ljvmiranda921
commited on
Commit
•
71b12a7
1
Parent(s):
963089a
Update spaCy pipeline
Browse files- .gitattributes +5 -0
- README.md +106 -0
- config.cfg +244 -0
- meta.json +1436 -0
- morphologizer/cfg +881 -0
- morphologizer/model +0 -0
- parser/cfg +13 -0
- parser/model +3 -0
- parser/moves +1 -0
- tagger/cfg +640 -0
- tagger/model +0 -0
- tl_hash_transition-any-py3-none-any.whl +3 -0
- tok2vec/cfg +3 -0
- tok2vec/model +3 -0
- tokenizer +3 -0
- trainable_lemmatizer/cfg +1639 -0
- trainable_lemmatizer/model +3 -0
- trainable_lemmatizer/trees +0 -0
- vocab/key2row +1 -0
- vocab/lookups.bin +3 -0
- vocab/strings.json +0 -0
- vocab/vectors +3 -0
- vocab/vectors.cfg +10 -0
.gitattributes
CHANGED
@@ -33,3 +33,8 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
parser/model filter=lfs diff=lfs merge=lfs -text
|
37 |
+
tl_hash_transition-any-py3-none-any.whl filter=lfs diff=lfs merge=lfs -text
|
38 |
+
tok2vec/model filter=lfs diff=lfs merge=lfs -text
|
39 |
+
trainable_lemmatizer/model filter=lfs diff=lfs merge=lfs -text
|
40 |
+
vocab/vectors filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
@@ -0,0 +1,106 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
tags:
|
3 |
+
- spacy
|
4 |
+
- token-classification
|
5 |
+
language:
|
6 |
+
- tl
|
7 |
+
license: mit
|
8 |
+
model-index:
|
9 |
+
- name: tl_hash_transition
|
10 |
+
results:
|
11 |
+
- task:
|
12 |
+
name: TAG
|
13 |
+
type: token-classification
|
14 |
+
metrics:
|
15 |
+
- name: TAG (XPOS) Accuracy
|
16 |
+
type: accuracy
|
17 |
+
value: 0.9104595639
|
18 |
+
- task:
|
19 |
+
name: POS
|
20 |
+
type: token-classification
|
21 |
+
metrics:
|
22 |
+
- name: POS (UPOS) Accuracy
|
23 |
+
type: accuracy
|
24 |
+
value: 0.9518314405
|
25 |
+
- task:
|
26 |
+
name: MORPH
|
27 |
+
type: token-classification
|
28 |
+
metrics:
|
29 |
+
- name: Morph (UFeats) Accuracy
|
30 |
+
type: accuracy
|
31 |
+
value: 0.9545440697
|
32 |
+
- task:
|
33 |
+
name: LEMMA
|
34 |
+
type: token-classification
|
35 |
+
metrics:
|
36 |
+
- name: Lemma Accuracy
|
37 |
+
type: accuracy
|
38 |
+
value: 0.898907308
|
39 |
+
- task:
|
40 |
+
name: UNLABELED_DEPENDENCIES
|
41 |
+
type: token-classification
|
42 |
+
metrics:
|
43 |
+
- name: Unlabeled Attachment Score (UAS)
|
44 |
+
type: f_score
|
45 |
+
value: 0.839771627
|
46 |
+
- task:
|
47 |
+
name: LABELED_DEPENDENCIES
|
48 |
+
type: token-classification
|
49 |
+
metrics:
|
50 |
+
- name: Labeled Attachment Score (LAS)
|
51 |
+
type: f_score
|
52 |
+
value: 0.7760871373
|
53 |
+
- task:
|
54 |
+
name: SENTS
|
55 |
+
type: token-classification
|
56 |
+
metrics:
|
57 |
+
- name: Sentences F-Score
|
58 |
+
type: f_score
|
59 |
+
value: 0.9977571291
|
60 |
+
---
|
61 |
+
Parsers for UD-NewsCrawl
|
62 |
+
|
63 |
+
| Feature | Description |
|
64 |
+
| --- | --- |
|
65 |
+
| **Name** | `tl_hash_transition` |
|
66 |
+
| **Version** | `0.0.0` |
|
67 |
+
| **spaCy** | `>=3.8.0,<3.9.0` |
|
68 |
+
| **Default Pipeline** | `tok2vec`, `trainable_lemmatizer`, `morphologizer`, `tagger`, `parser` |
|
69 |
+
| **Components** | `tok2vec`, `trainable_lemmatizer`, `morphologizer`, `tagger`, `parser` |
|
70 |
+
| **Vectors** | -1 keys, 200000 unique vectors (200 dimensions) |
|
71 |
+
| **Sources** | [UD_Tagalog-NewsCrawl](https://huggingface.co/datasets/UD-Filipino/UD_Tagalog-NewsCrawl) (Angelina A. Aquino and Lester James V. Miranda and Elsie Marie T. Or) |
|
72 |
+
| **License** | `MIT` |
|
73 |
+
| **Author** | [Lester James V. Miranda](https://ljvmiranda921.github.io) |
|
74 |
+
|
75 |
+
### Label Scheme
|
76 |
+
|
77 |
+
<details>
|
78 |
+
|
79 |
+
<summary>View label scheme (1103 labels for 3 components)</summary>
|
80 |
+
|
81 |
+
| Component | Labels |
|
82 |
+
| --- | --- |
|
83 |
+
| **`morphologizer`** | `POS=PART`, `POS=PUNCT`, `POS=ADV\|Polarity=Neg`, `POS=PART\|PartType=Int`, `Case=Nom\|Number=Sing\|POS=PRON\|Person=3\|PronType=Prs`, `POS=ADV`, `POS=ADJ`, `Case=Nom\|POS=DET`, `POS=NOUN`, `Case=Gen\|Number=Plur\|POS=PRON\|Person=3\|PronType=Prs`, `Case=Nom\|Number=Sing\|POS=PRON\|Person=1\|PronType=Prs`, `Aspect=Imp\|Mood=Ind\|POS=VERB\|Voice=Pass`, `POS=PROPN`, `POS=VERB`, `POS=NUM`, `POS=CCONJ`, `Case=Nom\|Number=Plur\|POS=PRON\|Person=3\|PronType=Prs`, `Case=Gen\|POS=ADP`, `Case=Nom\|Number=Sing\|POS=PRON\|Person=2\|PronType=Prs`, `Case=Loc\|POS=ADP`, `Case=Dat\|Number=Sing\|POS=PRON\|Person=2\|PronType=Prs`, `Case=Gen\|Clusivity=Ex\|Number=Plur\|POS=PRON\|Person=1\|PronType=Prs`, `POS=SCONJ`, `POS=ADV\|PronType=Int`, `Case=Nom\|Clusivity=Ex\|Number=Plur\|POS=PRON\|Person=1\|PronType=Prs`, `Aspect=Perf\|Mood=Ind\|POS=VERB\|Voice=Act`, `POS=PART\|Polite=Form`, `Aspect=Perf\|Mood=Pot\|POS=VERB\|Voice=Lfoc`, `Case=Gen\|Number=Plur\|POS=PRON\|Person=2\|PronType=Prs`, `Case=Gen\|Number=Sing\|POS=PRON\|Person=1\|PronType=Prs`, `POS=VERB\|Polarity=Neg`, `Aspect=Perf\|Mood=Ind\|POS=VERB\|Voice=Pass`, `POS=DET`, `NumType=Card\|POS=NUM`, `Case=Dat\|Number=Sing\|POS=ADP`, `Aspect=Imp\|Mood=Pot\|POS=VERB\|Voice=Act`, `Number=Plur\|POS=DET`, `POS=PRON\|PronType=Int`, `Aspect=Imp\|Mood=Pot\|POS=VERB\|Voice=Pass`, `Case=Nom\|Number=Plur\|POS=PRON\|Person=2\|PronType=Prs`, `Aspect=Imp\|Mood=Pot\|POS=VERB\|Voice=Lfoc`, `Case=Loc\|Deixis=Prox\|POS=PRON\|PronType=Dem`, `Case=Nom\|Number=Sing\|POS=DET`, `Aspect=Imp\|Mood=Ind\|POS=VERB\|Voice=Act`, `Case=Dat\|Clusivity=In\|Number=Plur\|POS=PRON\|Person=1\|PronType=Prs`, `Case=Gen\|Number=Sing\|POS=ADP`, `Aspect=Perf\|Mood=Pot\|POS=VERB\|Voice=Pass`, `Case=Nom\|Deixis=Prox\|POS=PRON\|PronType=Dem`, `Case=Dat\|Number=Sing\|POS=PRON\|Person=3\|PronType=Prs`, `POS=PRON`, `Case=Nom\|Deixis=Remt\|POS=PRON\|PronType=Dem`, `Case=Gen\|Number=Sing\|POS=PRON\|Person=3\|PronType=Prs`, `Case=Gen\|Number=Sing\|POS=PRON\|Person=2\|PronType=Prs`, `POS=ADP`, `Case=Dat\|Number=Sing\|POS=PRON\|Person=1\|PronType=Prs`, `Case=Gen\|Clusivity=In\|Number=Plur\|POS=PRON\|Person=1\|PronType=Prs`, `Case=Loc\|POS=ADV\|PronType=Int`, `Case=Loc\|POS=PROPN`, `POS=SYM`, `POS=PROPN\|PronType=Int`, `POS=PROPN\|PartType=Int`, `Case=Gen\|Deixis=Prox\|POS=PRON\|PronType=Dem`, `NumType=Ord\|POS=ADJ`, `Aspect=Perf\|Mood=Pot\|POS=VERB\|Voice=Act`, `Aspect=Perf\|Mood=Ind\|POS=NOUN\|Voice=Pass`, `Aspect=Perf\|Mood=Ind\|POS=VERB\|Typo=Yes\|Voice=Act`, `Case=Gen\|Number=Plur\|POS=ADP`, `Aspect=Perf\|Mood=Ind\|POS=VERB\|Voice=Bfoc`, `Case=Dat\|Number=Plur\|POS=PRON\|Person=3\|PronType=Prs`, `Case=Dat\|Clusivity=Ex\|Number=Plur\|POS=PRON\|Person=1\|PronType=Prs`, `Case=Nom\|POS=PRON\|PronType=Int`, `Aspect=Perf\|Mood=Ind\|POS=VERB\|Voice=Lfoc`, `Case=Loc\|Deixis=Remt\|POS=PRON\|PronType=Dem`, `Case=Gen\|POS=PROPN`, `Case=Nom\|Number=Plur\|POS=DET`, `Aspect=Perf\|Mood=Ind\|POS=ADJ\|Voice=Pass`, `NumType=Frac\|POS=NUM`, `Case=Nom\|Clusivity=In\|Number=Dual\|POS=PRON\|Person=1\|PronType=Prs`, `POS=INTJ`, `Case=Gen\|POS=ADP\|Typo=Yes`, `Aspect=Perf\|Mood=Ind\|POS=PRON\|Voice=Act`, `Case=Nom\|Deixis=Med\|POS=PRON\|PronType=Dem`, `Aspect=Perf\|Mood=Ind\|POS=VERB\|Voice=Cau`, `Aspect=Imp\|Mood=Ind\|POS=VERB\|Voice=Bfoc`, `Aspect=Imp\|Mood=Pot\|POS=VERB\|Voice=Bfoc`, `Degree=Sup\|POS=ADJ`, `Case=Loc\|POS=NOUN\|Typo=Yes`, `Case=Nom\|Number=Sing\|POS=DET\|Typo=Yes`, `Aspect=Imp\|Mood=Ind\|POS=VERB\|Voice=Lfoc`, `Case=Gen\|Number=Sing\|POS=PROPN`, `Case=Dat\|Number=Plur\|POS=PRON\|Person=2\|PronType=Prs`, `Case=Loc\|Deixis=Med\|POS=PRON\|PronType=Dem`, `Case=Dat\|Number=Plur\|POS=ADP`, `Case=Nom\|Clusivity=In\|Number=Plur\|POS=PRON\|Person=1\|PronType=Prs`, `Aspect=Imp\|Mood=Pot\|POS=VERB\|Voice=Cau`, `NumType=Ord\|POS=PROPN`, `POS=NOUN\|Typo=Yes`, `POS=PROPN\|Typo=Yes`, `Aspect=Imp\|Mood=Ind\|POS=VERB\|Voice=Cau`, `Number=Plur\|POS=PROPN`, `Aspect=Perf\|Mood=Ind\|POS=NOUN\|Voice=Act`, `Case=Loc\|Deixis=Prox\|POS=SCONJ\|PronType=Dem`, `Case=Loc\|Deixis=Prox\|POS=NOUN\|PronType=Dem`, `NumType=Card\|POS=ADV`, `Case=Nom\|Deixis=Remt\|POS=PROPN\|PronType=Dem`, `Aspect=Imp\|Mood=Pot\|POS=NOUN\|Voice=Act`, `Aspect=Imp\|Mood=Pot\|POS=ADV\|Voice=Pass`, `Case=Dat\|Clusivity=Ex\|Number=Plur\|POS=ADJ\|Person=1\|PronType=Prs`, `NumType=Card\|POS=PROPN`, `Case=Dat\|Number=Sing\|POS=NOUN\|Person=1\|PronType=Prs`, `Aspect=Imp\|Mood=Pot\|POS=PROPN\|Voice=Pass`, `Deixis=Remt\|POS=PROPN\|PronType=Dem`, `Deixis=Remt\|POS=PRON\|PronType=Dem`, `Aspect=Perf\|Mood=Ind\|POS=PROPN\|Voice=Pass`, `Aspect=Imp\|Mood=Pot\|POS=NOUN\|Voice=Pass`, `POS=NOUN\|PronType=Int`, `Case=Nom\|POS=PRON\|PronType=Ind`, `Aspect=Perf\|Mood=Ind\|POS=NOUN\|Voice=Lfoc`, `Case=Gen\|Number=Sing\|POS=DET`, `Case=Gen\|POS=SCONJ\|Typo=Yes`, `Case=Gen\|POS=PART`, `POS=VERB\|Typo=Yes`, `Case=Gen\|Number=Plur\|POS=PRON\|Person=2\|PronType=Prs\|Typo=Yes`, `POS=PART\|Typo=Yes`, `Aspect=Perf\|Mood=Ind\|POS=PRON\|Voice=Pass`, `NumType=Card\|POS=NOUN`, `POS=SCONJ\|Typo=Yes`, `Abbr=Yes\|POS=ADJ`, `POS=ADV\|Typo=Yes`, `Case=Gen\|Deixis=Remt\|POS=ADV\|PronType=Dem`, `Number=Plur\|POS=VERB`, `Aspect=Imp\|Mood=Pot\|Number=Plur\|POS=VERB\|Voice=Pass`, `POS=NUM\|PronType=Int`, `POS=X`, `Abbr=Yes\|POS=PROPN`, `Degree=Equ\|POS=ADJ`, `Case=Dat\|Number=Sing\|POS=ADJ\|Person=2\|PronType=Prs`, `POS=CCONJ\|Typo=Yes`, `Case=Gen\|Number=Sing\|POS=ADP\|Typo=Yes`, `POS=ADJ\|Typo=Yes`, `POS=PRON\|PronType=Dem`, `NumType=Ord\|POS=NUM`, `Case=Dat\|Clusivity=Ex\|Number=Plur\|POS=VERB\|Person=1\|PronType=Prs`, `Case=Nom\|Number=Dual\|POS=PRON\|Person=2\|PronType=Prs`, `Case=Loc\|Deixis=Prox\|POS=ADV\|PronType=Dem`, `Aspect=Perf\|Mood=Ind\|POS=VERB`, `POS=DET\|Typo=Yes`, `Case=Loc\|Deixis=Remt\|POS=ADV\|PronType=Dem`, `Aspect=Perf\|Mood=Ind\|POS=X`, `NumType=Ord\|POS=ADV`, `Aspect=Imp\|Mood=Pot\|POS=SCONJ\|Voice=Act`, `Case=Loc\|POS=NOUN`, `Degree=Sup\|POS=ADV`, `Case=Gen\|Number=Sing\|POS=PRON\|Person=1\|PronType=Prs\|Typo=Yes`, `Case=Gen\|POS=PART\|Typo=Yes`, `Aspect=Perf\|Mood=Ind\|POS=VERB\|Typo=Yes\|Voice=Pass`, `Aspect=Imp\|Mood=Pot\|POS=VERB`, `Case=Dat\|Number=Sing\|POS=NOUN\|Person=3\|PronType=Prs`, `Number=Plur\|POS=NOUN`, `Case=Dat\|Number=Sing\|POS=NOUN`, `Aspect=Imp\|Mood=Pot\|POS=NOUN\|Voice=Bfoc`, `Case=Gen\|Deixis=Remt\|POS=PRON\|PronType=Dem`, `Deixis=Med\|POS=PRON\|PronType=Dem`, `POS=PRON\|PronType=Tot`, `Case=Nom\|Number=Sing\|POS=NOUN\|Person=3\|PronType=Prs`, `Aspect=Imp\|Mood=Pot\|POS=NOUN\|Voice=Lfoc`, `NumType=Frac\|POS=NOUN`, `NumType=Card\|POS=ADJ`, `Case=Gen\|Number=Sing\|POS=PROPN\|Person=2\|PronType=Prs`, `Case=Nom\|Number=Sing\|POS=PROPN\|Person=1\|PronType=Prs`, `Case=Nom\|POS=PROPN`, `Case=Gen\|Number=Sing\|POS=VERB`, `Deixis=Prox\|POS=PRON\|PronType=Dem`, `Aspect=Imp\|Mood=Pot\|POS=PROPN\|Voice=Lfoc`, `Case=Nom\|Deixis=Remt\|POS=NOUN\|PronType=Dem`, `Case=Dat\|POS=ADP`, `Case=Loc\|POS=VERB\|PronType=Int`, `POS=PRON\|Person=1`, `Aspect=Perf\|Mood=Ind\|POS=SCONJ\|Voice=Pass`, `Degree=Sup\|POS=VERB`, `Aspect=Imp\|Mood=Ind\|POS=SCONJ\|Voice=Act`, `Case=Gen\|Number=Plur\|POS=NOUN\|Person=2\|PronType=Prs`, `Aspect=Imp\|Mood=Ind\|POS=NOUN\|Voice=Act`, `Case=Gen\|Number=Sing\|POS=ADV\|Person=2\|PronType=Prs`, `Case=Loc\|POS=NOUN\|PronType=Int`, `Aspect=Imp\|Mood=Pot\|POS=ADP\|Voice=Act`, `Case=Gen\|Deixis=Prox\|POS=ADV\|PronType=Dem`, `Aspect=Imp\|Mood=Ind\|POS=ADV\|Voice=Pass`, `POS=SCONJ\|PronType=Int`, `Degree=Abs\|POS=ADJ`, `Case=Gen\|Clusivity=In\|Number=Plur\|POS=ADP\|Person=1\|PronType=Prs`, `Aspect=Imp\|Mood=Pot\|POS=ADJ\|Voice=Pass`, `Aspect=Perf\|Mood=Ind\|POS=ADV\|Voice=Act`, `NumType=Card\|POS=NUM\|PronType=Int`, `Aspect=Perf\|Mood=Pot\|POS=VERB\|Voice=Cau`, `Aspect=Perf\|Mood=Pot\|POS=VERB\|Voice=Bfoc`, `Aspect=Perf\|Mood=Pot\|POS=NOUN\|Voice=Pass`, `Aspect=Imp\|Mood=Pot\|POS=ADV\|Voice=Act`, `Deixis=Remt\|POS=ADV\|PronType=Dem`, `Deixis=Prox\|POS=ADJ\|PronType=Dem`, `Deixis=Prox\|POS=ADV\|PronType=Dem`, `Aspect=Imp\|Mood=Ind\|POS=NOUN\|Voice=Lfoc`, `Case=Loc\|POS=PART`, `Deixis=Remt\|POS=VERB\|PronType=Dem`, `Aspect=Imp\|Mood=Pot\|POS=ADJ\|Voice=Lfoc`, `NumType=Card\|POS=VERB`, `POS=ADP\|Typo=Yes`, `Case=Nom\|POS=PART\|Typo=Yes`, `Case=Nom\|Number=Plur\|POS=PART`, `Aspect=Imp\|Mood=Ind\|POS=NOUN\|Voice=Pass`, `NumType=Sets\|POS=ADV`, `Case=Gen\|Deixis=Remt\|POS=SCONJ\|PronType=Dem`, `Aspect=Imp\|Mood=Ind\|POS=NOUN\|Voice=Bfoc`, `Case=Nom\|Number=Sing\|POS=PROPN\|Person=3\|PronType=Prs`, `Aspect=Imp\|Mood=Pot\|POS=ADJ\|Voice=Act`, `Case=Nom\|Deixis=Med\|POS=VERB\|PronType=Dem`, `Case=Nom\|Number=Plur\|POS=NOUN\|Person=2\|PronType=Prs`, `Aspect=Imp\|Mood=Pot\|POS=PRON\|Voice=Act`, `Aspect=Imp\|Mood=Ind\|POS=PROPN\|Voice=Act`, `Case=Dat\|Number=Sing\|POS=ADV\|Person=3\|PronType=Prs`, `Case=Loc\|Deixis=Prox\|POS=CCONJ\|PronType=Dem`, `Case=Nom\|POS=DET\|Typo=Yes`, `Case=Loc\|POS=PRON\|PronType=Int`, `Case=Nom\|Number=Plur\|POS=PRON\|Person=1\|PronType=Prs`, `POS=CCONJ\|Polarity=Neg`, `Case=Loc\|Deixis=Remt\|POS=VERB\|PronType=Dem`, `Case=Nom\|POS=ADP`, `Degree=Sup\|NumType=Ord\|POS=ADJ`, `Degree=Cmp\|POS=ADV`, `NumType=Dist\|POS=ADV`, `Aspect=Imp\|Mood=Ind\|Number=Plur\|POS=VERB\|Voice=Act`, `NumType=Dist\|POS=ADJ`, `Aspect=Perf\|Mood=Ind\|Number=Plur\|POS=VERB\|Voice=Act`, `Case=Dat\|Number=Plur\|POS=PRON\|Person=3\|PronType=Prs\|Typo=Yes`, `Case=Gen\|POS=DET\|Typo=Yes`, `Case=Nom\|Deixis=Prox\|POS=PART\|PronType=Dem`, `Case=Gen,Nom\|Number=Sing\|POS=PRON\|Person=3\|PronType=Prs`, `Case=Gen\|POS=SCONJ`, `Aspect=Perf\|Mood=Pot\|POS=VERB\|Typo=Yes\|Voice=Pass`, `Case=Gen\|POS=NOUN`, `Case=Dat\|Clusivity=Ex\|Number=Plur\|POS=NOUN\|Person=1\|PronType=Prs`, `NumType=Ord\|POS=ADJ\|Typo=Yes`, `Case=Gen\|Deixis=Prox\|POS=PRON\|PronType=Dem\|Typo=Yes`, `NumType=Sets\|POS=NUM`, `Aspect=Perf\|Mood=Ind\|POS=ADV\|Voice=Pass`, `Abbr=Yes\|Case=Nom\|Number=Sing\|POS=PRON\|Person=3\|PronType=Prs`, `POS=ADJ\|Polarity=Neg`, `Case=Nom\|POS=NOUN\|PronType=Ind`, `NumType=Ord\|POS=NOUN`, `POS=CCONJ\|PartType=Int`, `Aspect=Perf\|Mood=Ind\|POS=X\|Voice=Act`, `Case=Nom\|Number=Dual\|POS=NOUN\|Person=2\|PronType=Prs`, `Aspect=Imp\|Mood=Pot\|POS=VERB\|Typo=Yes\|Voice=Lfoc`, `Case=Nom\|Number=Sing\|POS=PRON\|Person=1\|PronType=Prs\|Typo=Yes`, `Case=Nom\|Number=Sing\|POS=NOUN\|Person=1\|PronType=Prs`, `NumType=Dist\|POS=NUM`, `Number=Plur\|POS=PRON\|PronType=Ind`, `Case=Gen\|Number=Sing\|POS=NOUN\|Person=1\|PronType=Prs`, `Case=Nom\|Deixis=Remt\|POS=PRON\|PronType=Dem\|Typo=Yes`, `Case=Nom\|Number=Sing\|POS=ADV\|Person=3\|PronType=Prs`, `Case=Nom\|Number=Sing\|POS=ADP`, `Abbr=Yes\|POS=NOUN`, `Case=Gen\|Deixis=Remt\|POS=ADP\|PronType=Dem`, `POS=PRON\|PronType=Ind`, `POS=VERB\|Polarity=Neg\|Typo=Yes`, `POS=ADP\|Polarity=Neg`, `Case=Loc\|POS=ADV\|PronType=Int\|Typo=Yes`, `Case=Nom\|Deixis=Med\|POS=PROPN\|PronType=Dem`, `Case=Loc\|Deixis=Remt\|POS=NOUN\|PronType=Dem`, `Case=Gen\|Number=Plur\|POS=NOUN\|Person=3\|PronType=Prs`, `Aspect=Imp\|Mood=Pot\|POS=VERB\|Typo=Yes\|Voice=Pass`, `Case=Nom\|Clusivity=In\|Number=Dual\|POS=PRON\|Person=1\|PronType=Prs\|Typo=Yes`, `Case=Gen\|Number=Plur\|POS=ADP\|Person=3\|PronType=Prs`, `Case=Gen\|Deixis=Med\|POS=PRON\|PronType=Dem`, `Case=Nom\|Clusivity=Ex\|Number=Dual\|POS=PRON\|Person=1\|PronType=Prs`, `Number=Sing\|POS=ADV`, `Case=Dat\|POS=PRON\|PronType=Int`, `Aspect=Imp\|Mood=Ind\|POS=PROPN\|Voice=Pass`, `Aspect=Imp\|Mood=Pot\|POS=VERB\|Typo=Yes\|Voice=Act`, `Number=Plur\|POS=PRON\|PronType=Int`, `Case=Nom\|POS=VERB`, `Case=Nom\|POS=ADV\|PronType=Ind`, `Aspect=Imp\|Mood=Ind\|POS=NUM\|Voice=Act`, `Case=Nom\|Number=Plur\|POS=PROPN\|Person=1\|PronType=Prs`, `Aspect=Perf\|Mood=Pot\|POS=NOUN\|Voice=Act`, `Case=Gen\|Deixis=Prox\|POS=ADP\|PronType=Dem`, `POS=SCONJ\|Polarity=Neg`, `Aspect=Imp\|Mood=Ind\|POS=ADJ\|Voice=Act`, `Case=Loc\|POS=ADP\|Typo=Yes`, `NumType=Ord\|POS=VERB`, `Case=Nom\|POS=SCONJ`, `Aspect=Perf\|Mood=Ind\|NumType=Ord\|POS=VERB\|Voice=Act`, `Case=Nom\|Clusivity=Ex\|Number=Plur\|POS=NOUN\|Person=1\|PronType=Prs`, `Degree=Cmp\|POS=VERB`, `Case=Nom\|Number=Sing\|POS=PRON\|Person=3\|PronType=Prs\|Typo=Yes`, `NumType=Sets\|POS=NOUN`, `Aspect=Perf\|Mood=Ind\|POS=ADP\|Voice=Act`, `Aspect=Imp\|Mood=Pot\|POS=PROPN\|Voice=Act`, `Case=Dat\|Number=Sing\|POS=NOUN\|Person=2\|PronType=Prs`, `NumType=Ord\|POS=INTJ`, `Case=Nom\|Number=Plur\|POS=ADJ\|Person=2\|PronType=Prs`, `Aspect=Imp\|Mood=Pot\|POS=ADP\|Voice=Pass`, `Case=Nom\|POS=ADV\|PronType=Int`, `Degree=Sup\|POS=NOUN`, `Case=Gen\|Number=Sing\|POS=PART`, `Aspect=Perf\|Mood=Ind\|POS=ADP\|Voice=Pass`, `Number=Plur\|POS=ADV`, `Case=Loc\|Number=Plur\|POS=ADP\|Typo=Yes`, `Case=Nom\|POS=ADV`, `Case=Gen\|Number=Plur\|POS=PROPN\|Person=2\|PronType=Prs`, `Case=Loc\|POS=ADV`, `Case=Nom\|Number=Plur\|POS=NOUN\|Person=1\|PronType=Prs`, `POS=ADJ\|PronType=Int`, `POS=NOUN\|Polarity=Neg`, `POS=CCONJ\|PronType=Int`, `Case=Gen\|POS=ADV`, `POS=ADV\|PronType=Ind`, `POS=PROPN\|Polarity=Neg`, `Deixis=Prox\|POS=VERB\|PronType=Dem`, `Case=Nom\|Number=Plur\|POS=PRON\|Person=2\|PronType=Prs\|Typo=Yes`, `Case=Loc\|Deixis=Remt\|POS=PROPN\|PronType=Dem`, `Aspect=Imp\|Mood=Pot\|POS=SCONJ\|Voice=Pass`, `Case=Dat\|Clusivity=Ex\|Number=Plur\|POS=NUM\|Person=1\|PronType=Prs`, `POS=PRON\|PronType=Int\|Typo=Yes`, `Aspect=Imp\|Mood=Ind\|POS=ADJ\|Voice=Pass`, `Case=Loc\|Deixis=Prox\|POS=DET\|PronType=Dem`, `Case=Dat,Loc\|Number=Sing\|POS=PRON\|Person=2\|PronType=Prs`, `Case=Gen\|Number=Sing\|POS=PRON\|Person=3\|PronType=Prs\|Typo=Yes`, `Aspect=Perf\|Case=Gen\|Mood=Ind\|POS=VERB\|Typo=Yes\|Voice=Cau`, `Case=Gen\|Number=Plur\|POS=PRON`, `Case=Nom\|Deixis=Prox\|POS=NUM\|PronType=Dem`, `Case=Dat,Gen\|Number=Plur\|POS=PRON\|Person=3\|PronType=Prs`, `Case=Dat,Loc\|Clusivity=In\|Number=Plur\|POS=PRON\|Person=1\|PronType=Prs`, `Case=Loc\|POS=SCONJ\|PronType=Int`, `POS=PART\|Polite=Form\|Typo=Yes`, `Abbr=Yes\|POS=ADV\|Polarity=Neg`, `NumType=Card\|POS=PART`, `Case=Nom\|POS=ADP\|Typo=Yes`, `Case=Dat\|Number=Sing\|POS=PROPN\|Person=3\|PronType=Prs`, `Case=Dat\|Number=Sing\|POS=ADV\|Person=2\|PronType=Prs`, `Case=Nom\|Clusivity=In\|Number=Plur\|POS=VERB\|Person=1\|PronType=Prs`, `Case=Gen\|POS=VERB`, `Case=Nom\|Deixis=Prox\|POS=PROPN\|PronType=Dem`, `Case=Nom\|Number=Sing\|POS=PROPN\|Person=2\|PronType=Prs`, `Case=Dat\|Clusivity=In\|Number=Plur\|POS=NOUN\|Person=1\|PronType=Prs`, `Number=Plur\|POS=DET\|Typo=Yes`, `Case=Gen\|POS=ADJ`, `NumType=Frac\|POS=ADJ`, `Case=Gen\|POS=PRON\|PronType=Ind`, `POS=ADV\|PartType=Int`, `Case=Nom\|Deixis=Prox\|POS=NOUN\|PronType=Dem`, `Degree=Abs\|POS=VERB`, `Deixis=Med\|POS=VERB\|PronType=Dem`, `NumType=Card\|POS=PRON`, `Case=Gen\|Deixis=Remt\|POS=ADJ\|PronType=Dem`, `Aspect=Imp\|Mood=Pot\|POS=DET\|Voice=Pass`, `Case=Loc\|Deixis=Remt\|POS=DET\|PronType=Dem`, `Case=Loc\|POS=VERB`, `Degree=Cmp\|POS=ADJ`, `Degree=Abs\|POS=SCONJ`, `NumType=Dist\|POS=ADP`, `Case=Dat\|Number=Plur\|POS=PART\|Person=3\|PronType=Prs`, `Deixis=Remt\|POS=NOUN\|PronType=Dem`, `Case=Gen\|Deixis=Prox\|POS=DET\|PronType=Dem`, `POS=ADV\|Polarity=Neg\|Typo=Yes`, `Case=Gen\|Number=Plur\|POS=PRON\|Person=3\|PronType=Prs\|Typo=Yes`, `Aspect=Perf\|Mood=Ind\|POS=VERB\|Typo=Yes\|Voice=Bfoc`, `Degree=Sup\|POS=PROPN`, `Case=Loc\|Deixis=Med\|POS=ADV\|PronType=Dem`, `Case=Nom\|Number=Plur\|POS=PRON\|Person=3\|PronType=Prs\|Typo=Yes`, `Case=Nom\|Number=Plur\|POS=PROPN\|Person=3\|PronType=Prs`, `Case=Nom\|POS=PROPN\|PronType=Ind`, `Case=Nom\|Deixis=Prox\|POS=VERB\|PronType=Dem`, `Case=Gen\|Number=Sing\|POS=VERB\|Person=1\|PronType=Prs`, `Case=Nom\|Clusivity=In\|Number=Dual\|POS=ADJ\|Person=1\|PronType=Prs`, `Case=Gen\|Number=Sing\|POS=ADV`, `Deixis=Med\|POS=ADV\|PronType=Dem`, `POS=ADV\|PartType=Int\|Polarity=Neg`, `Degree=Abs\|POS=ADV`, `Case=Dat\|POS=ADP\|Typo=Yes`, `POS=VERB\|PronType=Int`, `Case=Gen\|Number=Plur\|POS=ADP\|Typo=Yes`, `Case=Nom\|Deixis=Remt\|POS=DET\|PronType=Dem`, `Case=Gen\|POS=ADV\|Typo=Yes`, `Aspect=Imp\|Mood=Pot\|POS=ADV\|Voice=Lfoc`, `Aspect=Imp\|Case=Loc\|Mood=Pot\|POS=SCONJ\|PronType=Int\|Voice=Pass`, `Case=Gen\|Number=Sing\|POS=DET\|Typo=Yes`, `Case=Nom\|Deixis=Med\|POS=NOUN\|PronType=Dem`, `Aspect=Imp\|Mood=Pot\|POS=PRON\|Voice=Pass`, `Case=Nom\|Deixis=Remt\|POS=NUM\|PronType=Dem`, `Case=Nom\|Deixis=Remt\|POS=ADV\|PronType=Dem`, `Case=Gen\|Deixis=Med\|POS=ADV\|PronType=Dem`, `Aspect=Perf\|Case=Gen\|Mood=Ind\|POS=VERB\|Voice=Pass`, `Degree=Equ\|POS=ADV`, `NumType=Card\|POS=DET`, `Case=Gen\|Deixis=Remt\|POS=ADV\|PronType=Dem\|Typo=Yes`, `Abbr=Yes\|Case=Nom\|POS=PRON\|PronType=Int`, `POS=INTJ\|Polite=Form`, `Aspect=Perf\|Mood=Ind\|POS=ADJ\|Voice=Act`, `Case=Nom\|Clusivity=In\|Number=Plur\|POS=PART\|Person=1\|PronType=Prs`, `Case=Nom\|POS=NOUN`, `Aspect=Imp\|Mood=Ind\|POS=VERB\|Polarity=Neg\|Voice=Pass`, `Aspect=Imp\|Mood=Ind\|POS=VERB\|Typo=Yes\|Voice=Pass`, `Case=Loc\|Deixis=Med\|POS=PRON\|PronType=Dem\|Typo=Yes`, `Aspect=Imp\|Mood=Pot\|POS=NOUN\|Voice=Cau`, `Case=Nom\|Number=Sing\|POS=VERB\|Person=2\|PronType=Prs`, `Degree=Sup\|POS=ADJ\|Typo=Yes`, `Deixis=Prox\|POS=PROPN\|PronType=Dem`, `Case=Nom\|Number=Plur\|POS=ADP`, `Case=Nom\|Number=Plur\|POS=ADV\|Person=2\|PronType=Prs`, `Case=Loc\|POS=PRON`, `Case=Nom\|POS=PROPN\|PronType=Int`, `Aspect=Imp\|Mood=Ind\|POS=VERB\|Typo=Yes\|Voice=Lfoc`, `Deixis=Prox\|POS=ADV\|PronType=Dem\|Typo=Yes`, `POS=PRON\|Typo=Yes`, `Abbr=Yes\|Case=Gen\|Number=Plur\|POS=PRON\|Person=2\|PronType=Prs`, `Abbr=Yes\|POS=ADV`, `Abbr=Yes\|NumType=Card\|POS=NUM`, `Deixis=Prox\|POS=NUM\|PronType=Dem`, `Deixis=Remt\|POS=SCONJ\|PronType=Dem`, `NumType=Card\|POS=NUM\|Typo=Yes`, `Case=Nom\|POS=PRON\|PronType=Ind\|Typo=Yes`, `Case=Gen\|Number=Sing\|POS=PART\|Person=3\|PronType=Prs`, `Case=Dat,Loc\|Number=Sing\|POS=ADP\|Person=2\|PronType=Prs`, `Case=Nom\|Number=Sing\|POS=PART\|Person=3\|PronType=Prs`, `Aspect=Perf\|Mood=Ind\|POS=PART\|Voice=Pass`, `Case=Gen\|Deixis=Prox\|POS=NUM\|PronType=Dem`, `Aspect=Imp\|Mood=Ind\|POS=PRON\|Voice=Pass`, `Case=Loc\|Deixis=Prox\|POS=PROPN\|PronType=Dem`, `Case=Gen\|Number=Sing\|POS=PROPN\|Person=3\|PronType=Prs`, `Case=Gen\|Number=Sing\|POS=NOUN\|Person=3\|PronType=Prs`, `Case=Loc\|POS=PUNCT`, `Case=Nom\|Number=Plur\|POS=DET\|Typo=Yes`, `Aspect=Imp\|Mood=Ind\|POS=VERB\|Typo=Yes\|Voice=Act`, `Aspect=Imp\|Mood=Ind\|POS=ADV\|Voice=Act`, `Case=Nom\|Number=Sing\|POS=PRON` |
|
84 |
+
| **`tagger`** | `ADJ`, `ADJ_ADP__Case=Gen`, `ADJ_CCONJ`, `ADJ_CCONJ__Degree=Abs`, `ADJ_PART`, `ADJ_PART_ADJ`, `ADJ_PART_ADJ_PART__Degree=Abs`, `ADJ_PART_ADJ__Degree=Abs`, `ADJ_PART__Aspect=Imp\|Mood=Ind\|Voice=Act`, `ADJ_PART__Aspect=Imp\|Mood=Pot\|Voice=Pass`, `ADJ_PART__Aspect=Perf\|Mood=Ind\|Voice=Pass`, `ADJ_PART__Case=Gen\|Deixis=Remt\|PronType=Dem`, `ADJ_PART__Case=Nom\|Number=Plur\|Person=2\|PronType=Prs`, `ADJ_PART__Degree=Abs`, `ADJ_PART__Degree=Sup`, `ADJ_PART__Degree=Sup\|NumType=Ord`, `ADJ_PART__Degree=Sup\|Typo=Yes`, `ADJ_PART__Deixis=Prox\|PronType=Dem`, `ADJ_PART__NumType=Card`, `ADJ_PART__NumType=Frac`, `ADJ_PART__NumType=Ord`, `ADJ_PART__NumType=Ord\|Typo=Yes`, `ADJ_PART__Polarity=Neg`, `ADJ_PART__Typo=Yes`, `ADJ_X`, `ADJ__Abbr=Yes`, `ADJ__Aspect=Imp\|Mood=Ind\|Voice=Act`, `ADJ__Aspect=Imp\|Mood=Ind\|Voice=Pass`, `ADJ__Aspect=Imp\|Mood=Pot\|Voice=Act`, `ADJ__Aspect=Imp\|Mood=Pot\|Voice=Lfoc`, `ADJ__Aspect=Imp\|Mood=Pot\|Voice=Pass`, `ADJ__Aspect=Perf\|Mood=Ind\|Voice=Act`, `ADJ__Case=Dat\|Clusivity=Ex\|Number=Plur\|Person=1\|PronType=Prs`, `ADJ__Case=Dat\|Number=Sing\|Person=2\|PronType=Prs`, `ADJ__Case=Gen\|Deixis=Remt\|PronType=Dem`, `ADJ__Case=Nom\|Clusivity=In\|Number=Dual\|Person=1\|PronType=Prs`, `ADJ__Case=Nom\|Number=Plur\|Person=2\|PronType=Prs`, `ADJ__Degree=Abs`, `ADJ__Degree=Cmp`, `ADJ__Degree=Equ`, `ADJ__Degree=Sup`, `ADJ__NumType=Card`, `ADJ__NumType=Dist`, `ADJ__NumType=Ord`, `ADJ__Polarity=Neg`, `ADJ__PronType=Int`, `ADJ__Typo=Yes`, `ADP`, `ADP_ADP`, `ADP_CCONJ`, `ADP_PART`, `ADP_PART__Case=Gen\|Deixis=Prox\|PronType=Dem`, `ADP_PART__Case=Gen\|Deixis=Remt\|PronType=Dem`, `ADP_PRON_PART__Case=Dat,Loc\|Number=Sing\|Person=2\|PronType=Prs`, `ADP_PRON__Case=Dat,Loc\|Clusivity=In\|Number=Plur\|Person=1\|PronType=Prs`, `ADP_PRON__Case=Dat,Loc\|Number=Sing\|Person=2\|PronType=Prs`, `ADP_PRON__Case=Dat\|Number=Sing\|Person=1\|PronType=Prs`, `ADP_PRON__Case=Loc`, `ADP__Aspect=Imp\|Mood=Pot\|Voice=Act`, `ADP__Aspect=Imp\|Mood=Pot\|Voice=Pass`, `ADP__Aspect=Perf\|Mood=Ind\|Voice=Act`, `ADP__Aspect=Perf\|Mood=Ind\|Voice=Pass`, `ADP__Case=Dat`, `ADP__Case=Dat\|Number=Plur`, `ADP__Case=Dat\|Number=Sing`, `ADP__Case=Dat\|Typo=Yes`, `ADP__Case=Gen`, `ADP__Case=Gen\|Clusivity=In\|Number=Plur\|Person=1\|PronType=Prs`, `ADP__Case=Gen\|Number=Plur`, `ADP__Case=Gen\|Number=Plur\|Person=3\|PronType=Prs`, `ADP__Case=Gen\|Number=Plur\|Typo=Yes`, `ADP__Case=Gen\|Number=Sing`, `ADP__Case=Gen\|Number=Sing\|Typo=Yes`, `ADP__Case=Gen\|Typo=Yes`, `ADP__Case=Loc`, `ADP__Case=Loc\|Number=Plur\|Typo=Yes`, `ADP__Case=Loc\|Typo=Yes`, `ADP__Case=Nom`, `ADP__Case=Nom\|Number=Plur`, `ADP__Case=Nom\|Number=Sing`, `ADP__Case=Nom\|Typo=Yes`, `ADP__NumType=Dist`, `ADP__Polarity=Neg`, `ADP__Typo=Yes`, `ADV`, `ADV_ADP`, `ADV_ADP__Case=Gen`, `ADV_ADV`, `ADV_CCONJ`, `ADV_DET`, `ADV_DET__Case=Loc\|PronType=Int`, `ADV_DET__Case=Nom`, `ADV_DET__Number=Sing`, `ADV_PART`, `ADV_PART__Aspect=Imp\|Mood=Pot\|Voice=Pass`, `ADV_PART__Aspect=Perf\|Mood=Ind\|Voice=Pass`, `ADV_PART__Case=Dat\|Number=Sing\|Person=2\|PronType=Prs`, `ADV_PART__Case=Dat\|Number=Sing\|Person=3\|PronType=Prs`, `ADV_PART__Case=Gen`, `ADV_PART__Case=Gen\|Deixis=Med\|PronType=Dem`, `ADV_PART__Case=Gen\|Deixis=Prox\|PronType=Dem`, `ADV_PART__Case=Gen\|Deixis=Remt\|PronType=Dem`, `ADV_PART__Case=Gen\|Deixis=Remt\|PronType=Dem\|Typo=Yes`, `ADV_PART__Case=Gen\|Typo=Yes`, `ADV_PART__Case=Loc`, `ADV_PART__Case=Loc\|PronType=Int`, `ADV_PART__Case=Nom\|Deixis=Remt\|PronType=Dem`, `ADV_PART__Case=Nom\|Number=Plur\|Person=2\|PronType=Prs`, `ADV_PART__Case=Nom\|Number=Sing\|Person=3\|PronType=Prs`, `ADV_PART__Deixis=Med\|PronType=Dem`, `ADV_PART__Deixis=Prox\|PronType=Dem`, `ADV_PART__Deixis=Prox\|PronType=Dem\|Typo=Yes`, `ADV_PART__Deixis=Remt\|PronType=Dem`, `ADV_PART__NumType=Card`, `ADV_PART__NumType=Dist`, `ADV_PART__NumType=Ord`, `ADV_PART__PartType=Int\|Polarity=Neg`, `ADV_PART__Polarity=Neg`, `ADV_PART__PronType=Int`, `ADV_PART__Typo=Yes`, `ADV_VERB_PART__Aspect=Imp\|Mood=Ind\|Polarity=Neg\|Voice=Pass`, `ADV_X`, `ADV__Abbr=Yes`, `ADV__Abbr=Yes\|Polarity=Neg`, `ADV__Aspect=Imp\|Mood=Ind\|Voice=Act`, `ADV__Aspect=Imp\|Mood=Ind\|Voice=Pass`, `ADV__Aspect=Imp\|Mood=Pot\|Voice=Act`, `ADV__Aspect=Imp\|Mood=Pot\|Voice=Lfoc`, `ADV__Aspect=Imp\|Mood=Pot\|Voice=Pass`, `ADV__Aspect=Perf\|Mood=Ind\|Voice=Act`, `ADV__Aspect=Perf\|Mood=Ind\|Voice=Pass`, `ADV__Case=Dat\|Number=Sing\|Person=3\|PronType=Prs`, `ADV__Case=Gen`, `ADV__Case=Gen\|Deixis=Prox\|PronType=Dem`, `ADV__Case=Gen\|Deixis=Remt\|PronType=Dem`, `ADV__Case=Gen\|Deixis=Remt\|PronType=Dem\|Typo=Yes`, `ADV__Case=Gen\|Number=Sing`, `ADV__Case=Gen\|Number=Sing\|Person=2\|PronType=Prs`, `ADV__Case=Gen\|Typo=Yes`, `ADV__Case=Loc`, `ADV__Case=Loc\|Deixis=Med\|PronType=Dem`, `ADV__Case=Loc\|Deixis=Prox\|PronType=Dem`, `ADV__Case=Loc\|Deixis=Remt\|PronType=Dem`, `ADV__Case=Loc\|PronType=Int`, `ADV__Case=Loc\|PronType=Int\|Typo=Yes`, `ADV__Case=Nom\|Deixis=Remt\|PronType=Dem`, `ADV__Case=Nom\|PronType=Ind`, `ADV__Case=Nom\|PronType=Int`, `ADV__Degree=Abs`, `ADV__Degree=Cmp`, `ADV__Degree=Equ`, `ADV__Degree=Sup`, `ADV__Deixis=Med\|PronType=Dem`, `ADV__Deixis=Prox\|PronType=Dem`, `ADV__Deixis=Remt\|PronType=Dem`, `ADV__NumType=Card`, `ADV__NumType=Dist`, `ADV__NumType=Ord`, `ADV__NumType=Sets`, `ADV__Number=Plur`, `ADV__PartType=Int`, `ADV__Polarity=Neg`, `ADV__Polarity=Neg\|Typo=Yes`, `ADV__PronType=Ind`, `ADV__PronType=Int`, `ADV__Typo=Yes`, `Aspect=Imp\|Mood=Ind\|Voice=Lfoc`, `CCONJ`, `CCONJ_ADV__Polarity=Neg`, `CCONJ_CCONJ`, `CCONJ__Case=Loc\|Deixis=Prox\|PronType=Dem`, `CCONJ__PronType=Int`, `CCONJ__Typo=Yes`, `DET`, `DET_PART`, `DET_PART__Case=Gen\|Deixis=Prox\|PronType=Dem`, `DET_PART__Case=Nom\|Deixis=Remt\|PronType=Dem`, `DET__Aspect=Imp\|Mood=Pot\|Voice=Pass`, `DET__Case=Gen\|Number=Sing`, `DET__Case=Gen\|Number=Sing\|Typo=Yes`, `DET__Case=Gen\|Typo=Yes`, `DET__Case=Loc\|Deixis=Prox\|PronType=Dem`, `DET__Case=Loc\|Deixis=Remt\|PronType=Dem`, `DET__Case=Nom`, `DET__Case=Nom\|Number=Plur`, `DET__Case=Nom\|Number=Plur\|Typo=Yes`, `DET__Case=Nom\|Number=Sing`, `DET__Case=Nom\|Number=Sing\|Typo=Yes`, `DET__Case=Nom\|Typo=Yes`, `DET__NumType=Card`, `DET__Number=Plur`, `DET__Number=Plur\|Typo=Yes`, `DET__Typo=Yes`, `INTJ`, `INTJ_PART`, `INTJ__NumType=Ord`, `INTJ__Polite=Form`, `NOUN`, `NOUN_ADP`, `NOUN_CCONJ`, `NOUN_CCONJ__Case=Nom\|Deixis=Prox\|PronType=Dem`, `NOUN_CCONJ__NumType=Ord`, `NOUN_DET__Case=Nom`, `NOUN_NOUN_PART`, `NOUN_PART`, `NOUN_PART__Aspect=Imp\|Mood=Pot\|Voice=Act`, `NOUN_PART__Aspect=Imp\|Mood=Pot\|Voice=Lfoc`, `NOUN_PART__Aspect=Imp\|Mood=Pot\|Voice=Pass`, `NOUN_PART__Case=Dat\|Number=Sing\|Person=3\|PronType=Prs`, `NOUN_PART__Case=Gen`, `NOUN_PART__Case=Gen\|Number=Plur\|Person=3\|PronType=Prs`, `NOUN_PART__Case=Loc`, `NOUN_PART__Case=Nom\|Clusivity=Ex\|Number=Plur\|Person=1\|PronType=Prs`, `NOUN_PART__Case=Nom\|Number=Plur\|Person=2\|PronType=Prs`, `NOUN_PART__Case=Nom\|Number=Sing\|Person=1\|PronType=Prs`, `NOUN_PART__Case=Nom\|Number=Sing\|Person=3\|PronType=Prs`, `NOUN_PART__Case=Nom\|PronType=Ind`, `NOUN_PART__Degree=Sup`, `NOUN_PART__NumType=Card`, `NOUN_PART__NumType=Ord`, `NOUN_PART__PronType=Int`, `NOUN_PART__Typo=Yes`, `NOUN_X`, `NOUN__Abbr=Yes`, `NOUN__Aspect=Imp\|Mood=Ind\|Voice=Act`, `NOUN__Aspect=Imp\|Mood=Ind\|Voice=Bfoc`, `NOUN__Aspect=Imp\|Mood=Ind\|Voice=Lfoc`, `NOUN__Aspect=Imp\|Mood=Ind\|Voice=Pass`, `NOUN__Aspect=Imp\|Mood=Pot\|Voice=Act`, `NOUN__Aspect=Imp\|Mood=Pot\|Voice=Bfoc`, `NOUN__Aspect=Imp\|Mood=Pot\|Voice=Cau`, `NOUN__Aspect=Imp\|Mood=Pot\|Voice=Lfoc`, `NOUN__Aspect=Imp\|Mood=Pot\|Voice=Pass`, `NOUN__Aspect=Perf\|Mood=Ind\|Voice=Act`, `NOUN__Aspect=Perf\|Mood=Ind\|Voice=Lfoc`, `NOUN__Aspect=Perf\|Mood=Ind\|Voice=Pass`, `NOUN__Aspect=Perf\|Mood=Pot\|Voice=Act`, `NOUN__Aspect=Perf\|Mood=Pot\|Voice=Pass`, `NOUN__Case=Dat\|Clusivity=Ex\|Number=Plur\|Person=1\|PronType=Prs`, `NOUN__Case=Dat\|Clusivity=In\|Number=Plur\|Person=1\|PronType=Prs`, `NOUN__Case=Dat\|Number=Sing`, `NOUN__Case=Dat\|Number=Sing\|Person=1\|PronType=Prs`, `NOUN__Case=Dat\|Number=Sing\|Person=2\|PronType=Prs`, `NOUN__Case=Dat\|Number=Sing\|Person=3\|PronType=Prs`, `NOUN__Case=Gen`, `NOUN__Case=Gen\|Number=Plur\|Person=2\|PronType=Prs`, `NOUN__Case=Gen\|Number=Sing\|Person=1\|PronType=Prs`, `NOUN__Case=Gen\|Number=Sing\|Person=3\|PronType=Prs`, `NOUN__Case=Loc`, `NOUN__Case=Loc\|Deixis=Prox\|PronType=Dem`, `NOUN__Case=Loc\|Deixis=Remt\|PronType=Dem`, `NOUN__Case=Loc\|PronType=Int`, `NOUN__Case=Loc\|Typo=Yes`, `NOUN__Case=Nom\|Deixis=Med\|PronType=Dem`, `NOUN__Case=Nom\|Deixis=Prox\|PronType=Dem`, `NOUN__Case=Nom\|Deixis=Remt\|PronType=Dem`, `NOUN__Case=Nom\|Number=Dual\|Person=2\|PronType=Prs`, `NOUN__Case=Nom\|Number=Plur\|Person=1\|PronType=Prs`, `NOUN__Case=Nom\|Number=Plur\|Person=2\|PronType=Prs`, `NOUN__Case=Nom\|Number=Sing\|Person=1\|PronType=Prs`, `NOUN__Case=Nom\|Number=Sing\|Person=3\|PronType=Prs`, `NOUN__Case=Nom\|PronType=Ind`, `NOUN__Deixis=Remt\|PronType=Dem`, `NOUN__NumType=Card`, `NOUN__NumType=Frac`, `NOUN__NumType=Ord`, `NOUN__NumType=Sets`, `NOUN__Number=Plur`, `NOUN__Polarity=Neg`, `NOUN__PronType=Int`, `NOUN__Typo=Yes`, `NUM`, `NUM_CCONJ`, `NUM_CCONJ__NumType=Card`, `NUM_DET__NumType=Card\|Typo=Yes`, `NUM_NOUN__NumType=Card`, `NUM_PART`, `NUM_PART__Case=Gen\|Deixis=Prox\|PronType=Dem`, `NUM_PART__Case=Nom\|Deixis=Prox\|PronType=Dem`, `NUM_PART__Case=Nom\|Deixis=Remt\|PronType=Dem`, `NUM_PART__Deixis=Prox\|PronType=Dem`, `NUM_PART__NumType=Card`, `NUM_PART__NumType=Dist`, `NUM_PART__NumType=Ord`, `NUM_PART__PronType=Int`, `NUM_PUNCT_NOUN__NumType=Card`, `NUM__Abbr=Yes\|NumType=Card`, `NUM__Aspect=Imp\|Mood=Ind\|Voice=Act`, `NUM__Case=Dat\|Clusivity=Ex\|Number=Plur\|Person=1\|PronType=Prs`, `NUM__Deixis=Prox\|PronType=Dem`, `NUM__NumType=Card`, `NUM__NumType=Card\|PronType=Int`, `NUM__NumType=Dist`, `NUM__NumType=Frac`, `NUM__NumType=Ord`, `NUM__NumType=Sets`, `NUM__PronType=Int`, `NumType=Ord`, `NumType=Ord__NumType=Ord`, `PART`, `PART_CCONJ`, `PART_CCONJ__PartType=Int`, `PART_DET__PartType=Int`, `PART_PART`, `PART_PART__PartType=Int`, `PART_PART__Polite=Form`, `PART__Aspect=Perf\|Mood=Ind\|Voice=Pass`, `PART__Case=Gen`, `PART__Case=Gen\|Number=Sing`, `PART__Case=Gen\|Typo=Yes`, `PART__Case=Loc`, `PART__Case=Nom\|Number=Plur`, `PART__Case=Nom\|Typo=Yes`, `PART__PartType=Int`, `PART__Polite=Form`, `PART__Polite=Form\|Typo=Yes`, `PART__Typo=Yes`, `PRON`, `PRON_ADP__Case=Dat,Gen\|Number=Plur\|Person=3\|PronType=Prs`, `PRON_ADV`, `PRON_ADV__Case=Dat\|Number=Sing\|Person=3\|PronType=Prs`, `PRON_ADV__Case=Gen\|Deixis=Prox\|PronType=Dem`, `PRON_AUX`, `PRON_CCONJ`, `PRON_DET__Abbr=Yes\|Case=Nom\|Number=Sing\|Person=3\|PronType=Prs`, `PRON_DET__Case=Gen,Nom\|Number=Sing\|Person=3\|PronType=Prs`, `PRON_DET__Case=Gen\|Number=Sing\|Person=3\|PronType=Prs`, `PRON_DET__Case=Nom\|Number=Sing\|Person=1\|PronType=Prs`, `PRON_DET__Case=Nom\|Number=Sing\|Person=3\|PronType=Prs`, `PRON_DET__Case=Nom\|PronType=Int`, `PRON_DET__PronType=Int`, `PRON_PART`, `PRON_PART__Aspect=Imp\|Mood=Pot\|Voice=Pass`, `PRON_PART__Aspect=Perf\|Mood=Ind\|Voice=Act`, `PRON_PART__Case=Dat\|Clusivity=Ex\|Number=Plur\|Person=1\|PronType=Prs`, `PRON_PART__Case=Dat\|Clusivity=In\|Number=Plur\|Person=1\|PronType=Prs`, `PRON_PART__Case=Dat\|Number=Plur\|Person=2\|PronType=Prs`, `PRON_PART__Case=Dat\|Number=Plur\|Person=3\|PronType=Prs`, `PRON_PART__Case=Dat\|Number=Plur\|Person=3\|PronType=Prs\|Typo=Yes`, `PRON_PART__Case=Dat\|Number=Sing\|Person=1\|PronType=Prs`, `PRON_PART__Case=Dat\|Number=Sing\|Person=2\|PronType=Prs`, `PRON_PART__Case=Dat\|Number=Sing\|Person=3\|PronType=Prs`, `PRON_PART__Case=Dat\|PronType=Int`, `PRON_PART__Case=Gen\|Clusivity=Ex\|Number=Plur\|Person=1\|PronType=Prs`, `PRON_PART__Case=Gen\|Clusivity=In\|Number=Plur\|Person=1\|PronType=Prs`, `PRON_PART__Case=Gen\|Deixis=Prox\|PronType=Dem`, `PRON_PART__Case=Gen\|Deixis=Remt\|PronType=Dem`, `PRON_PART__Case=Gen\|Number=Plur\|Person=2\|PronType=Prs`, `PRON_PART__Case=Gen\|Number=Plur\|Person=3\|PronType=Prs`, `PRON_PART__Case=Gen\|Number=Sing\|Person=1\|PronType=Prs`, `PRON_PART__Case=Gen\|Number=Sing\|Person=1\|PronType=Prs\|Typo=Yes`, `PRON_PART__Case=Gen\|Number=Sing\|Person=2\|PronType=Prs`, `PRON_PART__Case=Gen\|Number=Sing\|Person=3\|PronType=Prs`, `PRON_PART__Case=Loc\|Deixis=Med\|PronType=Dem`, `PRON_PART__Case=Loc\|Deixis=Prox\|PronType=Dem`, `PRON_PART__Case=Loc\|PronType=Int`, `PRON_PART__Case=Nom\|Clusivity=Ex\|Number=Plur\|Person=1\|PronType=Prs`, `PRON_PART__Case=Nom\|Clusivity=In\|Number=Dual\|Person=1\|PronType=Prs`, `PRON_PART__Case=Nom\|Clusivity=In\|Number=Plur\|Person=1\|PronType=Prs`, `PRON_PART__Case=Nom\|Deixis=Med\|PronType=Dem`, `PRON_PART__Case=Nom\|Deixis=Prox\|PronType=Dem`, `PRON_PART__Case=Nom\|Deixis=Remt\|PronType=Dem`, `PRON_PART__Case=Nom\|Deixis=Remt\|PronType=Dem\|Typo=Yes`, `PRON_PART__Case=Nom\|Number=Plur\|Person=2\|PronType=Prs`, `PRON_PART__Case=Nom\|Number=Plur\|Person=3\|PronType=Prs`, `PRON_PART__Case=Nom\|Number=Sing\|Person=1\|PronType=Prs`, `PRON_PART__Case=Nom\|Number=Sing\|Person=2\|PronType=Prs`, `PRON_PART__Case=Nom\|Number=Sing\|Person=3\|PronType=Prs`, `PRON_PART__Case=Nom\|PronType=Ind`, `PRON_PART__Case=Nom\|PronType=Int`, `PRON_PART__Deixis=Prox\|PronType=Dem`, `PRON_PART__Person=1`, `PRON_PART__PronType=Int`, `PRON_VERB`, `PRON_X__Case=Nom\|Number=Sing\|Person=1\|PronType=Prs`, `PRON__Abbr=Yes\|Case=Gen\|Number=Plur\|Person=2\|PronType=Prs`, `PRON__Abbr=Yes\|Case=Nom\|PronType=Int`, `PRON__Aspect=Imp\|Mood=Ind\|Voice=Pass`, `PRON__Aspect=Imp\|Mood=Pot\|Voice=Act`, `PRON__Aspect=Imp\|Mood=Pot\|Voice=Pass`, `PRON__Aspect=Perf\|Mood=Ind\|Voice=Act`, `PRON__Aspect=Perf\|Mood=Ind\|Voice=Pass`, `PRON__Case=Dat\|Clusivity=Ex\|Number=Plur\|Person=1\|PronType=Prs`, `PRON__Case=Dat\|Clusivity=In\|Number=Plur\|Person=1\|PronType=Prs`, `PRON__Case=Dat\|Number=Plur\|Person=2\|PronType=Prs`, `PRON__Case=Dat\|Number=Plur\|Person=3\|PronType=Prs`, `PRON__Case=Dat\|Number=Sing\|Person=1\|PronType=Prs`, `PRON__Case=Dat\|Number=Sing\|Person=2\|PronType=Prs`, `PRON__Case=Dat\|Number=Sing\|Person=3\|PronType=Prs`, `PRON__Case=Dat\|PronType=Int`, `PRON__Case=Gen\|Clusivity=Ex\|Number=Plur\|Person=1\|PronType=Prs`, `PRON__Case=Gen\|Clusivity=In\|Number=Plur\|Person=1\|PronType=Prs`, `PRON__Case=Gen\|Deixis=Med\|PronType=Dem`, `PRON__Case=Gen\|Deixis=Prox\|PronType=Dem`, `PRON__Case=Gen\|Deixis=Prox\|PronType=Dem\|Typo=Yes`, `PRON__Case=Gen\|Deixis=Remt\|PronType=Dem`, `PRON__Case=Gen\|Number=Plur`, `PRON__Case=Gen\|Number=Plur\|Person=2\|PronType=Prs`, `PRON__Case=Gen\|Number=Plur\|Person=2\|PronType=Prs\|Typo=Yes`, `PRON__Case=Gen\|Number=Plur\|Person=3\|PronType=Prs`, `PRON__Case=Gen\|Number=Plur\|Person=3\|PronType=Prs\|Typo=Yes`, `PRON__Case=Gen\|Number=Sing\|Person=1\|PronType=Prs`, `PRON__Case=Gen\|Number=Sing\|Person=1\|PronType=Prs\|Typo=Yes`, `PRON__Case=Gen\|Number=Sing\|Person=2\|PronType=Prs`, `PRON__Case=Gen\|Number=Sing\|Person=3\|PronType=Prs`, `PRON__Case=Gen\|Number=Sing\|Person=3\|PronType=Prs\|Typo=Yes`, `PRON__Case=Gen\|PronType=Ind`, `PRON__Case=Loc\|Deixis=Med\|PronType=Dem`, `PRON__Case=Loc\|Deixis=Med\|PronType=Dem\|Typo=Yes`, `PRON__Case=Loc\|Deixis=Prox\|PronType=Dem`, `PRON__Case=Loc\|Deixis=Remt\|PronType=Dem`, `PRON__Case=Loc\|PronType=Int`, `PRON__Case=Nom\|Clusivity=Ex\|Number=Dual\|Person=1\|PronType=Prs`, `PRON__Case=Nom\|Clusivity=Ex\|Number=Plur\|Person=1\|PronType=Prs`, `PRON__Case=Nom\|Clusivity=In\|Number=Dual\|Person=1\|PronType=Prs`, `PRON__Case=Nom\|Clusivity=In\|Number=Dual\|Person=1\|PronType=Prs\|Typo=Yes`, `PRON__Case=Nom\|Clusivity=In\|Number=Plur\|Person=1\|PronType=Prs`, `PRON__Case=Nom\|Deixis=Med\|PronType=Dem`, `PRON__Case=Nom\|Deixis=Prox\|PronType=Dem`, `PRON__Case=Nom\|Deixis=Remt\|PronType=Dem`, `PRON__Case=Nom\|Deixis=Remt\|PronType=Dem\|Typo=Yes`, `PRON__Case=Nom\|Number=Dual\|Person=2\|PronType=Prs`, `PRON__Case=Nom\|Number=Plur\|Person=1\|PronType=Prs`, `PRON__Case=Nom\|Number=Plur\|Person=2\|PronType=Prs`, `PRON__Case=Nom\|Number=Plur\|Person=2\|PronType=Prs\|Typo=Yes`, `PRON__Case=Nom\|Number=Plur\|Person=3\|PronType=Prs`, `PRON__Case=Nom\|Number=Plur\|Person=3\|PronType=Prs\|Typo=Yes`, `PRON__Case=Nom\|Number=Sing`, `PRON__Case=Nom\|Number=Sing\|Person=1\|PronType=Prs`, `PRON__Case=Nom\|Number=Sing\|Person=1\|PronType=Prs\|Typo=Yes`, `PRON__Case=Nom\|Number=Sing\|Person=2\|PronType=Prs`, `PRON__Case=Nom\|Number=Sing\|Person=3\|PronType=Prs`, `PRON__Case=Nom\|Number=Sing\|Person=3\|PronType=Prs\|Typo=Yes`, `PRON__Case=Nom\|PronType=Ind`, `PRON__Case=Nom\|PronType=Ind\|Typo=Yes`, `PRON__Case=Nom\|PronType=Int`, `PRON__Deixis=Med\|PronType=Dem`, `PRON__Deixis=Prox\|PronType=Dem`, `PRON__Deixis=Remt\|PronType=Dem`, `PRON__NumType=Card`, `PRON__Number=Plur\|PronType=Ind`, `PRON__Number=Plur\|PronType=Int`, `PRON__PronType=Dem`, `PRON__PronType=Ind`, `PRON__PronType=Int`, `PRON__PronType=Int\|Typo=Yes`, `PRON__PronType=Tot`, `PRON__Typo=Yes`, `PROPN`, `PROPN_ADP`, `PROPN_DET__Case=Nom\|PronType=Int`, `PROPN_PART`, `PROPN_PART__Case=Dat\|Number=Sing\|Person=3\|PronType=Prs`, `PROPN_PART__Case=Nom\|Deixis=Remt\|PronType=Dem`, `PROPN_PART__NumType=Ord`, `PROPN_PROPN`, `PROPN_PROPN__Case=Nom\|Number=Sing\|Person=1\|PronType=Prs`, `PROPN_X`, `PROPN_X__Aspect=Perf\|Mood=Ind\|Voice=Pass`, `PROPN__Abbr=Yes`, `PROPN__Aspect=Imp\|Mood=Ind\|Voice=Act`, `PROPN__Aspect=Imp\|Mood=Ind\|Voice=Pass`, `PROPN__Aspect=Imp\|Mood=Pot\|Voice=Act`, `PROPN__Aspect=Imp\|Mood=Pot\|Voice=Lfoc`, `PROPN__Aspect=Imp\|Mood=Pot\|Voice=Pass`, `PROPN__Aspect=Perf\|Mood=Ind\|Voice=Pass`, `PROPN__Case=Dat\|Number=Sing\|Person=3\|PronType=Prs`, `PROPN__Case=Gen`, `PROPN__Case=Gen\|Number=Plur\|Person=2\|PronType=Prs`, `PROPN__Case=Gen\|Number=Sing`, `PROPN__Case=Gen\|Number=Sing\|Person=2\|PronType=Prs`, `PROPN__Case=Gen\|Number=Sing\|Person=3\|PronType=Prs`, `PROPN__Case=Loc`, `PROPN__Case=Loc\|Deixis=Prox\|PronType=Dem`, `PROPN__Case=Loc\|Deixis=Remt\|PronType=Dem`, `PROPN__Case=Nom`, `PROPN__Case=Nom\|Deixis=Med\|PronType=Dem`, `PROPN__Case=Nom\|Deixis=Prox\|PronType=Dem`, `PROPN__Case=Nom\|Deixis=Remt\|PronType=Dem`, `PROPN__Case=Nom\|Number=Plur\|Person=1\|PronType=Prs`, `PROPN__Case=Nom\|Number=Plur\|Person=3\|PronType=Prs`, `PROPN__Case=Nom\|Number=Sing\|Person=1\|PronType=Prs`, `PROPN__Case=Nom\|Number=Sing\|Person=2\|PronType=Prs`, `PROPN__Case=Nom\|Number=Sing\|Person=3\|PronType=Prs`, `PROPN__Case=Nom\|PronType=Ind`, `PROPN__Degree=Sup`, `PROPN__Deixis=Prox\|PronType=Dem`, `PROPN__Deixis=Remt\|PronType=Dem`, `PROPN__NumType=Card`, `PROPN__NumType=Ord`, `PROPN__Number=Plur`, `PROPN__PartType=Int`, `PROPN__Polarity=Neg`, `PROPN__PronType=Int`, `PROPN__Typo=Yes`, `PUNCT`, `PUNCT__Case=Loc`, `SCONJ`, `SCONJ_ADP`, `SCONJ_ADV`, `SCONJ_ADV__Aspect=Imp\|Case=Loc\|Mood=Pot\|PronType=Int\|Voice=Pass`, `SCONJ_ADV__Polarity=Neg`, `SCONJ_ADV__Typo=Yes`, `SCONJ_CCONJ`, `SCONJ_CCONJ__Degree=Abs`, `SCONJ_PART`, `SCONJ_PART__Case=Gen\|Deixis=Remt\|PronType=Dem`, `SCONJ_PART__Case=Loc\|PronType=Int`, `SCONJ_PART__Deixis=Remt\|PronType=Dem`, `SCONJ__Aspect=Imp\|Mood=Ind\|Voice=Act`, `SCONJ__Aspect=Imp\|Mood=Pot\|Voice=Act`, `SCONJ__Aspect=Imp\|Mood=Pot\|Voice=Pass`, `SCONJ__Aspect=Perf\|Mood=Ind\|Voice=Pass`, `SCONJ__Case=Gen`, `SCONJ__Case=Gen\|Deixis=Remt\|PronType=Dem`, `SCONJ__Case=Gen\|Typo=Yes`, `SCONJ__Case=Loc\|Deixis=Prox\|PronType=Dem`, `SCONJ__Case=Loc\|PronType=Int`, `SCONJ__Case=Nom`, `SCONJ__Degree=Abs`, `SCONJ__PronType=Int`, `SCONJ__Typo=Yes`, `SYM`, `VERB`, `VERB_ADP__Aspect=Perf\|Case=Gen\|Mood=Ind\|Typo=Yes\|Voice=Cau`, `VERB_ADP__Aspect=Perf\|Case=Gen\|Mood=Ind\|Voice=Pass`, `VERB_ADP__Case=Gen`, `VERB_ADV__Aspect=Perf\|Mood=Ind\|Voice=Act`, `VERB_ADV__Aspect=Perf\|Mood=Ind\|Voice=Pass`, `VERB_CCONJ`, `VERB_CCONJ__Aspect=Imp\|Mood=Pot\|Voice=Act`, `VERB_DET`, `VERB_DET__Case=Nom`, `VERB_DET__Polarity=Neg`, `VERB_PART`, `VERB_PART_NOUN`, `VERB_PART_NOUN__Aspect=Imp\|Mood=Ind\|Voice=Cau`, `VERB_PART_VERB`, `VERB_PART_VERB__Polarity=Neg`, `VERB_PART__Aspect=Imp\|Mood=Ind\|Typo=Yes\|Voice=Act`, `VERB_PART__Aspect=Imp\|Mood=Ind\|Voice=Act`, `VERB_PART__Aspect=Imp\|Mood=Ind\|Voice=Bfoc`, `VERB_PART__Aspect=Imp\|Mood=Ind\|Voice=Cau`, `VERB_PART__Aspect=Imp\|Mood=Ind\|Voice=Lfoc`, `VERB_PART__Aspect=Imp\|Mood=Ind\|Voice=Pass`, `VERB_PART__Aspect=Imp\|Mood=Pot\|Typo=Yes\|Voice=Lfoc`, `VERB_PART__Aspect=Imp\|Mood=Pot\|Typo=Yes\|Voice=Pass`, `VERB_PART__Aspect=Imp\|Mood=Pot\|Voice=Act`, `VERB_PART__Aspect=Imp\|Mood=Pot\|Voice=Cau`, `VERB_PART__Aspect=Imp\|Mood=Pot\|Voice=Lfoc`, `VERB_PART__Aspect=Imp\|Mood=Pot\|Voice=Pass`, `VERB_PART__Aspect=Perf\|Mood=Ind\|Voice=Act`, `VERB_PART__Aspect=Perf\|Mood=Ind\|Voice=Bfoc`, `VERB_PART__Aspect=Perf\|Mood=Ind\|Voice=Cau`, `VERB_PART__Aspect=Perf\|Mood=Ind\|Voice=Lfoc`, `VERB_PART__Aspect=Perf\|Mood=Ind\|Voice=Pass`, `VERB_PART__Aspect=Perf\|Mood=Pot\|Voice=Act`, `VERB_PART__Aspect=Perf\|Mood=Pot\|Voice=Pass`, `VERB_PART__Case=Dat\|Clusivity=Ex\|Number=Plur\|Person=1\|PronType=Prs`, `VERB_PART__Case=Nom\|Deixis=Prox\|PronType=Dem`, `VERB_PART__Degree=Sup`, `VERB_PART__Polarity=Neg`, `VERB_PART__Typo=Yes`, `VERB_PRON`, `VERB_PRON__Case=Gen\|Number=Sing\|Person=1\|PronType=Prs`, `VERB_X`, `VERB_X__Aspect=Imp\|Mood=Ind\|Voice=Pass`, `VERB_X__Aspect=Imp\|Mood=Pot\|Voice=Act`, `VERB_X__Aspect=Imp\|Mood=Pot\|Voice=Pass`, `VERB_X__Aspect=Perf\|Mood=Ind\|Voice=Act`, `VERB_X__Aspect=Perf\|Mood=Ind\|Voice=Pass`, `VERB_X__Typo=Yes`, `VERB__Aspect=Imp\|Mood=Ind\|Number=Plur\|Voice=Act`, `VERB__Aspect=Imp\|Mood=Ind\|Typo=Yes\|Voice=Lfoc`, `VERB__Aspect=Imp\|Mood=Ind\|Typo=Yes\|Voice=Pass`, `VERB__Aspect=Imp\|Mood=Ind\|Voice=Act`, `VERB__Aspect=Imp\|Mood=Ind\|Voice=Bfoc`, `VERB__Aspect=Imp\|Mood=Ind\|Voice=Cau`, `VERB__Aspect=Imp\|Mood=Ind\|Voice=Lfoc`, `VERB__Aspect=Imp\|Mood=Ind\|Voice=Pass`, `VERB__Aspect=Imp\|Mood=Pot`, `VERB__Aspect=Imp\|Mood=Pot\|Number=Plur\|Voice=Pass`, `VERB__Aspect=Imp\|Mood=Pot\|Typo=Yes\|Voice=Act`, `VERB__Aspect=Imp\|Mood=Pot\|Typo=Yes\|Voice=Lfoc`, `VERB__Aspect=Imp\|Mood=Pot\|Typo=Yes\|Voice=Pass`, `VERB__Aspect=Imp\|Mood=Pot\|Voice=Act`, `VERB__Aspect=Imp\|Mood=Pot\|Voice=Bfoc`, `VERB__Aspect=Imp\|Mood=Pot\|Voice=Cau`, `VERB__Aspect=Imp\|Mood=Pot\|Voice=Lfoc`, `VERB__Aspect=Imp\|Mood=Pot\|Voice=Pass`, `VERB__Aspect=Perf\|Mood=Ind`, `VERB__Aspect=Perf\|Mood=Ind\|NumType=Ord\|Voice=Act`, `VERB__Aspect=Perf\|Mood=Ind\|Number=Plur\|Voice=Act`, `VERB__Aspect=Perf\|Mood=Ind\|Typo=Yes\|Voice=Act`, `VERB__Aspect=Perf\|Mood=Ind\|Typo=Yes\|Voice=Bfoc`, `VERB__Aspect=Perf\|Mood=Ind\|Typo=Yes\|Voice=Pass`, `VERB__Aspect=Perf\|Mood=Ind\|Voice=Act`, `VERB__Aspect=Perf\|Mood=Ind\|Voice=Bfoc`, `VERB__Aspect=Perf\|Mood=Ind\|Voice=Cau`, `VERB__Aspect=Perf\|Mood=Ind\|Voice=Lfoc`, `VERB__Aspect=Perf\|Mood=Ind\|Voice=Pass`, `VERB__Aspect=Perf\|Mood=Pot\|Typo=Yes\|Voice=Pass`, `VERB__Aspect=Perf\|Mood=Pot\|Voice=Act`, `VERB__Aspect=Perf\|Mood=Pot\|Voice=Bfoc`, `VERB__Aspect=Perf\|Mood=Pot\|Voice=Cau`, `VERB__Aspect=Perf\|Mood=Pot\|Voice=Lfoc`, `VERB__Aspect=Perf\|Mood=Pot\|Voice=Pass`, `VERB__Case=Gen\|Number=Sing`, `VERB__Case=Loc`, `VERB__Case=Loc\|Deixis=Remt\|PronType=Dem`, `VERB__Case=Loc\|PronType=Int`, `VERB__Case=Nom\|Clusivity=In\|Number=Plur\|Person=1\|PronType=Prs`, `VERB__Case=Nom\|Deixis=Med\|PronType=Dem`, `VERB__Case=Nom\|Deixis=Prox\|PronType=Dem`, `VERB__Case=Nom\|Number=Sing\|Person=2\|PronType=Prs`, `VERB__Degree=Abs`, `VERB__Degree=Cmp`, `VERB__Degree=Sup`, `VERB__Deixis=Med\|PronType=Dem`, `VERB__Deixis=Prox\|PronType=Dem`, `VERB__Deixis=Remt\|PronType=Dem`, `VERB__NumType=Card`, `VERB__NumType=Ord`, `VERB__Number=Plur`, `VERB__Polarity=Neg`, `VERB__Polarity=Neg\|Typo=Yes`, `VERB__PronType=Int`, `VERB__Typo=Yes`, `X`, `X__Aspect=Perf\|Mood=Ind`, `X__Aspect=Perf\|Mood=Ind\|Voice=Act`, `fixed__Case=Loc`, `nsubj_PART__Case=Nom\|Number=Sing\|Person=3\|PronType=Prs` |
|
85 |
+
| **`parser`** | `ROOT`, `acl`, `acl:relcl`, `advcl`, `advmod`, `amod`, `appos`, `case`, `cc`, `ccomp`, `compound`, `compound:redup`, `conj`, `dep`, `det`, `discourse`, `dislocated`, `fixed`, `flat`, `goeswith`, `list`, `mark`, `nmod`, `nmod:poss`, `nsubj`, `nummod`, `obj`, `obj:agent`, `obl`, `orphan`, `parataxis`, `punct`, `vocative`, `xcomp` |
|
86 |
+
|
87 |
+
</details>
|
88 |
+
|
89 |
+
### Accuracy
|
90 |
+
|
91 |
+
| Type | Score |
|
92 |
+
| --- | --- |
|
93 |
+
| `LEMMA_ACC` | 89.89 |
|
94 |
+
| `POS_ACC` | 95.18 |
|
95 |
+
| `MORPH_ACC` | 95.45 |
|
96 |
+
| `TAG_ACC` | 91.05 |
|
97 |
+
| `DEP_UAS` | 83.98 |
|
98 |
+
| `DEP_LAS` | 77.61 |
|
99 |
+
| `SENTS_P` | 99.81 |
|
100 |
+
| `SENTS_R` | 99.74 |
|
101 |
+
| `SENTS_F` | 99.78 |
|
102 |
+
| `TOK2VEC_LOSS` | 3819947.59 |
|
103 |
+
| `TRAINABLE_LEMMATIZER_LOSS` | 1241780.15 |
|
104 |
+
| `MORPHOLOGIZER_LOSS` | 1682381.91 |
|
105 |
+
| `TAGGER_LOSS` | 1836999.42 |
|
106 |
+
| `PARSER_LOSS` | 4587096.65 |
|
config.cfg
ADDED
@@ -0,0 +1,244 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[paths]
|
2 |
+
train = "corpus/tl_newscrawl-ud-train.spacy"
|
3 |
+
dev = "corpus/tl_newscrawl-ud-dev.spacy"
|
4 |
+
vectors = "vectors/floret-tl"
|
5 |
+
init_tok2vec = null
|
6 |
+
raw_text = null
|
7 |
+
|
8 |
+
[system]
|
9 |
+
gpu_allocator = null
|
10 |
+
seed = 0
|
11 |
+
|
12 |
+
[nlp]
|
13 |
+
lang = "tl"
|
14 |
+
pipeline = ["tok2vec","trainable_lemmatizer","morphologizer","tagger","parser"]
|
15 |
+
batch_size = 1000
|
16 |
+
disabled = []
|
17 |
+
before_creation = null
|
18 |
+
after_creation = null
|
19 |
+
after_pipeline_creation = null
|
20 |
+
tokenizer = {"@tokenizers":"spacy.Tokenizer.v1"}
|
21 |
+
vectors = {"@vectors":"spacy.Vectors.v1"}
|
22 |
+
|
23 |
+
[components]
|
24 |
+
|
25 |
+
[components.morphologizer]
|
26 |
+
factory = "morphologizer"
|
27 |
+
extend = false
|
28 |
+
label_smoothing = 0.05
|
29 |
+
overwrite = true
|
30 |
+
scorer = {"@scorers":"spacy.morphologizer_scorer.v1"}
|
31 |
+
|
32 |
+
[components.morphologizer.model]
|
33 |
+
@architectures = "spacy.Tagger.v2"
|
34 |
+
nO = null
|
35 |
+
normalize = false
|
36 |
+
|
37 |
+
[components.morphologizer.model.tok2vec]
|
38 |
+
@architectures = "spacy.Tok2VecListener.v1"
|
39 |
+
width = ${components.tok2vec.model.encode.width}
|
40 |
+
upstream = "*"
|
41 |
+
|
42 |
+
[components.parser]
|
43 |
+
factory = "parser"
|
44 |
+
learn_tokens = false
|
45 |
+
min_action_freq = 30
|
46 |
+
moves = null
|
47 |
+
scorer = {"@scorers":"spacy.parser_scorer.v1"}
|
48 |
+
update_with_oracle_cut_size = 100
|
49 |
+
|
50 |
+
[components.parser.model]
|
51 |
+
@architectures = "spacy.TransitionBasedParser.v2"
|
52 |
+
state_type = "parser"
|
53 |
+
extra_state_tokens = false
|
54 |
+
hidden_width = 128
|
55 |
+
maxout_pieces = 3
|
56 |
+
use_upper = true
|
57 |
+
nO = null
|
58 |
+
|
59 |
+
[components.parser.model.tok2vec]
|
60 |
+
@architectures = "spacy.Tok2VecListener.v1"
|
61 |
+
width = ${components.tok2vec.model.encode.width}
|
62 |
+
upstream = "*"
|
63 |
+
|
64 |
+
[components.tagger]
|
65 |
+
factory = "tagger"
|
66 |
+
label_smoothing = 0.05
|
67 |
+
neg_prefix = "!"
|
68 |
+
overwrite = false
|
69 |
+
scorer = {"@scorers":"spacy.tagger_scorer.v1"}
|
70 |
+
|
71 |
+
[components.tagger.model]
|
72 |
+
@architectures = "spacy.Tagger.v2"
|
73 |
+
nO = null
|
74 |
+
normalize = false
|
75 |
+
|
76 |
+
[components.tagger.model.tok2vec]
|
77 |
+
@architectures = "spacy.Tok2VecListener.v1"
|
78 |
+
width = ${components.tok2vec.model.encode.width}
|
79 |
+
upstream = "*"
|
80 |
+
|
81 |
+
[components.tok2vec]
|
82 |
+
factory = "tok2vec"
|
83 |
+
|
84 |
+
[components.tok2vec.model]
|
85 |
+
@architectures = "spacy.Tok2Vec.v2"
|
86 |
+
|
87 |
+
[components.tok2vec.model.embed]
|
88 |
+
@architectures = "spacy.MultiHashEmbed.v2"
|
89 |
+
width = ${components.tok2vec.model.encode.width}
|
90 |
+
attrs = ["NORM","PREFIX","SUFFIX","SHAPE"]
|
91 |
+
rows = [5000,1000,2500,2500]
|
92 |
+
include_static_vectors = true
|
93 |
+
|
94 |
+
[components.tok2vec.model.encode]
|
95 |
+
@architectures = "spacy.MaxoutWindowEncoder.v2"
|
96 |
+
width = 256
|
97 |
+
depth = 8
|
98 |
+
window_size = 1
|
99 |
+
maxout_pieces = 3
|
100 |
+
|
101 |
+
[components.trainable_lemmatizer]
|
102 |
+
factory = "trainable_lemmatizer"
|
103 |
+
backoff = "orth"
|
104 |
+
min_tree_freq = 3
|
105 |
+
overwrite = false
|
106 |
+
scorer = {"@scorers":"spacy.lemmatizer_scorer.v1"}
|
107 |
+
top_k = 1
|
108 |
+
|
109 |
+
[components.trainable_lemmatizer.model]
|
110 |
+
@architectures = "spacy.Tagger.v2"
|
111 |
+
nO = null
|
112 |
+
normalize = false
|
113 |
+
|
114 |
+
[components.trainable_lemmatizer.model.tok2vec]
|
115 |
+
@architectures = "spacy.Tok2VecListener.v1"
|
116 |
+
width = ${components.tok2vec.model.encode.width}
|
117 |
+
upstream = "*"
|
118 |
+
|
119 |
+
[corpora]
|
120 |
+
|
121 |
+
[corpora.dev]
|
122 |
+
@readers = "spacy.Corpus.v1"
|
123 |
+
path = ${paths.dev}
|
124 |
+
max_length = 0
|
125 |
+
gold_preproc = false
|
126 |
+
limit = 0
|
127 |
+
augmenter = null
|
128 |
+
|
129 |
+
[corpora.pretrain]
|
130 |
+
@readers = "spacy.JsonlCorpus.v1"
|
131 |
+
path = ${paths.raw_text}
|
132 |
+
min_length = 5
|
133 |
+
max_length = 500
|
134 |
+
limit = 0
|
135 |
+
|
136 |
+
[corpora.train]
|
137 |
+
@readers = "spacy.Corpus.v1"
|
138 |
+
path = ${paths.train}
|
139 |
+
max_length = 0
|
140 |
+
gold_preproc = false
|
141 |
+
limit = 0
|
142 |
+
augmenter = null
|
143 |
+
|
144 |
+
[training]
|
145 |
+
dev_corpus = "corpora.dev"
|
146 |
+
train_corpus = "corpora.train"
|
147 |
+
seed = ${system.seed}
|
148 |
+
gpu_allocator = ${system.gpu_allocator}
|
149 |
+
dropout = 0.1
|
150 |
+
accumulate_gradient = 1
|
151 |
+
patience = 1600
|
152 |
+
max_epochs = 0
|
153 |
+
max_steps = 20000
|
154 |
+
eval_frequency = 200
|
155 |
+
frozen_components = []
|
156 |
+
annotating_components = []
|
157 |
+
before_to_disk = null
|
158 |
+
before_update = null
|
159 |
+
|
160 |
+
[training.batcher]
|
161 |
+
@batchers = "spacy.batch_by_words.v1"
|
162 |
+
discard_oversize = false
|
163 |
+
tolerance = 0.2
|
164 |
+
get_length = null
|
165 |
+
|
166 |
+
[training.batcher.size]
|
167 |
+
@schedules = "compounding.v1"
|
168 |
+
start = 100
|
169 |
+
stop = 1000
|
170 |
+
compound = 1.001
|
171 |
+
t = 0.0
|
172 |
+
|
173 |
+
[training.logger]
|
174 |
+
@loggers = "spacy.ConsoleLogger.v1"
|
175 |
+
progress_bar = false
|
176 |
+
|
177 |
+
[training.optimizer]
|
178 |
+
@optimizers = "Adam.v1"
|
179 |
+
beta1 = 0.9
|
180 |
+
beta2 = 0.999
|
181 |
+
L2_is_weight_decay = true
|
182 |
+
L2 = 0.01
|
183 |
+
grad_clip = 1.0
|
184 |
+
use_averages = false
|
185 |
+
eps = 0.00000001
|
186 |
+
learn_rate = 0.001
|
187 |
+
|
188 |
+
[training.score_weights]
|
189 |
+
lemma_acc = 0.26
|
190 |
+
pos_acc = 0.12
|
191 |
+
morph_acc = 0.12
|
192 |
+
morph_per_feat = null
|
193 |
+
tag_acc = 0.26
|
194 |
+
dep_uas = 0.12
|
195 |
+
dep_las = 0.12
|
196 |
+
dep_las_per_type = null
|
197 |
+
sents_p = null
|
198 |
+
sents_r = null
|
199 |
+
sents_f = 0.0
|
200 |
+
|
201 |
+
[pretraining]
|
202 |
+
max_epochs = 1000
|
203 |
+
dropout = 0.2
|
204 |
+
n_save_every = null
|
205 |
+
n_save_epoch = null
|
206 |
+
component = "tok2vec"
|
207 |
+
layer = ""
|
208 |
+
corpus = "corpora.pretrain"
|
209 |
+
|
210 |
+
[pretraining.batcher]
|
211 |
+
@batchers = "spacy.batch_by_words.v1"
|
212 |
+
size = 3000
|
213 |
+
discard_oversize = false
|
214 |
+
tolerance = 0.2
|
215 |
+
get_length = null
|
216 |
+
|
217 |
+
[pretraining.objective]
|
218 |
+
@architectures = "spacy.PretrainCharacters.v1"
|
219 |
+
maxout_pieces = 3
|
220 |
+
hidden_size = 300
|
221 |
+
n_characters = 4
|
222 |
+
|
223 |
+
[pretraining.optimizer]
|
224 |
+
@optimizers = "Adam.v1"
|
225 |
+
beta1 = 0.9
|
226 |
+
beta2 = 0.999
|
227 |
+
L2_is_weight_decay = true
|
228 |
+
L2 = 0.01
|
229 |
+
grad_clip = 1.0
|
230 |
+
use_averages = true
|
231 |
+
eps = 0.00000001
|
232 |
+
learn_rate = 0.001
|
233 |
+
|
234 |
+
[initialize]
|
235 |
+
vectors = ${paths.vectors}
|
236 |
+
init_tok2vec = ${paths.init_tok2vec}
|
237 |
+
vocab_data = null
|
238 |
+
lookups = null
|
239 |
+
before_init = null
|
240 |
+
after_init = null
|
241 |
+
|
242 |
+
[initialize.components]
|
243 |
+
|
244 |
+
[initialize.tokenizer]
|
meta.json
ADDED
@@ -0,0 +1,1436 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"lang":"tl",
|
3 |
+
"name":"hash_transition",
|
4 |
+
"version":"0.0.0",
|
5 |
+
"description":"Parsers for UD-NewsCrawl",
|
6 |
+
"author":"Lester James V. Miranda",
|
7 |
+
"email":"[email protected]",
|
8 |
+
"url":"https://ljvmiranda921.github.io",
|
9 |
+
"license":"MIT",
|
10 |
+
"spacy_version":">=3.8.0,<3.9.0",
|
11 |
+
"spacy_git_version":"b427597",
|
12 |
+
"vectors":{
|
13 |
+
"width":200,
|
14 |
+
"vectors":200000,
|
15 |
+
"keys":-1,
|
16 |
+
"name":"tl_pipeline.vectors"
|
17 |
+
},
|
18 |
+
"labels":{
|
19 |
+
"tok2vec":[
|
20 |
+
|
21 |
+
],
|
22 |
+
"morphologizer":[
|
23 |
+
"POS=PART",
|
24 |
+
"POS=PUNCT",
|
25 |
+
"POS=ADV|Polarity=Neg",
|
26 |
+
"POS=PART|PartType=Int",
|
27 |
+
"Case=Nom|Number=Sing|POS=PRON|Person=3|PronType=Prs",
|
28 |
+
"POS=ADV",
|
29 |
+
"POS=ADJ",
|
30 |
+
"Case=Nom|POS=DET",
|
31 |
+
"POS=NOUN",
|
32 |
+
"Case=Gen|Number=Plur|POS=PRON|Person=3|PronType=Prs",
|
33 |
+
"Case=Nom|Number=Sing|POS=PRON|Person=1|PronType=Prs",
|
34 |
+
"Aspect=Imp|Mood=Ind|POS=VERB|Voice=Pass",
|
35 |
+
"POS=PROPN",
|
36 |
+
"POS=VERB",
|
37 |
+
"POS=NUM",
|
38 |
+
"POS=CCONJ",
|
39 |
+
"Case=Nom|Number=Plur|POS=PRON|Person=3|PronType=Prs",
|
40 |
+
"Case=Gen|POS=ADP",
|
41 |
+
"Case=Nom|Number=Sing|POS=PRON|Person=2|PronType=Prs",
|
42 |
+
"Case=Loc|POS=ADP",
|
43 |
+
"Case=Dat|Number=Sing|POS=PRON|Person=2|PronType=Prs",
|
44 |
+
"Case=Gen|Clusivity=Ex|Number=Plur|POS=PRON|Person=1|PronType=Prs",
|
45 |
+
"POS=SCONJ",
|
46 |
+
"POS=ADV|PronType=Int",
|
47 |
+
"Case=Nom|Clusivity=Ex|Number=Plur|POS=PRON|Person=1|PronType=Prs",
|
48 |
+
"Aspect=Perf|Mood=Ind|POS=VERB|Voice=Act",
|
49 |
+
"POS=PART|Polite=Form",
|
50 |
+
"Aspect=Perf|Mood=Pot|POS=VERB|Voice=Lfoc",
|
51 |
+
"Case=Gen|Number=Plur|POS=PRON|Person=2|PronType=Prs",
|
52 |
+
"Case=Gen|Number=Sing|POS=PRON|Person=1|PronType=Prs",
|
53 |
+
"POS=VERB|Polarity=Neg",
|
54 |
+
"Aspect=Perf|Mood=Ind|POS=VERB|Voice=Pass",
|
55 |
+
"POS=DET",
|
56 |
+
"NumType=Card|POS=NUM",
|
57 |
+
"Case=Dat|Number=Sing|POS=ADP",
|
58 |
+
"Aspect=Imp|Mood=Pot|POS=VERB|Voice=Act",
|
59 |
+
"Number=Plur|POS=DET",
|
60 |
+
"POS=PRON|PronType=Int",
|
61 |
+
"Aspect=Imp|Mood=Pot|POS=VERB|Voice=Pass",
|
62 |
+
"Case=Nom|Number=Plur|POS=PRON|Person=2|PronType=Prs",
|
63 |
+
"Aspect=Imp|Mood=Pot|POS=VERB|Voice=Lfoc",
|
64 |
+
"Case=Loc|Deixis=Prox|POS=PRON|PronType=Dem",
|
65 |
+
"Case=Nom|Number=Sing|POS=DET",
|
66 |
+
"Aspect=Imp|Mood=Ind|POS=VERB|Voice=Act",
|
67 |
+
"Case=Dat|Clusivity=In|Number=Plur|POS=PRON|Person=1|PronType=Prs",
|
68 |
+
"Case=Gen|Number=Sing|POS=ADP",
|
69 |
+
"Aspect=Perf|Mood=Pot|POS=VERB|Voice=Pass",
|
70 |
+
"Case=Nom|Deixis=Prox|POS=PRON|PronType=Dem",
|
71 |
+
"Case=Dat|Number=Sing|POS=PRON|Person=3|PronType=Prs",
|
72 |
+
"POS=PRON",
|
73 |
+
"Case=Nom|Deixis=Remt|POS=PRON|PronType=Dem",
|
74 |
+
"Case=Gen|Number=Sing|POS=PRON|Person=3|PronType=Prs",
|
75 |
+
"Case=Gen|Number=Sing|POS=PRON|Person=2|PronType=Prs",
|
76 |
+
"POS=ADP",
|
77 |
+
"Case=Dat|Number=Sing|POS=PRON|Person=1|PronType=Prs",
|
78 |
+
"Case=Gen|Clusivity=In|Number=Plur|POS=PRON|Person=1|PronType=Prs",
|
79 |
+
"Case=Loc|POS=ADV|PronType=Int",
|
80 |
+
"Case=Loc|POS=PROPN",
|
81 |
+
"POS=SYM",
|
82 |
+
"POS=PROPN|PronType=Int",
|
83 |
+
"POS=PROPN|PartType=Int",
|
84 |
+
"Case=Gen|Deixis=Prox|POS=PRON|PronType=Dem",
|
85 |
+
"NumType=Ord|POS=ADJ",
|
86 |
+
"Aspect=Perf|Mood=Pot|POS=VERB|Voice=Act",
|
87 |
+
"Aspect=Perf|Mood=Ind|POS=NOUN|Voice=Pass",
|
88 |
+
"Aspect=Perf|Mood=Ind|POS=VERB|Typo=Yes|Voice=Act",
|
89 |
+
"Case=Gen|Number=Plur|POS=ADP",
|
90 |
+
"Aspect=Perf|Mood=Ind|POS=VERB|Voice=Bfoc",
|
91 |
+
"Case=Dat|Number=Plur|POS=PRON|Person=3|PronType=Prs",
|
92 |
+
"Case=Dat|Clusivity=Ex|Number=Plur|POS=PRON|Person=1|PronType=Prs",
|
93 |
+
"Case=Nom|POS=PRON|PronType=Int",
|
94 |
+
"Aspect=Perf|Mood=Ind|POS=VERB|Voice=Lfoc",
|
95 |
+
"Case=Loc|Deixis=Remt|POS=PRON|PronType=Dem",
|
96 |
+
"Case=Gen|POS=PROPN",
|
97 |
+
"Case=Nom|Number=Plur|POS=DET",
|
98 |
+
"Aspect=Perf|Mood=Ind|POS=ADJ|Voice=Pass",
|
99 |
+
"NumType=Frac|POS=NUM",
|
100 |
+
"Case=Nom|Clusivity=In|Number=Dual|POS=PRON|Person=1|PronType=Prs",
|
101 |
+
"POS=INTJ",
|
102 |
+
"Case=Gen|POS=ADP|Typo=Yes",
|
103 |
+
"Aspect=Perf|Mood=Ind|POS=PRON|Voice=Act",
|
104 |
+
"Case=Nom|Deixis=Med|POS=PRON|PronType=Dem",
|
105 |
+
"Aspect=Perf|Mood=Ind|POS=VERB|Voice=Cau",
|
106 |
+
"Aspect=Imp|Mood=Ind|POS=VERB|Voice=Bfoc",
|
107 |
+
"Aspect=Imp|Mood=Pot|POS=VERB|Voice=Bfoc",
|
108 |
+
"Degree=Sup|POS=ADJ",
|
109 |
+
"Case=Loc|POS=NOUN|Typo=Yes",
|
110 |
+
"Case=Nom|Number=Sing|POS=DET|Typo=Yes",
|
111 |
+
"Aspect=Imp|Mood=Ind|POS=VERB|Voice=Lfoc",
|
112 |
+
"Case=Gen|Number=Sing|POS=PROPN",
|
113 |
+
"Case=Dat|Number=Plur|POS=PRON|Person=2|PronType=Prs",
|
114 |
+
"Case=Loc|Deixis=Med|POS=PRON|PronType=Dem",
|
115 |
+
"Case=Dat|Number=Plur|POS=ADP",
|
116 |
+
"Case=Nom|Clusivity=In|Number=Plur|POS=PRON|Person=1|PronType=Prs",
|
117 |
+
"Aspect=Imp|Mood=Pot|POS=VERB|Voice=Cau",
|
118 |
+
"NumType=Ord|POS=PROPN",
|
119 |
+
"POS=NOUN|Typo=Yes",
|
120 |
+
"POS=PROPN|Typo=Yes",
|
121 |
+
"Aspect=Imp|Mood=Ind|POS=VERB|Voice=Cau",
|
122 |
+
"Number=Plur|POS=PROPN",
|
123 |
+
"Aspect=Perf|Mood=Ind|POS=NOUN|Voice=Act",
|
124 |
+
"Case=Loc|Deixis=Prox|POS=SCONJ|PronType=Dem",
|
125 |
+
"Case=Loc|Deixis=Prox|POS=NOUN|PronType=Dem",
|
126 |
+
"NumType=Card|POS=ADV",
|
127 |
+
"Case=Nom|Deixis=Remt|POS=PROPN|PronType=Dem",
|
128 |
+
"Aspect=Imp|Mood=Pot|POS=NOUN|Voice=Act",
|
129 |
+
"Aspect=Imp|Mood=Pot|POS=ADV|Voice=Pass",
|
130 |
+
"Case=Dat|Clusivity=Ex|Number=Plur|POS=ADJ|Person=1|PronType=Prs",
|
131 |
+
"NumType=Card|POS=PROPN",
|
132 |
+
"Case=Dat|Number=Sing|POS=NOUN|Person=1|PronType=Prs",
|
133 |
+
"Aspect=Imp|Mood=Pot|POS=PROPN|Voice=Pass",
|
134 |
+
"Deixis=Remt|POS=PROPN|PronType=Dem",
|
135 |
+
"Deixis=Remt|POS=PRON|PronType=Dem",
|
136 |
+
"Aspect=Perf|Mood=Ind|POS=PROPN|Voice=Pass",
|
137 |
+
"Aspect=Imp|Mood=Pot|POS=NOUN|Voice=Pass",
|
138 |
+
"POS=NOUN|PronType=Int",
|
139 |
+
"Case=Nom|POS=PRON|PronType=Ind",
|
140 |
+
"Aspect=Perf|Mood=Ind|POS=NOUN|Voice=Lfoc",
|
141 |
+
"Case=Gen|Number=Sing|POS=DET",
|
142 |
+
"Case=Gen|POS=SCONJ|Typo=Yes",
|
143 |
+
"Case=Gen|POS=PART",
|
144 |
+
"POS=VERB|Typo=Yes",
|
145 |
+
"Case=Gen|Number=Plur|POS=PRON|Person=2|PronType=Prs|Typo=Yes",
|
146 |
+
"POS=PART|Typo=Yes",
|
147 |
+
"Aspect=Perf|Mood=Ind|POS=PRON|Voice=Pass",
|
148 |
+
"NumType=Card|POS=NOUN",
|
149 |
+
"POS=SCONJ|Typo=Yes",
|
150 |
+
"Abbr=Yes|POS=ADJ",
|
151 |
+
"POS=ADV|Typo=Yes",
|
152 |
+
"Case=Gen|Deixis=Remt|POS=ADV|PronType=Dem",
|
153 |
+
"Number=Plur|POS=VERB",
|
154 |
+
"Aspect=Imp|Mood=Pot|Number=Plur|POS=VERB|Voice=Pass",
|
155 |
+
"POS=NUM|PronType=Int",
|
156 |
+
"POS=X",
|
157 |
+
"Abbr=Yes|POS=PROPN",
|
158 |
+
"Degree=Equ|POS=ADJ",
|
159 |
+
"Case=Dat|Number=Sing|POS=ADJ|Person=2|PronType=Prs",
|
160 |
+
"POS=CCONJ|Typo=Yes",
|
161 |
+
"Case=Gen|Number=Sing|POS=ADP|Typo=Yes",
|
162 |
+
"POS=ADJ|Typo=Yes",
|
163 |
+
"POS=PRON|PronType=Dem",
|
164 |
+
"NumType=Ord|POS=NUM",
|
165 |
+
"Case=Dat|Clusivity=Ex|Number=Plur|POS=VERB|Person=1|PronType=Prs",
|
166 |
+
"Case=Nom|Number=Dual|POS=PRON|Person=2|PronType=Prs",
|
167 |
+
"Case=Loc|Deixis=Prox|POS=ADV|PronType=Dem",
|
168 |
+
"Aspect=Perf|Mood=Ind|POS=VERB",
|
169 |
+
"POS=DET|Typo=Yes",
|
170 |
+
"Case=Loc|Deixis=Remt|POS=ADV|PronType=Dem",
|
171 |
+
"Aspect=Perf|Mood=Ind|POS=X",
|
172 |
+
"NumType=Ord|POS=ADV",
|
173 |
+
"Aspect=Imp|Mood=Pot|POS=SCONJ|Voice=Act",
|
174 |
+
"Case=Loc|POS=NOUN",
|
175 |
+
"Degree=Sup|POS=ADV",
|
176 |
+
"Case=Gen|Number=Sing|POS=PRON|Person=1|PronType=Prs|Typo=Yes",
|
177 |
+
"Case=Gen|POS=PART|Typo=Yes",
|
178 |
+
"Aspect=Perf|Mood=Ind|POS=VERB|Typo=Yes|Voice=Pass",
|
179 |
+
"Aspect=Imp|Mood=Pot|POS=VERB",
|
180 |
+
"Case=Dat|Number=Sing|POS=NOUN|Person=3|PronType=Prs",
|
181 |
+
"Number=Plur|POS=NOUN",
|
182 |
+
"Case=Dat|Number=Sing|POS=NOUN",
|
183 |
+
"Aspect=Imp|Mood=Pot|POS=NOUN|Voice=Bfoc",
|
184 |
+
"Case=Gen|Deixis=Remt|POS=PRON|PronType=Dem",
|
185 |
+
"Deixis=Med|POS=PRON|PronType=Dem",
|
186 |
+
"POS=PRON|PronType=Tot",
|
187 |
+
"Case=Nom|Number=Sing|POS=NOUN|Person=3|PronType=Prs",
|
188 |
+
"Aspect=Imp|Mood=Pot|POS=NOUN|Voice=Lfoc",
|
189 |
+
"NumType=Frac|POS=NOUN",
|
190 |
+
"NumType=Card|POS=ADJ",
|
191 |
+
"Case=Gen|Number=Sing|POS=PROPN|Person=2|PronType=Prs",
|
192 |
+
"Case=Nom|Number=Sing|POS=PROPN|Person=1|PronType=Prs",
|
193 |
+
"Case=Nom|POS=PROPN",
|
194 |
+
"Case=Gen|Number=Sing|POS=VERB",
|
195 |
+
"Deixis=Prox|POS=PRON|PronType=Dem",
|
196 |
+
"Aspect=Imp|Mood=Pot|POS=PROPN|Voice=Lfoc",
|
197 |
+
"Case=Nom|Deixis=Remt|POS=NOUN|PronType=Dem",
|
198 |
+
"Case=Dat|POS=ADP",
|
199 |
+
"Case=Loc|POS=VERB|PronType=Int",
|
200 |
+
"POS=PRON|Person=1",
|
201 |
+
"Aspect=Perf|Mood=Ind|POS=SCONJ|Voice=Pass",
|
202 |
+
"Degree=Sup|POS=VERB",
|
203 |
+
"Aspect=Imp|Mood=Ind|POS=SCONJ|Voice=Act",
|
204 |
+
"Case=Gen|Number=Plur|POS=NOUN|Person=2|PronType=Prs",
|
205 |
+
"Aspect=Imp|Mood=Ind|POS=NOUN|Voice=Act",
|
206 |
+
"Case=Gen|Number=Sing|POS=ADV|Person=2|PronType=Prs",
|
207 |
+
"Case=Loc|POS=NOUN|PronType=Int",
|
208 |
+
"Aspect=Imp|Mood=Pot|POS=ADP|Voice=Act",
|
209 |
+
"Case=Gen|Deixis=Prox|POS=ADV|PronType=Dem",
|
210 |
+
"Aspect=Imp|Mood=Ind|POS=ADV|Voice=Pass",
|
211 |
+
"POS=SCONJ|PronType=Int",
|
212 |
+
"Degree=Abs|POS=ADJ",
|
213 |
+
"Case=Gen|Clusivity=In|Number=Plur|POS=ADP|Person=1|PronType=Prs",
|
214 |
+
"Aspect=Imp|Mood=Pot|POS=ADJ|Voice=Pass",
|
215 |
+
"Aspect=Perf|Mood=Ind|POS=ADV|Voice=Act",
|
216 |
+
"NumType=Card|POS=NUM|PronType=Int",
|
217 |
+
"Aspect=Perf|Mood=Pot|POS=VERB|Voice=Cau",
|
218 |
+
"Aspect=Perf|Mood=Pot|POS=VERB|Voice=Bfoc",
|
219 |
+
"Aspect=Perf|Mood=Pot|POS=NOUN|Voice=Pass",
|
220 |
+
"Aspect=Imp|Mood=Pot|POS=ADV|Voice=Act",
|
221 |
+
"Deixis=Remt|POS=ADV|PronType=Dem",
|
222 |
+
"Deixis=Prox|POS=ADJ|PronType=Dem",
|
223 |
+
"Deixis=Prox|POS=ADV|PronType=Dem",
|
224 |
+
"Aspect=Imp|Mood=Ind|POS=NOUN|Voice=Lfoc",
|
225 |
+
"Case=Loc|POS=PART",
|
226 |
+
"Deixis=Remt|POS=VERB|PronType=Dem",
|
227 |
+
"Aspect=Imp|Mood=Pot|POS=ADJ|Voice=Lfoc",
|
228 |
+
"NumType=Card|POS=VERB",
|
229 |
+
"POS=ADP|Typo=Yes",
|
230 |
+
"Case=Nom|POS=PART|Typo=Yes",
|
231 |
+
"Case=Nom|Number=Plur|POS=PART",
|
232 |
+
"Aspect=Imp|Mood=Ind|POS=NOUN|Voice=Pass",
|
233 |
+
"NumType=Sets|POS=ADV",
|
234 |
+
"Case=Gen|Deixis=Remt|POS=SCONJ|PronType=Dem",
|
235 |
+
"Aspect=Imp|Mood=Ind|POS=NOUN|Voice=Bfoc",
|
236 |
+
"Case=Nom|Number=Sing|POS=PROPN|Person=3|PronType=Prs",
|
237 |
+
"Aspect=Imp|Mood=Pot|POS=ADJ|Voice=Act",
|
238 |
+
"Case=Nom|Deixis=Med|POS=VERB|PronType=Dem",
|
239 |
+
"Case=Nom|Number=Plur|POS=NOUN|Person=2|PronType=Prs",
|
240 |
+
"Aspect=Imp|Mood=Pot|POS=PRON|Voice=Act",
|
241 |
+
"Aspect=Imp|Mood=Ind|POS=PROPN|Voice=Act",
|
242 |
+
"Case=Dat|Number=Sing|POS=ADV|Person=3|PronType=Prs",
|
243 |
+
"Case=Loc|Deixis=Prox|POS=CCONJ|PronType=Dem",
|
244 |
+
"Case=Nom|POS=DET|Typo=Yes",
|
245 |
+
"Case=Loc|POS=PRON|PronType=Int",
|
246 |
+
"Case=Nom|Number=Plur|POS=PRON|Person=1|PronType=Prs",
|
247 |
+
"POS=CCONJ|Polarity=Neg",
|
248 |
+
"Case=Loc|Deixis=Remt|POS=VERB|PronType=Dem",
|
249 |
+
"Case=Nom|POS=ADP",
|
250 |
+
"Degree=Sup|NumType=Ord|POS=ADJ",
|
251 |
+
"Degree=Cmp|POS=ADV",
|
252 |
+
"NumType=Dist|POS=ADV",
|
253 |
+
"Aspect=Imp|Mood=Ind|Number=Plur|POS=VERB|Voice=Act",
|
254 |
+
"NumType=Dist|POS=ADJ",
|
255 |
+
"Aspect=Perf|Mood=Ind|Number=Plur|POS=VERB|Voice=Act",
|
256 |
+
"Case=Dat|Number=Plur|POS=PRON|Person=3|PronType=Prs|Typo=Yes",
|
257 |
+
"Case=Gen|POS=DET|Typo=Yes",
|
258 |
+
"Case=Nom|Deixis=Prox|POS=PART|PronType=Dem",
|
259 |
+
"Case=Gen,Nom|Number=Sing|POS=PRON|Person=3|PronType=Prs",
|
260 |
+
"Case=Gen|POS=SCONJ",
|
261 |
+
"Aspect=Perf|Mood=Pot|POS=VERB|Typo=Yes|Voice=Pass",
|
262 |
+
"Case=Gen|POS=NOUN",
|
263 |
+
"Case=Dat|Clusivity=Ex|Number=Plur|POS=NOUN|Person=1|PronType=Prs",
|
264 |
+
"NumType=Ord|POS=ADJ|Typo=Yes",
|
265 |
+
"Case=Gen|Deixis=Prox|POS=PRON|PronType=Dem|Typo=Yes",
|
266 |
+
"NumType=Sets|POS=NUM",
|
267 |
+
"Aspect=Perf|Mood=Ind|POS=ADV|Voice=Pass",
|
268 |
+
"Abbr=Yes|Case=Nom|Number=Sing|POS=PRON|Person=3|PronType=Prs",
|
269 |
+
"POS=ADJ|Polarity=Neg",
|
270 |
+
"Case=Nom|POS=NOUN|PronType=Ind",
|
271 |
+
"NumType=Ord|POS=NOUN",
|
272 |
+
"POS=CCONJ|PartType=Int",
|
273 |
+
"Aspect=Perf|Mood=Ind|POS=X|Voice=Act",
|
274 |
+
"Case=Nom|Number=Dual|POS=NOUN|Person=2|PronType=Prs",
|
275 |
+
"Aspect=Imp|Mood=Pot|POS=VERB|Typo=Yes|Voice=Lfoc",
|
276 |
+
"Case=Nom|Number=Sing|POS=PRON|Person=1|PronType=Prs|Typo=Yes",
|
277 |
+
"Case=Nom|Number=Sing|POS=NOUN|Person=1|PronType=Prs",
|
278 |
+
"NumType=Dist|POS=NUM",
|
279 |
+
"Number=Plur|POS=PRON|PronType=Ind",
|
280 |
+
"Case=Gen|Number=Sing|POS=NOUN|Person=1|PronType=Prs",
|
281 |
+
"Case=Nom|Deixis=Remt|POS=PRON|PronType=Dem|Typo=Yes",
|
282 |
+
"Case=Nom|Number=Sing|POS=ADV|Person=3|PronType=Prs",
|
283 |
+
"Case=Nom|Number=Sing|POS=ADP",
|
284 |
+
"Abbr=Yes|POS=NOUN",
|
285 |
+
"Case=Gen|Deixis=Remt|POS=ADP|PronType=Dem",
|
286 |
+
"POS=PRON|PronType=Ind",
|
287 |
+
"POS=VERB|Polarity=Neg|Typo=Yes",
|
288 |
+
"POS=ADP|Polarity=Neg",
|
289 |
+
"Case=Loc|POS=ADV|PronType=Int|Typo=Yes",
|
290 |
+
"Case=Nom|Deixis=Med|POS=PROPN|PronType=Dem",
|
291 |
+
"Case=Loc|Deixis=Remt|POS=NOUN|PronType=Dem",
|
292 |
+
"Case=Gen|Number=Plur|POS=NOUN|Person=3|PronType=Prs",
|
293 |
+
"Aspect=Imp|Mood=Pot|POS=VERB|Typo=Yes|Voice=Pass",
|
294 |
+
"Case=Nom|Clusivity=In|Number=Dual|POS=PRON|Person=1|PronType=Prs|Typo=Yes",
|
295 |
+
"Case=Gen|Number=Plur|POS=ADP|Person=3|PronType=Prs",
|
296 |
+
"Case=Gen|Deixis=Med|POS=PRON|PronType=Dem",
|
297 |
+
"Case=Nom|Clusivity=Ex|Number=Dual|POS=PRON|Person=1|PronType=Prs",
|
298 |
+
"Number=Sing|POS=ADV",
|
299 |
+
"Case=Dat|POS=PRON|PronType=Int",
|
300 |
+
"Aspect=Imp|Mood=Ind|POS=PROPN|Voice=Pass",
|
301 |
+
"Aspect=Imp|Mood=Pot|POS=VERB|Typo=Yes|Voice=Act",
|
302 |
+
"Number=Plur|POS=PRON|PronType=Int",
|
303 |
+
"Case=Nom|POS=VERB",
|
304 |
+
"Case=Nom|POS=ADV|PronType=Ind",
|
305 |
+
"Aspect=Imp|Mood=Ind|POS=NUM|Voice=Act",
|
306 |
+
"Case=Nom|Number=Plur|POS=PROPN|Person=1|PronType=Prs",
|
307 |
+
"Aspect=Perf|Mood=Pot|POS=NOUN|Voice=Act",
|
308 |
+
"Case=Gen|Deixis=Prox|POS=ADP|PronType=Dem",
|
309 |
+
"POS=SCONJ|Polarity=Neg",
|
310 |
+
"Aspect=Imp|Mood=Ind|POS=ADJ|Voice=Act",
|
311 |
+
"Case=Loc|POS=ADP|Typo=Yes",
|
312 |
+
"NumType=Ord|POS=VERB",
|
313 |
+
"Case=Nom|POS=SCONJ",
|
314 |
+
"Aspect=Perf|Mood=Ind|NumType=Ord|POS=VERB|Voice=Act",
|
315 |
+
"Case=Nom|Clusivity=Ex|Number=Plur|POS=NOUN|Person=1|PronType=Prs",
|
316 |
+
"Degree=Cmp|POS=VERB",
|
317 |
+
"Case=Nom|Number=Sing|POS=PRON|Person=3|PronType=Prs|Typo=Yes",
|
318 |
+
"NumType=Sets|POS=NOUN",
|
319 |
+
"Aspect=Perf|Mood=Ind|POS=ADP|Voice=Act",
|
320 |
+
"Aspect=Imp|Mood=Pot|POS=PROPN|Voice=Act",
|
321 |
+
"Case=Dat|Number=Sing|POS=NOUN|Person=2|PronType=Prs",
|
322 |
+
"NumType=Ord|POS=INTJ",
|
323 |
+
"Case=Nom|Number=Plur|POS=ADJ|Person=2|PronType=Prs",
|
324 |
+
"Aspect=Imp|Mood=Pot|POS=ADP|Voice=Pass",
|
325 |
+
"Case=Nom|POS=ADV|PronType=Int",
|
326 |
+
"Degree=Sup|POS=NOUN",
|
327 |
+
"Case=Gen|Number=Sing|POS=PART",
|
328 |
+
"Aspect=Perf|Mood=Ind|POS=ADP|Voice=Pass",
|
329 |
+
"Number=Plur|POS=ADV",
|
330 |
+
"Case=Loc|Number=Plur|POS=ADP|Typo=Yes",
|
331 |
+
"Case=Nom|POS=ADV",
|
332 |
+
"Case=Gen|Number=Plur|POS=PROPN|Person=2|PronType=Prs",
|
333 |
+
"Case=Loc|POS=ADV",
|
334 |
+
"Case=Nom|Number=Plur|POS=NOUN|Person=1|PronType=Prs",
|
335 |
+
"POS=ADJ|PronType=Int",
|
336 |
+
"POS=NOUN|Polarity=Neg",
|
337 |
+
"POS=CCONJ|PronType=Int",
|
338 |
+
"Case=Gen|POS=ADV",
|
339 |
+
"POS=ADV|PronType=Ind",
|
340 |
+
"POS=PROPN|Polarity=Neg",
|
341 |
+
"Deixis=Prox|POS=VERB|PronType=Dem",
|
342 |
+
"Case=Nom|Number=Plur|POS=PRON|Person=2|PronType=Prs|Typo=Yes",
|
343 |
+
"Case=Loc|Deixis=Remt|POS=PROPN|PronType=Dem",
|
344 |
+
"Aspect=Imp|Mood=Pot|POS=SCONJ|Voice=Pass",
|
345 |
+
"Case=Dat|Clusivity=Ex|Number=Plur|POS=NUM|Person=1|PronType=Prs",
|
346 |
+
"POS=PRON|PronType=Int|Typo=Yes",
|
347 |
+
"Aspect=Imp|Mood=Ind|POS=ADJ|Voice=Pass",
|
348 |
+
"Case=Loc|Deixis=Prox|POS=DET|PronType=Dem",
|
349 |
+
"Case=Dat,Loc|Number=Sing|POS=PRON|Person=2|PronType=Prs",
|
350 |
+
"Case=Gen|Number=Sing|POS=PRON|Person=3|PronType=Prs|Typo=Yes",
|
351 |
+
"Aspect=Perf|Case=Gen|Mood=Ind|POS=VERB|Typo=Yes|Voice=Cau",
|
352 |
+
"Case=Gen|Number=Plur|POS=PRON",
|
353 |
+
"Case=Nom|Deixis=Prox|POS=NUM|PronType=Dem",
|
354 |
+
"Case=Dat,Gen|Number=Plur|POS=PRON|Person=3|PronType=Prs",
|
355 |
+
"Case=Dat,Loc|Clusivity=In|Number=Plur|POS=PRON|Person=1|PronType=Prs",
|
356 |
+
"Case=Loc|POS=SCONJ|PronType=Int",
|
357 |
+
"POS=PART|Polite=Form|Typo=Yes",
|
358 |
+
"Abbr=Yes|POS=ADV|Polarity=Neg",
|
359 |
+
"NumType=Card|POS=PART",
|
360 |
+
"Case=Nom|POS=ADP|Typo=Yes",
|
361 |
+
"Case=Dat|Number=Sing|POS=PROPN|Person=3|PronType=Prs",
|
362 |
+
"Case=Dat|Number=Sing|POS=ADV|Person=2|PronType=Prs",
|
363 |
+
"Case=Nom|Clusivity=In|Number=Plur|POS=VERB|Person=1|PronType=Prs",
|
364 |
+
"Case=Gen|POS=VERB",
|
365 |
+
"Case=Nom|Deixis=Prox|POS=PROPN|PronType=Dem",
|
366 |
+
"Case=Nom|Number=Sing|POS=PROPN|Person=2|PronType=Prs",
|
367 |
+
"Case=Dat|Clusivity=In|Number=Plur|POS=NOUN|Person=1|PronType=Prs",
|
368 |
+
"Number=Plur|POS=DET|Typo=Yes",
|
369 |
+
"Case=Gen|POS=ADJ",
|
370 |
+
"NumType=Frac|POS=ADJ",
|
371 |
+
"Case=Gen|POS=PRON|PronType=Ind",
|
372 |
+
"POS=ADV|PartType=Int",
|
373 |
+
"Case=Nom|Deixis=Prox|POS=NOUN|PronType=Dem",
|
374 |
+
"Degree=Abs|POS=VERB",
|
375 |
+
"Deixis=Med|POS=VERB|PronType=Dem",
|
376 |
+
"NumType=Card|POS=PRON",
|
377 |
+
"Case=Gen|Deixis=Remt|POS=ADJ|PronType=Dem",
|
378 |
+
"Aspect=Imp|Mood=Pot|POS=DET|Voice=Pass",
|
379 |
+
"Case=Loc|Deixis=Remt|POS=DET|PronType=Dem",
|
380 |
+
"Case=Loc|POS=VERB",
|
381 |
+
"Degree=Cmp|POS=ADJ",
|
382 |
+
"Degree=Abs|POS=SCONJ",
|
383 |
+
"NumType=Dist|POS=ADP",
|
384 |
+
"Case=Dat|Number=Plur|POS=PART|Person=3|PronType=Prs",
|
385 |
+
"Deixis=Remt|POS=NOUN|PronType=Dem",
|
386 |
+
"Case=Gen|Deixis=Prox|POS=DET|PronType=Dem",
|
387 |
+
"POS=ADV|Polarity=Neg|Typo=Yes",
|
388 |
+
"Case=Gen|Number=Plur|POS=PRON|Person=3|PronType=Prs|Typo=Yes",
|
389 |
+
"Aspect=Perf|Mood=Ind|POS=VERB|Typo=Yes|Voice=Bfoc",
|
390 |
+
"Degree=Sup|POS=PROPN",
|
391 |
+
"Case=Loc|Deixis=Med|POS=ADV|PronType=Dem",
|
392 |
+
"Case=Nom|Number=Plur|POS=PRON|Person=3|PronType=Prs|Typo=Yes",
|
393 |
+
"Case=Nom|Number=Plur|POS=PROPN|Person=3|PronType=Prs",
|
394 |
+
"Case=Nom|POS=PROPN|PronType=Ind",
|
395 |
+
"Case=Nom|Deixis=Prox|POS=VERB|PronType=Dem",
|
396 |
+
"Case=Gen|Number=Sing|POS=VERB|Person=1|PronType=Prs",
|
397 |
+
"Case=Nom|Clusivity=In|Number=Dual|POS=ADJ|Person=1|PronType=Prs",
|
398 |
+
"Case=Gen|Number=Sing|POS=ADV",
|
399 |
+
"Deixis=Med|POS=ADV|PronType=Dem",
|
400 |
+
"POS=ADV|PartType=Int|Polarity=Neg",
|
401 |
+
"Degree=Abs|POS=ADV",
|
402 |
+
"Case=Dat|POS=ADP|Typo=Yes",
|
403 |
+
"POS=VERB|PronType=Int",
|
404 |
+
"Case=Gen|Number=Plur|POS=ADP|Typo=Yes",
|
405 |
+
"Case=Nom|Deixis=Remt|POS=DET|PronType=Dem",
|
406 |
+
"Case=Gen|POS=ADV|Typo=Yes",
|
407 |
+
"Aspect=Imp|Mood=Pot|POS=ADV|Voice=Lfoc",
|
408 |
+
"Aspect=Imp|Case=Loc|Mood=Pot|POS=SCONJ|PronType=Int|Voice=Pass",
|
409 |
+
"Case=Gen|Number=Sing|POS=DET|Typo=Yes",
|
410 |
+
"Case=Nom|Deixis=Med|POS=NOUN|PronType=Dem",
|
411 |
+
"Aspect=Imp|Mood=Pot|POS=PRON|Voice=Pass",
|
412 |
+
"Case=Nom|Deixis=Remt|POS=NUM|PronType=Dem",
|
413 |
+
"Case=Nom|Deixis=Remt|POS=ADV|PronType=Dem",
|
414 |
+
"Case=Gen|Deixis=Med|POS=ADV|PronType=Dem",
|
415 |
+
"Aspect=Perf|Case=Gen|Mood=Ind|POS=VERB|Voice=Pass",
|
416 |
+
"Degree=Equ|POS=ADV",
|
417 |
+
"NumType=Card|POS=DET",
|
418 |
+
"Case=Gen|Deixis=Remt|POS=ADV|PronType=Dem|Typo=Yes",
|
419 |
+
"Abbr=Yes|Case=Nom|POS=PRON|PronType=Int",
|
420 |
+
"POS=INTJ|Polite=Form",
|
421 |
+
"Aspect=Perf|Mood=Ind|POS=ADJ|Voice=Act",
|
422 |
+
"Case=Nom|Clusivity=In|Number=Plur|POS=PART|Person=1|PronType=Prs",
|
423 |
+
"Case=Nom|POS=NOUN",
|
424 |
+
"Aspect=Imp|Mood=Ind|POS=VERB|Polarity=Neg|Voice=Pass",
|
425 |
+
"Aspect=Imp|Mood=Ind|POS=VERB|Typo=Yes|Voice=Pass",
|
426 |
+
"Case=Loc|Deixis=Med|POS=PRON|PronType=Dem|Typo=Yes",
|
427 |
+
"Aspect=Imp|Mood=Pot|POS=NOUN|Voice=Cau",
|
428 |
+
"Case=Nom|Number=Sing|POS=VERB|Person=2|PronType=Prs",
|
429 |
+
"Degree=Sup|POS=ADJ|Typo=Yes",
|
430 |
+
"Deixis=Prox|POS=PROPN|PronType=Dem",
|
431 |
+
"Case=Nom|Number=Plur|POS=ADP",
|
432 |
+
"Case=Nom|Number=Plur|POS=ADV|Person=2|PronType=Prs",
|
433 |
+
"Case=Loc|POS=PRON",
|
434 |
+
"Case=Nom|POS=PROPN|PronType=Int",
|
435 |
+
"Aspect=Imp|Mood=Ind|POS=VERB|Typo=Yes|Voice=Lfoc",
|
436 |
+
"Deixis=Prox|POS=ADV|PronType=Dem|Typo=Yes",
|
437 |
+
"POS=PRON|Typo=Yes",
|
438 |
+
"Abbr=Yes|Case=Gen|Number=Plur|POS=PRON|Person=2|PronType=Prs",
|
439 |
+
"Abbr=Yes|POS=ADV",
|
440 |
+
"Abbr=Yes|NumType=Card|POS=NUM",
|
441 |
+
"Deixis=Prox|POS=NUM|PronType=Dem",
|
442 |
+
"Deixis=Remt|POS=SCONJ|PronType=Dem",
|
443 |
+
"NumType=Card|POS=NUM|Typo=Yes",
|
444 |
+
"Case=Nom|POS=PRON|PronType=Ind|Typo=Yes",
|
445 |
+
"Case=Gen|Number=Sing|POS=PART|Person=3|PronType=Prs",
|
446 |
+
"Case=Dat,Loc|Number=Sing|POS=ADP|Person=2|PronType=Prs",
|
447 |
+
"Case=Nom|Number=Sing|POS=PART|Person=3|PronType=Prs",
|
448 |
+
"Aspect=Perf|Mood=Ind|POS=PART|Voice=Pass",
|
449 |
+
"Case=Gen|Deixis=Prox|POS=NUM|PronType=Dem",
|
450 |
+
"Aspect=Imp|Mood=Ind|POS=PRON|Voice=Pass",
|
451 |
+
"Case=Loc|Deixis=Prox|POS=PROPN|PronType=Dem",
|
452 |
+
"Case=Gen|Number=Sing|POS=PROPN|Person=3|PronType=Prs",
|
453 |
+
"Case=Gen|Number=Sing|POS=NOUN|Person=3|PronType=Prs",
|
454 |
+
"Case=Loc|POS=PUNCT",
|
455 |
+
"Case=Nom|Number=Plur|POS=DET|Typo=Yes",
|
456 |
+
"Aspect=Imp|Mood=Ind|POS=VERB|Typo=Yes|Voice=Act",
|
457 |
+
"Aspect=Imp|Mood=Ind|POS=ADV|Voice=Act",
|
458 |
+
"Case=Nom|Number=Sing|POS=PRON"
|
459 |
+
],
|
460 |
+
"tagger":[
|
461 |
+
"ADJ",
|
462 |
+
"ADJ_ADP__Case=Gen",
|
463 |
+
"ADJ_CCONJ",
|
464 |
+
"ADJ_CCONJ__Degree=Abs",
|
465 |
+
"ADJ_PART",
|
466 |
+
"ADJ_PART_ADJ",
|
467 |
+
"ADJ_PART_ADJ_PART__Degree=Abs",
|
468 |
+
"ADJ_PART_ADJ__Degree=Abs",
|
469 |
+
"ADJ_PART__Aspect=Imp|Mood=Ind|Voice=Act",
|
470 |
+
"ADJ_PART__Aspect=Imp|Mood=Pot|Voice=Pass",
|
471 |
+
"ADJ_PART__Aspect=Perf|Mood=Ind|Voice=Pass",
|
472 |
+
"ADJ_PART__Case=Gen|Deixis=Remt|PronType=Dem",
|
473 |
+
"ADJ_PART__Case=Nom|Number=Plur|Person=2|PronType=Prs",
|
474 |
+
"ADJ_PART__Degree=Abs",
|
475 |
+
"ADJ_PART__Degree=Sup",
|
476 |
+
"ADJ_PART__Degree=Sup|NumType=Ord",
|
477 |
+
"ADJ_PART__Degree=Sup|Typo=Yes",
|
478 |
+
"ADJ_PART__Deixis=Prox|PronType=Dem",
|
479 |
+
"ADJ_PART__NumType=Card",
|
480 |
+
"ADJ_PART__NumType=Frac",
|
481 |
+
"ADJ_PART__NumType=Ord",
|
482 |
+
"ADJ_PART__NumType=Ord|Typo=Yes",
|
483 |
+
"ADJ_PART__Polarity=Neg",
|
484 |
+
"ADJ_PART__Typo=Yes",
|
485 |
+
"ADJ_X",
|
486 |
+
"ADJ__Abbr=Yes",
|
487 |
+
"ADJ__Aspect=Imp|Mood=Ind|Voice=Act",
|
488 |
+
"ADJ__Aspect=Imp|Mood=Ind|Voice=Pass",
|
489 |
+
"ADJ__Aspect=Imp|Mood=Pot|Voice=Act",
|
490 |
+
"ADJ__Aspect=Imp|Mood=Pot|Voice=Lfoc",
|
491 |
+
"ADJ__Aspect=Imp|Mood=Pot|Voice=Pass",
|
492 |
+
"ADJ__Aspect=Perf|Mood=Ind|Voice=Act",
|
493 |
+
"ADJ__Case=Dat|Clusivity=Ex|Number=Plur|Person=1|PronType=Prs",
|
494 |
+
"ADJ__Case=Dat|Number=Sing|Person=2|PronType=Prs",
|
495 |
+
"ADJ__Case=Gen|Deixis=Remt|PronType=Dem",
|
496 |
+
"ADJ__Case=Nom|Clusivity=In|Number=Dual|Person=1|PronType=Prs",
|
497 |
+
"ADJ__Case=Nom|Number=Plur|Person=2|PronType=Prs",
|
498 |
+
"ADJ__Degree=Abs",
|
499 |
+
"ADJ__Degree=Cmp",
|
500 |
+
"ADJ__Degree=Equ",
|
501 |
+
"ADJ__Degree=Sup",
|
502 |
+
"ADJ__NumType=Card",
|
503 |
+
"ADJ__NumType=Dist",
|
504 |
+
"ADJ__NumType=Ord",
|
505 |
+
"ADJ__Polarity=Neg",
|
506 |
+
"ADJ__PronType=Int",
|
507 |
+
"ADJ__Typo=Yes",
|
508 |
+
"ADP",
|
509 |
+
"ADP_ADP",
|
510 |
+
"ADP_CCONJ",
|
511 |
+
"ADP_PART",
|
512 |
+
"ADP_PART__Case=Gen|Deixis=Prox|PronType=Dem",
|
513 |
+
"ADP_PART__Case=Gen|Deixis=Remt|PronType=Dem",
|
514 |
+
"ADP_PRON_PART__Case=Dat,Loc|Number=Sing|Person=2|PronType=Prs",
|
515 |
+
"ADP_PRON__Case=Dat,Loc|Clusivity=In|Number=Plur|Person=1|PronType=Prs",
|
516 |
+
"ADP_PRON__Case=Dat,Loc|Number=Sing|Person=2|PronType=Prs",
|
517 |
+
"ADP_PRON__Case=Dat|Number=Sing|Person=1|PronType=Prs",
|
518 |
+
"ADP_PRON__Case=Loc",
|
519 |
+
"ADP__Aspect=Imp|Mood=Pot|Voice=Act",
|
520 |
+
"ADP__Aspect=Imp|Mood=Pot|Voice=Pass",
|
521 |
+
"ADP__Aspect=Perf|Mood=Ind|Voice=Act",
|
522 |
+
"ADP__Aspect=Perf|Mood=Ind|Voice=Pass",
|
523 |
+
"ADP__Case=Dat",
|
524 |
+
"ADP__Case=Dat|Number=Plur",
|
525 |
+
"ADP__Case=Dat|Number=Sing",
|
526 |
+
"ADP__Case=Dat|Typo=Yes",
|
527 |
+
"ADP__Case=Gen",
|
528 |
+
"ADP__Case=Gen|Clusivity=In|Number=Plur|Person=1|PronType=Prs",
|
529 |
+
"ADP__Case=Gen|Number=Plur",
|
530 |
+
"ADP__Case=Gen|Number=Plur|Person=3|PronType=Prs",
|
531 |
+
"ADP__Case=Gen|Number=Plur|Typo=Yes",
|
532 |
+
"ADP__Case=Gen|Number=Sing",
|
533 |
+
"ADP__Case=Gen|Number=Sing|Typo=Yes",
|
534 |
+
"ADP__Case=Gen|Typo=Yes",
|
535 |
+
"ADP__Case=Loc",
|
536 |
+
"ADP__Case=Loc|Number=Plur|Typo=Yes",
|
537 |
+
"ADP__Case=Loc|Typo=Yes",
|
538 |
+
"ADP__Case=Nom",
|
539 |
+
"ADP__Case=Nom|Number=Plur",
|
540 |
+
"ADP__Case=Nom|Number=Sing",
|
541 |
+
"ADP__Case=Nom|Typo=Yes",
|
542 |
+
"ADP__NumType=Dist",
|
543 |
+
"ADP__Polarity=Neg",
|
544 |
+
"ADP__Typo=Yes",
|
545 |
+
"ADV",
|
546 |
+
"ADV_ADP",
|
547 |
+
"ADV_ADP__Case=Gen",
|
548 |
+
"ADV_ADV",
|
549 |
+
"ADV_CCONJ",
|
550 |
+
"ADV_DET",
|
551 |
+
"ADV_DET__Case=Loc|PronType=Int",
|
552 |
+
"ADV_DET__Case=Nom",
|
553 |
+
"ADV_DET__Number=Sing",
|
554 |
+
"ADV_PART",
|
555 |
+
"ADV_PART__Aspect=Imp|Mood=Pot|Voice=Pass",
|
556 |
+
"ADV_PART__Aspect=Perf|Mood=Ind|Voice=Pass",
|
557 |
+
"ADV_PART__Case=Dat|Number=Sing|Person=2|PronType=Prs",
|
558 |
+
"ADV_PART__Case=Dat|Number=Sing|Person=3|PronType=Prs",
|
559 |
+
"ADV_PART__Case=Gen",
|
560 |
+
"ADV_PART__Case=Gen|Deixis=Med|PronType=Dem",
|
561 |
+
"ADV_PART__Case=Gen|Deixis=Prox|PronType=Dem",
|
562 |
+
"ADV_PART__Case=Gen|Deixis=Remt|PronType=Dem",
|
563 |
+
"ADV_PART__Case=Gen|Deixis=Remt|PronType=Dem|Typo=Yes",
|
564 |
+
"ADV_PART__Case=Gen|Typo=Yes",
|
565 |
+
"ADV_PART__Case=Loc",
|
566 |
+
"ADV_PART__Case=Loc|PronType=Int",
|
567 |
+
"ADV_PART__Case=Nom|Deixis=Remt|PronType=Dem",
|
568 |
+
"ADV_PART__Case=Nom|Number=Plur|Person=2|PronType=Prs",
|
569 |
+
"ADV_PART__Case=Nom|Number=Sing|Person=3|PronType=Prs",
|
570 |
+
"ADV_PART__Deixis=Med|PronType=Dem",
|
571 |
+
"ADV_PART__Deixis=Prox|PronType=Dem",
|
572 |
+
"ADV_PART__Deixis=Prox|PronType=Dem|Typo=Yes",
|
573 |
+
"ADV_PART__Deixis=Remt|PronType=Dem",
|
574 |
+
"ADV_PART__NumType=Card",
|
575 |
+
"ADV_PART__NumType=Dist",
|
576 |
+
"ADV_PART__NumType=Ord",
|
577 |
+
"ADV_PART__PartType=Int|Polarity=Neg",
|
578 |
+
"ADV_PART__Polarity=Neg",
|
579 |
+
"ADV_PART__PronType=Int",
|
580 |
+
"ADV_PART__Typo=Yes",
|
581 |
+
"ADV_VERB_PART__Aspect=Imp|Mood=Ind|Polarity=Neg|Voice=Pass",
|
582 |
+
"ADV_X",
|
583 |
+
"ADV__Abbr=Yes",
|
584 |
+
"ADV__Abbr=Yes|Polarity=Neg",
|
585 |
+
"ADV__Aspect=Imp|Mood=Ind|Voice=Act",
|
586 |
+
"ADV__Aspect=Imp|Mood=Ind|Voice=Pass",
|
587 |
+
"ADV__Aspect=Imp|Mood=Pot|Voice=Act",
|
588 |
+
"ADV__Aspect=Imp|Mood=Pot|Voice=Lfoc",
|
589 |
+
"ADV__Aspect=Imp|Mood=Pot|Voice=Pass",
|
590 |
+
"ADV__Aspect=Perf|Mood=Ind|Voice=Act",
|
591 |
+
"ADV__Aspect=Perf|Mood=Ind|Voice=Pass",
|
592 |
+
"ADV__Case=Dat|Number=Sing|Person=3|PronType=Prs",
|
593 |
+
"ADV__Case=Gen",
|
594 |
+
"ADV__Case=Gen|Deixis=Prox|PronType=Dem",
|
595 |
+
"ADV__Case=Gen|Deixis=Remt|PronType=Dem",
|
596 |
+
"ADV__Case=Gen|Deixis=Remt|PronType=Dem|Typo=Yes",
|
597 |
+
"ADV__Case=Gen|Number=Sing",
|
598 |
+
"ADV__Case=Gen|Number=Sing|Person=2|PronType=Prs",
|
599 |
+
"ADV__Case=Gen|Typo=Yes",
|
600 |
+
"ADV__Case=Loc",
|
601 |
+
"ADV__Case=Loc|Deixis=Med|PronType=Dem",
|
602 |
+
"ADV__Case=Loc|Deixis=Prox|PronType=Dem",
|
603 |
+
"ADV__Case=Loc|Deixis=Remt|PronType=Dem",
|
604 |
+
"ADV__Case=Loc|PronType=Int",
|
605 |
+
"ADV__Case=Loc|PronType=Int|Typo=Yes",
|
606 |
+
"ADV__Case=Nom|Deixis=Remt|PronType=Dem",
|
607 |
+
"ADV__Case=Nom|PronType=Ind",
|
608 |
+
"ADV__Case=Nom|PronType=Int",
|
609 |
+
"ADV__Degree=Abs",
|
610 |
+
"ADV__Degree=Cmp",
|
611 |
+
"ADV__Degree=Equ",
|
612 |
+
"ADV__Degree=Sup",
|
613 |
+
"ADV__Deixis=Med|PronType=Dem",
|
614 |
+
"ADV__Deixis=Prox|PronType=Dem",
|
615 |
+
"ADV__Deixis=Remt|PronType=Dem",
|
616 |
+
"ADV__NumType=Card",
|
617 |
+
"ADV__NumType=Dist",
|
618 |
+
"ADV__NumType=Ord",
|
619 |
+
"ADV__NumType=Sets",
|
620 |
+
"ADV__Number=Plur",
|
621 |
+
"ADV__PartType=Int",
|
622 |
+
"ADV__Polarity=Neg",
|
623 |
+
"ADV__Polarity=Neg|Typo=Yes",
|
624 |
+
"ADV__PronType=Ind",
|
625 |
+
"ADV__PronType=Int",
|
626 |
+
"ADV__Typo=Yes",
|
627 |
+
"Aspect=Imp|Mood=Ind|Voice=Lfoc",
|
628 |
+
"CCONJ",
|
629 |
+
"CCONJ_ADV__Polarity=Neg",
|
630 |
+
"CCONJ_CCONJ",
|
631 |
+
"CCONJ__Case=Loc|Deixis=Prox|PronType=Dem",
|
632 |
+
"CCONJ__PronType=Int",
|
633 |
+
"CCONJ__Typo=Yes",
|
634 |
+
"DET",
|
635 |
+
"DET_PART",
|
636 |
+
"DET_PART__Case=Gen|Deixis=Prox|PronType=Dem",
|
637 |
+
"DET_PART__Case=Nom|Deixis=Remt|PronType=Dem",
|
638 |
+
"DET__Aspect=Imp|Mood=Pot|Voice=Pass",
|
639 |
+
"DET__Case=Gen|Number=Sing",
|
640 |
+
"DET__Case=Gen|Number=Sing|Typo=Yes",
|
641 |
+
"DET__Case=Gen|Typo=Yes",
|
642 |
+
"DET__Case=Loc|Deixis=Prox|PronType=Dem",
|
643 |
+
"DET__Case=Loc|Deixis=Remt|PronType=Dem",
|
644 |
+
"DET__Case=Nom",
|
645 |
+
"DET__Case=Nom|Number=Plur",
|
646 |
+
"DET__Case=Nom|Number=Plur|Typo=Yes",
|
647 |
+
"DET__Case=Nom|Number=Sing",
|
648 |
+
"DET__Case=Nom|Number=Sing|Typo=Yes",
|
649 |
+
"DET__Case=Nom|Typo=Yes",
|
650 |
+
"DET__NumType=Card",
|
651 |
+
"DET__Number=Plur",
|
652 |
+
"DET__Number=Plur|Typo=Yes",
|
653 |
+
"DET__Typo=Yes",
|
654 |
+
"INTJ",
|
655 |
+
"INTJ_PART",
|
656 |
+
"INTJ__NumType=Ord",
|
657 |
+
"INTJ__Polite=Form",
|
658 |
+
"NOUN",
|
659 |
+
"NOUN_ADP",
|
660 |
+
"NOUN_CCONJ",
|
661 |
+
"NOUN_CCONJ__Case=Nom|Deixis=Prox|PronType=Dem",
|
662 |
+
"NOUN_CCONJ__NumType=Ord",
|
663 |
+
"NOUN_DET__Case=Nom",
|
664 |
+
"NOUN_NOUN_PART",
|
665 |
+
"NOUN_PART",
|
666 |
+
"NOUN_PART__Aspect=Imp|Mood=Pot|Voice=Act",
|
667 |
+
"NOUN_PART__Aspect=Imp|Mood=Pot|Voice=Lfoc",
|
668 |
+
"NOUN_PART__Aspect=Imp|Mood=Pot|Voice=Pass",
|
669 |
+
"NOUN_PART__Case=Dat|Number=Sing|Person=3|PronType=Prs",
|
670 |
+
"NOUN_PART__Case=Gen",
|
671 |
+
"NOUN_PART__Case=Gen|Number=Plur|Person=3|PronType=Prs",
|
672 |
+
"NOUN_PART__Case=Loc",
|
673 |
+
"NOUN_PART__Case=Nom|Clusivity=Ex|Number=Plur|Person=1|PronType=Prs",
|
674 |
+
"NOUN_PART__Case=Nom|Number=Plur|Person=2|PronType=Prs",
|
675 |
+
"NOUN_PART__Case=Nom|Number=Sing|Person=1|PronType=Prs",
|
676 |
+
"NOUN_PART__Case=Nom|Number=Sing|Person=3|PronType=Prs",
|
677 |
+
"NOUN_PART__Case=Nom|PronType=Ind",
|
678 |
+
"NOUN_PART__Degree=Sup",
|
679 |
+
"NOUN_PART__NumType=Card",
|
680 |
+
"NOUN_PART__NumType=Ord",
|
681 |
+
"NOUN_PART__PronType=Int",
|
682 |
+
"NOUN_PART__Typo=Yes",
|
683 |
+
"NOUN_X",
|
684 |
+
"NOUN__Abbr=Yes",
|
685 |
+
"NOUN__Aspect=Imp|Mood=Ind|Voice=Act",
|
686 |
+
"NOUN__Aspect=Imp|Mood=Ind|Voice=Bfoc",
|
687 |
+
"NOUN__Aspect=Imp|Mood=Ind|Voice=Lfoc",
|
688 |
+
"NOUN__Aspect=Imp|Mood=Ind|Voice=Pass",
|
689 |
+
"NOUN__Aspect=Imp|Mood=Pot|Voice=Act",
|
690 |
+
"NOUN__Aspect=Imp|Mood=Pot|Voice=Bfoc",
|
691 |
+
"NOUN__Aspect=Imp|Mood=Pot|Voice=Cau",
|
692 |
+
"NOUN__Aspect=Imp|Mood=Pot|Voice=Lfoc",
|
693 |
+
"NOUN__Aspect=Imp|Mood=Pot|Voice=Pass",
|
694 |
+
"NOUN__Aspect=Perf|Mood=Ind|Voice=Act",
|
695 |
+
"NOUN__Aspect=Perf|Mood=Ind|Voice=Lfoc",
|
696 |
+
"NOUN__Aspect=Perf|Mood=Ind|Voice=Pass",
|
697 |
+
"NOUN__Aspect=Perf|Mood=Pot|Voice=Act",
|
698 |
+
"NOUN__Aspect=Perf|Mood=Pot|Voice=Pass",
|
699 |
+
"NOUN__Case=Dat|Clusivity=Ex|Number=Plur|Person=1|PronType=Prs",
|
700 |
+
"NOUN__Case=Dat|Clusivity=In|Number=Plur|Person=1|PronType=Prs",
|
701 |
+
"NOUN__Case=Dat|Number=Sing",
|
702 |
+
"NOUN__Case=Dat|Number=Sing|Person=1|PronType=Prs",
|
703 |
+
"NOUN__Case=Dat|Number=Sing|Person=2|PronType=Prs",
|
704 |
+
"NOUN__Case=Dat|Number=Sing|Person=3|PronType=Prs",
|
705 |
+
"NOUN__Case=Gen",
|
706 |
+
"NOUN__Case=Gen|Number=Plur|Person=2|PronType=Prs",
|
707 |
+
"NOUN__Case=Gen|Number=Sing|Person=1|PronType=Prs",
|
708 |
+
"NOUN__Case=Gen|Number=Sing|Person=3|PronType=Prs",
|
709 |
+
"NOUN__Case=Loc",
|
710 |
+
"NOUN__Case=Loc|Deixis=Prox|PronType=Dem",
|
711 |
+
"NOUN__Case=Loc|Deixis=Remt|PronType=Dem",
|
712 |
+
"NOUN__Case=Loc|PronType=Int",
|
713 |
+
"NOUN__Case=Loc|Typo=Yes",
|
714 |
+
"NOUN__Case=Nom|Deixis=Med|PronType=Dem",
|
715 |
+
"NOUN__Case=Nom|Deixis=Prox|PronType=Dem",
|
716 |
+
"NOUN__Case=Nom|Deixis=Remt|PronType=Dem",
|
717 |
+
"NOUN__Case=Nom|Number=Dual|Person=2|PronType=Prs",
|
718 |
+
"NOUN__Case=Nom|Number=Plur|Person=1|PronType=Prs",
|
719 |
+
"NOUN__Case=Nom|Number=Plur|Person=2|PronType=Prs",
|
720 |
+
"NOUN__Case=Nom|Number=Sing|Person=1|PronType=Prs",
|
721 |
+
"NOUN__Case=Nom|Number=Sing|Person=3|PronType=Prs",
|
722 |
+
"NOUN__Case=Nom|PronType=Ind",
|
723 |
+
"NOUN__Deixis=Remt|PronType=Dem",
|
724 |
+
"NOUN__NumType=Card",
|
725 |
+
"NOUN__NumType=Frac",
|
726 |
+
"NOUN__NumType=Ord",
|
727 |
+
"NOUN__NumType=Sets",
|
728 |
+
"NOUN__Number=Plur",
|
729 |
+
"NOUN__Polarity=Neg",
|
730 |
+
"NOUN__PronType=Int",
|
731 |
+
"NOUN__Typo=Yes",
|
732 |
+
"NUM",
|
733 |
+
"NUM_CCONJ",
|
734 |
+
"NUM_CCONJ__NumType=Card",
|
735 |
+
"NUM_DET__NumType=Card|Typo=Yes",
|
736 |
+
"NUM_NOUN__NumType=Card",
|
737 |
+
"NUM_PART",
|
738 |
+
"NUM_PART__Case=Gen|Deixis=Prox|PronType=Dem",
|
739 |
+
"NUM_PART__Case=Nom|Deixis=Prox|PronType=Dem",
|
740 |
+
"NUM_PART__Case=Nom|Deixis=Remt|PronType=Dem",
|
741 |
+
"NUM_PART__Deixis=Prox|PronType=Dem",
|
742 |
+
"NUM_PART__NumType=Card",
|
743 |
+
"NUM_PART__NumType=Dist",
|
744 |
+
"NUM_PART__NumType=Ord",
|
745 |
+
"NUM_PART__PronType=Int",
|
746 |
+
"NUM_PUNCT_NOUN__NumType=Card",
|
747 |
+
"NUM__Abbr=Yes|NumType=Card",
|
748 |
+
"NUM__Aspect=Imp|Mood=Ind|Voice=Act",
|
749 |
+
"NUM__Case=Dat|Clusivity=Ex|Number=Plur|Person=1|PronType=Prs",
|
750 |
+
"NUM__Deixis=Prox|PronType=Dem",
|
751 |
+
"NUM__NumType=Card",
|
752 |
+
"NUM__NumType=Card|PronType=Int",
|
753 |
+
"NUM__NumType=Dist",
|
754 |
+
"NUM__NumType=Frac",
|
755 |
+
"NUM__NumType=Ord",
|
756 |
+
"NUM__NumType=Sets",
|
757 |
+
"NUM__PronType=Int",
|
758 |
+
"NumType=Ord",
|
759 |
+
"NumType=Ord__NumType=Ord",
|
760 |
+
"PART",
|
761 |
+
"PART_CCONJ",
|
762 |
+
"PART_CCONJ__PartType=Int",
|
763 |
+
"PART_DET__PartType=Int",
|
764 |
+
"PART_PART",
|
765 |
+
"PART_PART__PartType=Int",
|
766 |
+
"PART_PART__Polite=Form",
|
767 |
+
"PART__Aspect=Perf|Mood=Ind|Voice=Pass",
|
768 |
+
"PART__Case=Gen",
|
769 |
+
"PART__Case=Gen|Number=Sing",
|
770 |
+
"PART__Case=Gen|Typo=Yes",
|
771 |
+
"PART__Case=Loc",
|
772 |
+
"PART__Case=Nom|Number=Plur",
|
773 |
+
"PART__Case=Nom|Typo=Yes",
|
774 |
+
"PART__PartType=Int",
|
775 |
+
"PART__Polite=Form",
|
776 |
+
"PART__Polite=Form|Typo=Yes",
|
777 |
+
"PART__Typo=Yes",
|
778 |
+
"PRON",
|
779 |
+
"PRON_ADP__Case=Dat,Gen|Number=Plur|Person=3|PronType=Prs",
|
780 |
+
"PRON_ADV",
|
781 |
+
"PRON_ADV__Case=Dat|Number=Sing|Person=3|PronType=Prs",
|
782 |
+
"PRON_ADV__Case=Gen|Deixis=Prox|PronType=Dem",
|
783 |
+
"PRON_AUX",
|
784 |
+
"PRON_CCONJ",
|
785 |
+
"PRON_DET__Abbr=Yes|Case=Nom|Number=Sing|Person=3|PronType=Prs",
|
786 |
+
"PRON_DET__Case=Gen,Nom|Number=Sing|Person=3|PronType=Prs",
|
787 |
+
"PRON_DET__Case=Gen|Number=Sing|Person=3|PronType=Prs",
|
788 |
+
"PRON_DET__Case=Nom|Number=Sing|Person=1|PronType=Prs",
|
789 |
+
"PRON_DET__Case=Nom|Number=Sing|Person=3|PronType=Prs",
|
790 |
+
"PRON_DET__Case=Nom|PronType=Int",
|
791 |
+
"PRON_DET__PronType=Int",
|
792 |
+
"PRON_PART",
|
793 |
+
"PRON_PART__Aspect=Imp|Mood=Pot|Voice=Pass",
|
794 |
+
"PRON_PART__Aspect=Perf|Mood=Ind|Voice=Act",
|
795 |
+
"PRON_PART__Case=Dat|Clusivity=Ex|Number=Plur|Person=1|PronType=Prs",
|
796 |
+
"PRON_PART__Case=Dat|Clusivity=In|Number=Plur|Person=1|PronType=Prs",
|
797 |
+
"PRON_PART__Case=Dat|Number=Plur|Person=2|PronType=Prs",
|
798 |
+
"PRON_PART__Case=Dat|Number=Plur|Person=3|PronType=Prs",
|
799 |
+
"PRON_PART__Case=Dat|Number=Plur|Person=3|PronType=Prs|Typo=Yes",
|
800 |
+
"PRON_PART__Case=Dat|Number=Sing|Person=1|PronType=Prs",
|
801 |
+
"PRON_PART__Case=Dat|Number=Sing|Person=2|PronType=Prs",
|
802 |
+
"PRON_PART__Case=Dat|Number=Sing|Person=3|PronType=Prs",
|
803 |
+
"PRON_PART__Case=Dat|PronType=Int",
|
804 |
+
"PRON_PART__Case=Gen|Clusivity=Ex|Number=Plur|Person=1|PronType=Prs",
|
805 |
+
"PRON_PART__Case=Gen|Clusivity=In|Number=Plur|Person=1|PronType=Prs",
|
806 |
+
"PRON_PART__Case=Gen|Deixis=Prox|PronType=Dem",
|
807 |
+
"PRON_PART__Case=Gen|Deixis=Remt|PronType=Dem",
|
808 |
+
"PRON_PART__Case=Gen|Number=Plur|Person=2|PronType=Prs",
|
809 |
+
"PRON_PART__Case=Gen|Number=Plur|Person=3|PronType=Prs",
|
810 |
+
"PRON_PART__Case=Gen|Number=Sing|Person=1|PronType=Prs",
|
811 |
+
"PRON_PART__Case=Gen|Number=Sing|Person=1|PronType=Prs|Typo=Yes",
|
812 |
+
"PRON_PART__Case=Gen|Number=Sing|Person=2|PronType=Prs",
|
813 |
+
"PRON_PART__Case=Gen|Number=Sing|Person=3|PronType=Prs",
|
814 |
+
"PRON_PART__Case=Loc|Deixis=Med|PronType=Dem",
|
815 |
+
"PRON_PART__Case=Loc|Deixis=Prox|PronType=Dem",
|
816 |
+
"PRON_PART__Case=Loc|PronType=Int",
|
817 |
+
"PRON_PART__Case=Nom|Clusivity=Ex|Number=Plur|Person=1|PronType=Prs",
|
818 |
+
"PRON_PART__Case=Nom|Clusivity=In|Number=Dual|Person=1|PronType=Prs",
|
819 |
+
"PRON_PART__Case=Nom|Clusivity=In|Number=Plur|Person=1|PronType=Prs",
|
820 |
+
"PRON_PART__Case=Nom|Deixis=Med|PronType=Dem",
|
821 |
+
"PRON_PART__Case=Nom|Deixis=Prox|PronType=Dem",
|
822 |
+
"PRON_PART__Case=Nom|Deixis=Remt|PronType=Dem",
|
823 |
+
"PRON_PART__Case=Nom|Deixis=Remt|PronType=Dem|Typo=Yes",
|
824 |
+
"PRON_PART__Case=Nom|Number=Plur|Person=2|PronType=Prs",
|
825 |
+
"PRON_PART__Case=Nom|Number=Plur|Person=3|PronType=Prs",
|
826 |
+
"PRON_PART__Case=Nom|Number=Sing|Person=1|PronType=Prs",
|
827 |
+
"PRON_PART__Case=Nom|Number=Sing|Person=2|PronType=Prs",
|
828 |
+
"PRON_PART__Case=Nom|Number=Sing|Person=3|PronType=Prs",
|
829 |
+
"PRON_PART__Case=Nom|PronType=Ind",
|
830 |
+
"PRON_PART__Case=Nom|PronType=Int",
|
831 |
+
"PRON_PART__Deixis=Prox|PronType=Dem",
|
832 |
+
"PRON_PART__Person=1",
|
833 |
+
"PRON_PART__PronType=Int",
|
834 |
+
"PRON_VERB",
|
835 |
+
"PRON_X__Case=Nom|Number=Sing|Person=1|PronType=Prs",
|
836 |
+
"PRON__Abbr=Yes|Case=Gen|Number=Plur|Person=2|PronType=Prs",
|
837 |
+
"PRON__Abbr=Yes|Case=Nom|PronType=Int",
|
838 |
+
"PRON__Aspect=Imp|Mood=Ind|Voice=Pass",
|
839 |
+
"PRON__Aspect=Imp|Mood=Pot|Voice=Act",
|
840 |
+
"PRON__Aspect=Imp|Mood=Pot|Voice=Pass",
|
841 |
+
"PRON__Aspect=Perf|Mood=Ind|Voice=Act",
|
842 |
+
"PRON__Aspect=Perf|Mood=Ind|Voice=Pass",
|
843 |
+
"PRON__Case=Dat|Clusivity=Ex|Number=Plur|Person=1|PronType=Prs",
|
844 |
+
"PRON__Case=Dat|Clusivity=In|Number=Plur|Person=1|PronType=Prs",
|
845 |
+
"PRON__Case=Dat|Number=Plur|Person=2|PronType=Prs",
|
846 |
+
"PRON__Case=Dat|Number=Plur|Person=3|PronType=Prs",
|
847 |
+
"PRON__Case=Dat|Number=Sing|Person=1|PronType=Prs",
|
848 |
+
"PRON__Case=Dat|Number=Sing|Person=2|PronType=Prs",
|
849 |
+
"PRON__Case=Dat|Number=Sing|Person=3|PronType=Prs",
|
850 |
+
"PRON__Case=Dat|PronType=Int",
|
851 |
+
"PRON__Case=Gen|Clusivity=Ex|Number=Plur|Person=1|PronType=Prs",
|
852 |
+
"PRON__Case=Gen|Clusivity=In|Number=Plur|Person=1|PronType=Prs",
|
853 |
+
"PRON__Case=Gen|Deixis=Med|PronType=Dem",
|
854 |
+
"PRON__Case=Gen|Deixis=Prox|PronType=Dem",
|
855 |
+
"PRON__Case=Gen|Deixis=Prox|PronType=Dem|Typo=Yes",
|
856 |
+
"PRON__Case=Gen|Deixis=Remt|PronType=Dem",
|
857 |
+
"PRON__Case=Gen|Number=Plur",
|
858 |
+
"PRON__Case=Gen|Number=Plur|Person=2|PronType=Prs",
|
859 |
+
"PRON__Case=Gen|Number=Plur|Person=2|PronType=Prs|Typo=Yes",
|
860 |
+
"PRON__Case=Gen|Number=Plur|Person=3|PronType=Prs",
|
861 |
+
"PRON__Case=Gen|Number=Plur|Person=3|PronType=Prs|Typo=Yes",
|
862 |
+
"PRON__Case=Gen|Number=Sing|Person=1|PronType=Prs",
|
863 |
+
"PRON__Case=Gen|Number=Sing|Person=1|PronType=Prs|Typo=Yes",
|
864 |
+
"PRON__Case=Gen|Number=Sing|Person=2|PronType=Prs",
|
865 |
+
"PRON__Case=Gen|Number=Sing|Person=3|PronType=Prs",
|
866 |
+
"PRON__Case=Gen|Number=Sing|Person=3|PronType=Prs|Typo=Yes",
|
867 |
+
"PRON__Case=Gen|PronType=Ind",
|
868 |
+
"PRON__Case=Loc|Deixis=Med|PronType=Dem",
|
869 |
+
"PRON__Case=Loc|Deixis=Med|PronType=Dem|Typo=Yes",
|
870 |
+
"PRON__Case=Loc|Deixis=Prox|PronType=Dem",
|
871 |
+
"PRON__Case=Loc|Deixis=Remt|PronType=Dem",
|
872 |
+
"PRON__Case=Loc|PronType=Int",
|
873 |
+
"PRON__Case=Nom|Clusivity=Ex|Number=Dual|Person=1|PronType=Prs",
|
874 |
+
"PRON__Case=Nom|Clusivity=Ex|Number=Plur|Person=1|PronType=Prs",
|
875 |
+
"PRON__Case=Nom|Clusivity=In|Number=Dual|Person=1|PronType=Prs",
|
876 |
+
"PRON__Case=Nom|Clusivity=In|Number=Dual|Person=1|PronType=Prs|Typo=Yes",
|
877 |
+
"PRON__Case=Nom|Clusivity=In|Number=Plur|Person=1|PronType=Prs",
|
878 |
+
"PRON__Case=Nom|Deixis=Med|PronType=Dem",
|
879 |
+
"PRON__Case=Nom|Deixis=Prox|PronType=Dem",
|
880 |
+
"PRON__Case=Nom|Deixis=Remt|PronType=Dem",
|
881 |
+
"PRON__Case=Nom|Deixis=Remt|PronType=Dem|Typo=Yes",
|
882 |
+
"PRON__Case=Nom|Number=Dual|Person=2|PronType=Prs",
|
883 |
+
"PRON__Case=Nom|Number=Plur|Person=1|PronType=Prs",
|
884 |
+
"PRON__Case=Nom|Number=Plur|Person=2|PronType=Prs",
|
885 |
+
"PRON__Case=Nom|Number=Plur|Person=2|PronType=Prs|Typo=Yes",
|
886 |
+
"PRON__Case=Nom|Number=Plur|Person=3|PronType=Prs",
|
887 |
+
"PRON__Case=Nom|Number=Plur|Person=3|PronType=Prs|Typo=Yes",
|
888 |
+
"PRON__Case=Nom|Number=Sing",
|
889 |
+
"PRON__Case=Nom|Number=Sing|Person=1|PronType=Prs",
|
890 |
+
"PRON__Case=Nom|Number=Sing|Person=1|PronType=Prs|Typo=Yes",
|
891 |
+
"PRON__Case=Nom|Number=Sing|Person=2|PronType=Prs",
|
892 |
+
"PRON__Case=Nom|Number=Sing|Person=3|PronType=Prs",
|
893 |
+
"PRON__Case=Nom|Number=Sing|Person=3|PronType=Prs|Typo=Yes",
|
894 |
+
"PRON__Case=Nom|PronType=Ind",
|
895 |
+
"PRON__Case=Nom|PronType=Ind|Typo=Yes",
|
896 |
+
"PRON__Case=Nom|PronType=Int",
|
897 |
+
"PRON__Deixis=Med|PronType=Dem",
|
898 |
+
"PRON__Deixis=Prox|PronType=Dem",
|
899 |
+
"PRON__Deixis=Remt|PronType=Dem",
|
900 |
+
"PRON__NumType=Card",
|
901 |
+
"PRON__Number=Plur|PronType=Ind",
|
902 |
+
"PRON__Number=Plur|PronType=Int",
|
903 |
+
"PRON__PronType=Dem",
|
904 |
+
"PRON__PronType=Ind",
|
905 |
+
"PRON__PronType=Int",
|
906 |
+
"PRON__PronType=Int|Typo=Yes",
|
907 |
+
"PRON__PronType=Tot",
|
908 |
+
"PRON__Typo=Yes",
|
909 |
+
"PROPN",
|
910 |
+
"PROPN_ADP",
|
911 |
+
"PROPN_DET__Case=Nom|PronType=Int",
|
912 |
+
"PROPN_PART",
|
913 |
+
"PROPN_PART__Case=Dat|Number=Sing|Person=3|PronType=Prs",
|
914 |
+
"PROPN_PART__Case=Nom|Deixis=Remt|PronType=Dem",
|
915 |
+
"PROPN_PART__NumType=Ord",
|
916 |
+
"PROPN_PROPN",
|
917 |
+
"PROPN_PROPN__Case=Nom|Number=Sing|Person=1|PronType=Prs",
|
918 |
+
"PROPN_X",
|
919 |
+
"PROPN_X__Aspect=Perf|Mood=Ind|Voice=Pass",
|
920 |
+
"PROPN__Abbr=Yes",
|
921 |
+
"PROPN__Aspect=Imp|Mood=Ind|Voice=Act",
|
922 |
+
"PROPN__Aspect=Imp|Mood=Ind|Voice=Pass",
|
923 |
+
"PROPN__Aspect=Imp|Mood=Pot|Voice=Act",
|
924 |
+
"PROPN__Aspect=Imp|Mood=Pot|Voice=Lfoc",
|
925 |
+
"PROPN__Aspect=Imp|Mood=Pot|Voice=Pass",
|
926 |
+
"PROPN__Aspect=Perf|Mood=Ind|Voice=Pass",
|
927 |
+
"PROPN__Case=Dat|Number=Sing|Person=3|PronType=Prs",
|
928 |
+
"PROPN__Case=Gen",
|
929 |
+
"PROPN__Case=Gen|Number=Plur|Person=2|PronType=Prs",
|
930 |
+
"PROPN__Case=Gen|Number=Sing",
|
931 |
+
"PROPN__Case=Gen|Number=Sing|Person=2|PronType=Prs",
|
932 |
+
"PROPN__Case=Gen|Number=Sing|Person=3|PronType=Prs",
|
933 |
+
"PROPN__Case=Loc",
|
934 |
+
"PROPN__Case=Loc|Deixis=Prox|PronType=Dem",
|
935 |
+
"PROPN__Case=Loc|Deixis=Remt|PronType=Dem",
|
936 |
+
"PROPN__Case=Nom",
|
937 |
+
"PROPN__Case=Nom|Deixis=Med|PronType=Dem",
|
938 |
+
"PROPN__Case=Nom|Deixis=Prox|PronType=Dem",
|
939 |
+
"PROPN__Case=Nom|Deixis=Remt|PronType=Dem",
|
940 |
+
"PROPN__Case=Nom|Number=Plur|Person=1|PronType=Prs",
|
941 |
+
"PROPN__Case=Nom|Number=Plur|Person=3|PronType=Prs",
|
942 |
+
"PROPN__Case=Nom|Number=Sing|Person=1|PronType=Prs",
|
943 |
+
"PROPN__Case=Nom|Number=Sing|Person=2|PronType=Prs",
|
944 |
+
"PROPN__Case=Nom|Number=Sing|Person=3|PronType=Prs",
|
945 |
+
"PROPN__Case=Nom|PronType=Ind",
|
946 |
+
"PROPN__Degree=Sup",
|
947 |
+
"PROPN__Deixis=Prox|PronType=Dem",
|
948 |
+
"PROPN__Deixis=Remt|PronType=Dem",
|
949 |
+
"PROPN__NumType=Card",
|
950 |
+
"PROPN__NumType=Ord",
|
951 |
+
"PROPN__Number=Plur",
|
952 |
+
"PROPN__PartType=Int",
|
953 |
+
"PROPN__Polarity=Neg",
|
954 |
+
"PROPN__PronType=Int",
|
955 |
+
"PROPN__Typo=Yes",
|
956 |
+
"PUNCT",
|
957 |
+
"PUNCT__Case=Loc",
|
958 |
+
"SCONJ",
|
959 |
+
"SCONJ_ADP",
|
960 |
+
"SCONJ_ADV",
|
961 |
+
"SCONJ_ADV__Aspect=Imp|Case=Loc|Mood=Pot|PronType=Int|Voice=Pass",
|
962 |
+
"SCONJ_ADV__Polarity=Neg",
|
963 |
+
"SCONJ_ADV__Typo=Yes",
|
964 |
+
"SCONJ_CCONJ",
|
965 |
+
"SCONJ_CCONJ__Degree=Abs",
|
966 |
+
"SCONJ_PART",
|
967 |
+
"SCONJ_PART__Case=Gen|Deixis=Remt|PronType=Dem",
|
968 |
+
"SCONJ_PART__Case=Loc|PronType=Int",
|
969 |
+
"SCONJ_PART__Deixis=Remt|PronType=Dem",
|
970 |
+
"SCONJ__Aspect=Imp|Mood=Ind|Voice=Act",
|
971 |
+
"SCONJ__Aspect=Imp|Mood=Pot|Voice=Act",
|
972 |
+
"SCONJ__Aspect=Imp|Mood=Pot|Voice=Pass",
|
973 |
+
"SCONJ__Aspect=Perf|Mood=Ind|Voice=Pass",
|
974 |
+
"SCONJ__Case=Gen",
|
975 |
+
"SCONJ__Case=Gen|Deixis=Remt|PronType=Dem",
|
976 |
+
"SCONJ__Case=Gen|Typo=Yes",
|
977 |
+
"SCONJ__Case=Loc|Deixis=Prox|PronType=Dem",
|
978 |
+
"SCONJ__Case=Loc|PronType=Int",
|
979 |
+
"SCONJ__Case=Nom",
|
980 |
+
"SCONJ__Degree=Abs",
|
981 |
+
"SCONJ__PronType=Int",
|
982 |
+
"SCONJ__Typo=Yes",
|
983 |
+
"SYM",
|
984 |
+
"VERB",
|
985 |
+
"VERB_ADP__Aspect=Perf|Case=Gen|Mood=Ind|Typo=Yes|Voice=Cau",
|
986 |
+
"VERB_ADP__Aspect=Perf|Case=Gen|Mood=Ind|Voice=Pass",
|
987 |
+
"VERB_ADP__Case=Gen",
|
988 |
+
"VERB_ADV__Aspect=Perf|Mood=Ind|Voice=Act",
|
989 |
+
"VERB_ADV__Aspect=Perf|Mood=Ind|Voice=Pass",
|
990 |
+
"VERB_CCONJ",
|
991 |
+
"VERB_CCONJ__Aspect=Imp|Mood=Pot|Voice=Act",
|
992 |
+
"VERB_DET",
|
993 |
+
"VERB_DET__Case=Nom",
|
994 |
+
"VERB_DET__Polarity=Neg",
|
995 |
+
"VERB_PART",
|
996 |
+
"VERB_PART_NOUN",
|
997 |
+
"VERB_PART_NOUN__Aspect=Imp|Mood=Ind|Voice=Cau",
|
998 |
+
"VERB_PART_VERB",
|
999 |
+
"VERB_PART_VERB__Polarity=Neg",
|
1000 |
+
"VERB_PART__Aspect=Imp|Mood=Ind|Typo=Yes|Voice=Act",
|
1001 |
+
"VERB_PART__Aspect=Imp|Mood=Ind|Voice=Act",
|
1002 |
+
"VERB_PART__Aspect=Imp|Mood=Ind|Voice=Bfoc",
|
1003 |
+
"VERB_PART__Aspect=Imp|Mood=Ind|Voice=Cau",
|
1004 |
+
"VERB_PART__Aspect=Imp|Mood=Ind|Voice=Lfoc",
|
1005 |
+
"VERB_PART__Aspect=Imp|Mood=Ind|Voice=Pass",
|
1006 |
+
"VERB_PART__Aspect=Imp|Mood=Pot|Typo=Yes|Voice=Lfoc",
|
1007 |
+
"VERB_PART__Aspect=Imp|Mood=Pot|Typo=Yes|Voice=Pass",
|
1008 |
+
"VERB_PART__Aspect=Imp|Mood=Pot|Voice=Act",
|
1009 |
+
"VERB_PART__Aspect=Imp|Mood=Pot|Voice=Cau",
|
1010 |
+
"VERB_PART__Aspect=Imp|Mood=Pot|Voice=Lfoc",
|
1011 |
+
"VERB_PART__Aspect=Imp|Mood=Pot|Voice=Pass",
|
1012 |
+
"VERB_PART__Aspect=Perf|Mood=Ind|Voice=Act",
|
1013 |
+
"VERB_PART__Aspect=Perf|Mood=Ind|Voice=Bfoc",
|
1014 |
+
"VERB_PART__Aspect=Perf|Mood=Ind|Voice=Cau",
|
1015 |
+
"VERB_PART__Aspect=Perf|Mood=Ind|Voice=Lfoc",
|
1016 |
+
"VERB_PART__Aspect=Perf|Mood=Ind|Voice=Pass",
|
1017 |
+
"VERB_PART__Aspect=Perf|Mood=Pot|Voice=Act",
|
1018 |
+
"VERB_PART__Aspect=Perf|Mood=Pot|Voice=Pass",
|
1019 |
+
"VERB_PART__Case=Dat|Clusivity=Ex|Number=Plur|Person=1|PronType=Prs",
|
1020 |
+
"VERB_PART__Case=Nom|Deixis=Prox|PronType=Dem",
|
1021 |
+
"VERB_PART__Degree=Sup",
|
1022 |
+
"VERB_PART__Polarity=Neg",
|
1023 |
+
"VERB_PART__Typo=Yes",
|
1024 |
+
"VERB_PRON",
|
1025 |
+
"VERB_PRON__Case=Gen|Number=Sing|Person=1|PronType=Prs",
|
1026 |
+
"VERB_X",
|
1027 |
+
"VERB_X__Aspect=Imp|Mood=Ind|Voice=Pass",
|
1028 |
+
"VERB_X__Aspect=Imp|Mood=Pot|Voice=Act",
|
1029 |
+
"VERB_X__Aspect=Imp|Mood=Pot|Voice=Pass",
|
1030 |
+
"VERB_X__Aspect=Perf|Mood=Ind|Voice=Act",
|
1031 |
+
"VERB_X__Aspect=Perf|Mood=Ind|Voice=Pass",
|
1032 |
+
"VERB_X__Typo=Yes",
|
1033 |
+
"VERB__Aspect=Imp|Mood=Ind|Number=Plur|Voice=Act",
|
1034 |
+
"VERB__Aspect=Imp|Mood=Ind|Typo=Yes|Voice=Lfoc",
|
1035 |
+
"VERB__Aspect=Imp|Mood=Ind|Typo=Yes|Voice=Pass",
|
1036 |
+
"VERB__Aspect=Imp|Mood=Ind|Voice=Act",
|
1037 |
+
"VERB__Aspect=Imp|Mood=Ind|Voice=Bfoc",
|
1038 |
+
"VERB__Aspect=Imp|Mood=Ind|Voice=Cau",
|
1039 |
+
"VERB__Aspect=Imp|Mood=Ind|Voice=Lfoc",
|
1040 |
+
"VERB__Aspect=Imp|Mood=Ind|Voice=Pass",
|
1041 |
+
"VERB__Aspect=Imp|Mood=Pot",
|
1042 |
+
"VERB__Aspect=Imp|Mood=Pot|Number=Plur|Voice=Pass",
|
1043 |
+
"VERB__Aspect=Imp|Mood=Pot|Typo=Yes|Voice=Act",
|
1044 |
+
"VERB__Aspect=Imp|Mood=Pot|Typo=Yes|Voice=Lfoc",
|
1045 |
+
"VERB__Aspect=Imp|Mood=Pot|Typo=Yes|Voice=Pass",
|
1046 |
+
"VERB__Aspect=Imp|Mood=Pot|Voice=Act",
|
1047 |
+
"VERB__Aspect=Imp|Mood=Pot|Voice=Bfoc",
|
1048 |
+
"VERB__Aspect=Imp|Mood=Pot|Voice=Cau",
|
1049 |
+
"VERB__Aspect=Imp|Mood=Pot|Voice=Lfoc",
|
1050 |
+
"VERB__Aspect=Imp|Mood=Pot|Voice=Pass",
|
1051 |
+
"VERB__Aspect=Perf|Mood=Ind",
|
1052 |
+
"VERB__Aspect=Perf|Mood=Ind|NumType=Ord|Voice=Act",
|
1053 |
+
"VERB__Aspect=Perf|Mood=Ind|Number=Plur|Voice=Act",
|
1054 |
+
"VERB__Aspect=Perf|Mood=Ind|Typo=Yes|Voice=Act",
|
1055 |
+
"VERB__Aspect=Perf|Mood=Ind|Typo=Yes|Voice=Bfoc",
|
1056 |
+
"VERB__Aspect=Perf|Mood=Ind|Typo=Yes|Voice=Pass",
|
1057 |
+
"VERB__Aspect=Perf|Mood=Ind|Voice=Act",
|
1058 |
+
"VERB__Aspect=Perf|Mood=Ind|Voice=Bfoc",
|
1059 |
+
"VERB__Aspect=Perf|Mood=Ind|Voice=Cau",
|
1060 |
+
"VERB__Aspect=Perf|Mood=Ind|Voice=Lfoc",
|
1061 |
+
"VERB__Aspect=Perf|Mood=Ind|Voice=Pass",
|
1062 |
+
"VERB__Aspect=Perf|Mood=Pot|Typo=Yes|Voice=Pass",
|
1063 |
+
"VERB__Aspect=Perf|Mood=Pot|Voice=Act",
|
1064 |
+
"VERB__Aspect=Perf|Mood=Pot|Voice=Bfoc",
|
1065 |
+
"VERB__Aspect=Perf|Mood=Pot|Voice=Cau",
|
1066 |
+
"VERB__Aspect=Perf|Mood=Pot|Voice=Lfoc",
|
1067 |
+
"VERB__Aspect=Perf|Mood=Pot|Voice=Pass",
|
1068 |
+
"VERB__Case=Gen|Number=Sing",
|
1069 |
+
"VERB__Case=Loc",
|
1070 |
+
"VERB__Case=Loc|Deixis=Remt|PronType=Dem",
|
1071 |
+
"VERB__Case=Loc|PronType=Int",
|
1072 |
+
"VERB__Case=Nom|Clusivity=In|Number=Plur|Person=1|PronType=Prs",
|
1073 |
+
"VERB__Case=Nom|Deixis=Med|PronType=Dem",
|
1074 |
+
"VERB__Case=Nom|Deixis=Prox|PronType=Dem",
|
1075 |
+
"VERB__Case=Nom|Number=Sing|Person=2|PronType=Prs",
|
1076 |
+
"VERB__Degree=Abs",
|
1077 |
+
"VERB__Degree=Cmp",
|
1078 |
+
"VERB__Degree=Sup",
|
1079 |
+
"VERB__Deixis=Med|PronType=Dem",
|
1080 |
+
"VERB__Deixis=Prox|PronType=Dem",
|
1081 |
+
"VERB__Deixis=Remt|PronType=Dem",
|
1082 |
+
"VERB__NumType=Card",
|
1083 |
+
"VERB__NumType=Ord",
|
1084 |
+
"VERB__Number=Plur",
|
1085 |
+
"VERB__Polarity=Neg",
|
1086 |
+
"VERB__Polarity=Neg|Typo=Yes",
|
1087 |
+
"VERB__PronType=Int",
|
1088 |
+
"VERB__Typo=Yes",
|
1089 |
+
"X",
|
1090 |
+
"X__Aspect=Perf|Mood=Ind",
|
1091 |
+
"X__Aspect=Perf|Mood=Ind|Voice=Act",
|
1092 |
+
"fixed__Case=Loc",
|
1093 |
+
"nsubj_PART__Case=Nom|Number=Sing|Person=3|PronType=Prs"
|
1094 |
+
],
|
1095 |
+
"parser":[
|
1096 |
+
"ROOT",
|
1097 |
+
"acl",
|
1098 |
+
"acl:relcl",
|
1099 |
+
"advcl",
|
1100 |
+
"advmod",
|
1101 |
+
"amod",
|
1102 |
+
"appos",
|
1103 |
+
"case",
|
1104 |
+
"cc",
|
1105 |
+
"ccomp",
|
1106 |
+
"compound",
|
1107 |
+
"compound:redup",
|
1108 |
+
"conj",
|
1109 |
+
"dep",
|
1110 |
+
"det",
|
1111 |
+
"discourse",
|
1112 |
+
"dislocated",
|
1113 |
+
"fixed",
|
1114 |
+
"flat",
|
1115 |
+
"goeswith",
|
1116 |
+
"list",
|
1117 |
+
"mark",
|
1118 |
+
"nmod",
|
1119 |
+
"nmod:poss",
|
1120 |
+
"nsubj",
|
1121 |
+
"nummod",
|
1122 |
+
"obj",
|
1123 |
+
"obj:agent",
|
1124 |
+
"obl",
|
1125 |
+
"orphan",
|
1126 |
+
"parataxis",
|
1127 |
+
"punct",
|
1128 |
+
"vocative",
|
1129 |
+
"xcomp"
|
1130 |
+
]
|
1131 |
+
},
|
1132 |
+
"pipeline":[
|
1133 |
+
"tok2vec",
|
1134 |
+
"trainable_lemmatizer",
|
1135 |
+
"morphologizer",
|
1136 |
+
"tagger",
|
1137 |
+
"parser"
|
1138 |
+
],
|
1139 |
+
"components":[
|
1140 |
+
"tok2vec",
|
1141 |
+
"trainable_lemmatizer",
|
1142 |
+
"morphologizer",
|
1143 |
+
"tagger",
|
1144 |
+
"parser"
|
1145 |
+
],
|
1146 |
+
"disabled":[
|
1147 |
+
|
1148 |
+
],
|
1149 |
+
"performance":{
|
1150 |
+
"lemma_acc":0.898907308,
|
1151 |
+
"pos_acc":0.9518314405,
|
1152 |
+
"morph_acc":0.9545440697,
|
1153 |
+
"morph_per_feat":{
|
1154 |
+
"Case":{
|
1155 |
+
"p":0.9926678672,
|
1156 |
+
"r":0.9853166496,
|
1157 |
+
"f":0.988978598
|
1158 |
+
},
|
1159 |
+
"Number":{
|
1160 |
+
"p":0.9974536195,
|
1161 |
+
"r":0.992040521,
|
1162 |
+
"f":0.9947397061
|
1163 |
+
},
|
1164 |
+
"Person":{
|
1165 |
+
"p":0.9992217899,
|
1166 |
+
"r":0.9884526559,
|
1167 |
+
"f":0.9938080495
|
1168 |
+
},
|
1169 |
+
"PronType":{
|
1170 |
+
"p":0.9995037221,
|
1171 |
+
"r":0.9659472422,
|
1172 |
+
"f":0.9824390244
|
1173 |
+
},
|
1174 |
+
"Polarity":{
|
1175 |
+
"p":1.0,
|
1176 |
+
"r":0.9660633484,
|
1177 |
+
"f":0.9827387802
|
1178 |
+
},
|
1179 |
+
"Aspect":{
|
1180 |
+
"p":0.9392324094,
|
1181 |
+
"r":0.9116936875,
|
1182 |
+
"f":0.9252581831
|
1183 |
+
},
|
1184 |
+
"Mood":{
|
1185 |
+
"p":0.9398576512,
|
1186 |
+
"r":0.9110037944,
|
1187 |
+
"f":0.9252058154
|
1188 |
+
},
|
1189 |
+
"Voice":{
|
1190 |
+
"p":0.8395588758,
|
1191 |
+
"r":0.8143547274,
|
1192 |
+
"f":0.8267647574
|
1193 |
+
},
|
1194 |
+
"Deixis":{
|
1195 |
+
"p":0.9948006932,
|
1196 |
+
"r":0.9184,
|
1197 |
+
"f":0.9550748752
|
1198 |
+
},
|
1199 |
+
"NumType":{
|
1200 |
+
"p":0.9927536232,
|
1201 |
+
"r":0.8838709677,
|
1202 |
+
"f":0.9351535836
|
1203 |
+
},
|
1204 |
+
"Abbr":{
|
1205 |
+
"p":0.8571428571,
|
1206 |
+
"r":0.0425531915,
|
1207 |
+
"f":0.0810810811
|
1208 |
+
},
|
1209 |
+
"Clusivity":{
|
1210 |
+
"p":1.0,
|
1211 |
+
"r":0.9733333333,
|
1212 |
+
"f":0.9864864865
|
1213 |
+
},
|
1214 |
+
"Polite":{
|
1215 |
+
"p":1.0,
|
1216 |
+
"r":0.9642857143,
|
1217 |
+
"f":0.9818181818
|
1218 |
+
},
|
1219 |
+
"PartType":{
|
1220 |
+
"p":1.0,
|
1221 |
+
"r":0.7659574468,
|
1222 |
+
"f":0.8674698795
|
1223 |
+
},
|
1224 |
+
"Typo":{
|
1225 |
+
"p":0.7142857143,
|
1226 |
+
"r":0.0862068966,
|
1227 |
+
"f":0.1538461538
|
1228 |
+
},
|
1229 |
+
"Degree":{
|
1230 |
+
"p":1.0,
|
1231 |
+
"r":0.6388888889,
|
1232 |
+
"f":0.7796610169
|
1233 |
+
}
|
1234 |
+
},
|
1235 |
+
"tag_acc":0.9104595639,
|
1236 |
+
"dep_uas":0.839771627,
|
1237 |
+
"dep_las":0.7760871373,
|
1238 |
+
"dep_las_per_type":{
|
1239 |
+
"mark":{
|
1240 |
+
"p":0.8208446866,
|
1241 |
+
"r":0.8027981346,
|
1242 |
+
"f":0.8117211182
|
1243 |
+
},
|
1244 |
+
"nmod":{
|
1245 |
+
"p":0.5465066438,
|
1246 |
+
"r":0.6384576865,
|
1247 |
+
"f":0.5889145497
|
1248 |
+
},
|
1249 |
+
"advcl":{
|
1250 |
+
"p":0.4832985386,
|
1251 |
+
"r":0.5054585153,
|
1252 |
+
"f":0.4941302028
|
1253 |
+
},
|
1254 |
+
"nsubj":{
|
1255 |
+
"p":0.8073984721,
|
1256 |
+
"r":0.8405190456,
|
1257 |
+
"f":0.8236259229
|
1258 |
+
},
|
1259 |
+
"discourse":{
|
1260 |
+
"p":0.7569892473,
|
1261 |
+
"r":0.7364016736,
|
1262 |
+
"f":0.7465535525
|
1263 |
+
},
|
1264 |
+
"advmod":{
|
1265 |
+
"p":0.7834558824,
|
1266 |
+
"r":0.8167880414,
|
1267 |
+
"f":0.799774817
|
1268 |
+
},
|
1269 |
+
"root":{
|
1270 |
+
"p":0.8453145058,
|
1271 |
+
"r":0.8436899423,
|
1272 |
+
"f":0.8445014428
|
1273 |
+
},
|
1274 |
+
"ccomp":{
|
1275 |
+
"p":0.5522041763,
|
1276 |
+
"r":0.6574585635,
|
1277 |
+
"f":0.6002522068
|
1278 |
+
},
|
1279 |
+
"case":{
|
1280 |
+
"p":0.9079782412,
|
1281 |
+
"r":0.9040848567,
|
1282 |
+
"f":0.9060273663
|
1283 |
+
},
|
1284 |
+
"det":{
|
1285 |
+
"p":0.9539242483,
|
1286 |
+
"r":0.9296042618,
|
1287 |
+
"f":0.9416072461
|
1288 |
+
},
|
1289 |
+
"obl":{
|
1290 |
+
"p":0.7297979798,
|
1291 |
+
"r":0.6836191603,
|
1292 |
+
"f":0.7059541985
|
1293 |
+
},
|
1294 |
+
"xcomp":{
|
1295 |
+
"p":0.6976744186,
|
1296 |
+
"r":0.5119453925,
|
1297 |
+
"f":0.5905511811
|
1298 |
+
},
|
1299 |
+
"acl:relcl":{
|
1300 |
+
"p":0.6835443038,
|
1301 |
+
"r":0.6797202797,
|
1302 |
+
"f":0.6816269285
|
1303 |
+
},
|
1304 |
+
"obj:agent":{
|
1305 |
+
"p":0.836970475,
|
1306 |
+
"r":0.8545216252,
|
1307 |
+
"f":0.8456549935
|
1308 |
+
},
|
1309 |
+
"flat":{
|
1310 |
+
"p":0.8298355077,
|
1311 |
+
"r":0.8631268437,
|
1312 |
+
"f":0.8461538462
|
1313 |
+
},
|
1314 |
+
"nummod":{
|
1315 |
+
"p":0.8575129534,
|
1316 |
+
"r":0.793764988,
|
1317 |
+
"f":0.8244084682
|
1318 |
+
},
|
1319 |
+
"nmod:poss":{
|
1320 |
+
"p":0.8207343413,
|
1321 |
+
"r":0.7414634146,
|
1322 |
+
"f":0.7790876474
|
1323 |
+
},
|
1324 |
+
"acl":{
|
1325 |
+
"p":1.0,
|
1326 |
+
"r":0.0196078431,
|
1327 |
+
"f":0.0384615385
|
1328 |
+
},
|
1329 |
+
"appos":{
|
1330 |
+
"p":0.485,
|
1331 |
+
"r":0.5511363636,
|
1332 |
+
"f":0.5159574468
|
1333 |
+
},
|
1334 |
+
"cc":{
|
1335 |
+
"p":0.8564650059,
|
1336 |
+
"r":0.8474178404,
|
1337 |
+
"f":0.8519174041
|
1338 |
+
},
|
1339 |
+
"conj":{
|
1340 |
+
"p":0.661909989,
|
1341 |
+
"r":0.6374207188,
|
1342 |
+
"f":0.6494345719
|
1343 |
+
},
|
1344 |
+
"parataxis":{
|
1345 |
+
"p":0.2302839117,
|
1346 |
+
"r":0.4424242424,
|
1347 |
+
"f":0.3029045643
|
1348 |
+
},
|
1349 |
+
"amod":{
|
1350 |
+
"p":0.727532097,
|
1351 |
+
"r":0.7223796034,
|
1352 |
+
"f":0.7249466951
|
1353 |
+
},
|
1354 |
+
"fixed":{
|
1355 |
+
"p":0.7904040404,
|
1356 |
+
"r":0.6924778761,
|
1357 |
+
"f":0.7382075472
|
1358 |
+
},
|
1359 |
+
"obj":{
|
1360 |
+
"p":0.7373417722,
|
1361 |
+
"r":0.7993138937,
|
1362 |
+
"f":0.7670781893
|
1363 |
+
},
|
1364 |
+
"dislocated":{
|
1365 |
+
"p":0.4032258065,
|
1366 |
+
"r":0.2976190476,
|
1367 |
+
"f":0.3424657534
|
1368 |
+
},
|
1369 |
+
"compound":{
|
1370 |
+
"p":0.4942528736,
|
1371 |
+
"r":0.150877193,
|
1372 |
+
"f":0.2311827957
|
1373 |
+
},
|
1374 |
+
"dep":{
|
1375 |
+
"p":0.2098765432,
|
1376 |
+
"r":0.2394366197,
|
1377 |
+
"f":0.2236842105
|
1378 |
+
},
|
1379 |
+
"compound:redup":{
|
1380 |
+
"p":0.487804878,
|
1381 |
+
"r":0.5128205128,
|
1382 |
+
"f":0.5
|
1383 |
+
},
|
1384 |
+
"list":{
|
1385 |
+
"p":0.1818181818,
|
1386 |
+
"r":0.2352941176,
|
1387 |
+
"f":0.2051282051
|
1388 |
+
},
|
1389 |
+
"vocative":{
|
1390 |
+
"p":0.4166666667,
|
1391 |
+
"r":0.3846153846,
|
1392 |
+
"f":0.4
|
1393 |
+
},
|
1394 |
+
"orphan":{
|
1395 |
+
"p":0.0,
|
1396 |
+
"r":0.0,
|
1397 |
+
"f":0.0
|
1398 |
+
},
|
1399 |
+
"reparandum":{
|
1400 |
+
"p":0.0,
|
1401 |
+
"r":0.0,
|
1402 |
+
"f":0.0
|
1403 |
+
},
|
1404 |
+
"expl":{
|
1405 |
+
"p":0.0,
|
1406 |
+
"r":0.0,
|
1407 |
+
"f":0.0
|
1408 |
+
},
|
1409 |
+
"goeswith":{
|
1410 |
+
"p":0.0,
|
1411 |
+
"r":0.0,
|
1412 |
+
"f":0.0
|
1413 |
+
}
|
1414 |
+
},
|
1415 |
+
"sents_p":0.9980769231,
|
1416 |
+
"sents_r":0.99743754,
|
1417 |
+
"sents_f":0.9977571291,
|
1418 |
+
"tok2vec_loss":38199.4758845474,
|
1419 |
+
"trainable_lemmatizer_loss":12417.8014602661,
|
1420 |
+
"morphologizer_loss":16823.8190917969,
|
1421 |
+
"tagger_loss":18369.9941864014,
|
1422 |
+
"parser_loss":45870.9664939977
|
1423 |
+
},
|
1424 |
+
"parent_package":"spacy",
|
1425 |
+
"sources":[
|
1426 |
+
{
|
1427 |
+
"name":"UD_Tagalog-NewsCrawl",
|
1428 |
+
"license":"CC BY NC",
|
1429 |
+
"author":"Angelina A. Aquino and Lester James V. Miranda and Elsie Marie T. Or",
|
1430 |
+
"url":"https://huggingface.co/datasets/UD-Filipino/UD_Tagalog-NewsCrawl"
|
1431 |
+
}
|
1432 |
+
],
|
1433 |
+
"requirements":[
|
1434 |
+
|
1435 |
+
]
|
1436 |
+
}
|
morphologizer/cfg
ADDED
@@ -0,0 +1,881 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"extend":false,
|
3 |
+
"label_smoothing":0.05,
|
4 |
+
"labels_morph":{
|
5 |
+
"POS=PART":"",
|
6 |
+
"POS=PUNCT":"",
|
7 |
+
"POS=ADV|Polarity=Neg":"Polarity=Neg",
|
8 |
+
"POS=PART|PartType=Int":"PartType=Int",
|
9 |
+
"Case=Nom|Number=Sing|POS=PRON|Person=3|PronType=Prs":"Case=Nom|Number=Sing|Person=3|PronType=Prs",
|
10 |
+
"POS=ADV":"",
|
11 |
+
"POS=ADJ":"",
|
12 |
+
"Case=Nom|POS=DET":"Case=Nom",
|
13 |
+
"POS=NOUN":"",
|
14 |
+
"Case=Gen|Number=Plur|POS=PRON|Person=3|PronType=Prs":"Case=Gen|Number=Plur|Person=3|PronType=Prs",
|
15 |
+
"Case=Nom|Number=Sing|POS=PRON|Person=1|PronType=Prs":"Case=Nom|Number=Sing|Person=1|PronType=Prs",
|
16 |
+
"Aspect=Imp|Mood=Ind|POS=VERB|Voice=Pass":"Aspect=Imp|Mood=Ind|Voice=Pass",
|
17 |
+
"POS=PROPN":"",
|
18 |
+
"POS=VERB":"",
|
19 |
+
"POS=NUM":"",
|
20 |
+
"POS=CCONJ":"",
|
21 |
+
"Case=Nom|Number=Plur|POS=PRON|Person=3|PronType=Prs":"Case=Nom|Number=Plur|Person=3|PronType=Prs",
|
22 |
+
"Case=Gen|POS=ADP":"Case=Gen",
|
23 |
+
"Case=Nom|Number=Sing|POS=PRON|Person=2|PronType=Prs":"Case=Nom|Number=Sing|Person=2|PronType=Prs",
|
24 |
+
"Case=Loc|POS=ADP":"Case=Loc",
|
25 |
+
"Case=Dat|Number=Sing|POS=PRON|Person=2|PronType=Prs":"Case=Dat|Number=Sing|Person=2|PronType=Prs",
|
26 |
+
"Case=Gen|Clusivity=Ex|Number=Plur|POS=PRON|Person=1|PronType=Prs":"Case=Gen|Clusivity=Ex|Number=Plur|Person=1|PronType=Prs",
|
27 |
+
"POS=SCONJ":"",
|
28 |
+
"POS=ADV|PronType=Int":"PronType=Int",
|
29 |
+
"Case=Nom|Clusivity=Ex|Number=Plur|POS=PRON|Person=1|PronType=Prs":"Case=Nom|Clusivity=Ex|Number=Plur|Person=1|PronType=Prs",
|
30 |
+
"Aspect=Perf|Mood=Ind|POS=VERB|Voice=Act":"Aspect=Perf|Mood=Ind|Voice=Act",
|
31 |
+
"POS=PART|Polite=Form":"Polite=Form",
|
32 |
+
"Aspect=Perf|Mood=Pot|POS=VERB|Voice=Lfoc":"Aspect=Perf|Mood=Pot|Voice=Lfoc",
|
33 |
+
"Case=Gen|Number=Plur|POS=PRON|Person=2|PronType=Prs":"Case=Gen|Number=Plur|Person=2|PronType=Prs",
|
34 |
+
"Case=Gen|Number=Sing|POS=PRON|Person=1|PronType=Prs":"Case=Gen|Number=Sing|Person=1|PronType=Prs",
|
35 |
+
"POS=VERB|Polarity=Neg":"Polarity=Neg",
|
36 |
+
"Aspect=Perf|Mood=Ind|POS=VERB|Voice=Pass":"Aspect=Perf|Mood=Ind|Voice=Pass",
|
37 |
+
"POS=DET":"",
|
38 |
+
"NumType=Card|POS=NUM":"NumType=Card",
|
39 |
+
"Case=Dat|Number=Sing|POS=ADP":"Case=Dat|Number=Sing",
|
40 |
+
"Aspect=Imp|Mood=Pot|POS=VERB|Voice=Act":"Aspect=Imp|Mood=Pot|Voice=Act",
|
41 |
+
"Number=Plur|POS=DET":"Number=Plur",
|
42 |
+
"POS=PRON|PronType=Int":"PronType=Int",
|
43 |
+
"Aspect=Imp|Mood=Pot|POS=VERB|Voice=Pass":"Aspect=Imp|Mood=Pot|Voice=Pass",
|
44 |
+
"Case=Nom|Number=Plur|POS=PRON|Person=2|PronType=Prs":"Case=Nom|Number=Plur|Person=2|PronType=Prs",
|
45 |
+
"Aspect=Imp|Mood=Pot|POS=VERB|Voice=Lfoc":"Aspect=Imp|Mood=Pot|Voice=Lfoc",
|
46 |
+
"Case=Loc|Deixis=Prox|POS=PRON|PronType=Dem":"Case=Loc|Deixis=Prox|PronType=Dem",
|
47 |
+
"Case=Nom|Number=Sing|POS=DET":"Case=Nom|Number=Sing",
|
48 |
+
"Aspect=Imp|Mood=Ind|POS=VERB|Voice=Act":"Aspect=Imp|Mood=Ind|Voice=Act",
|
49 |
+
"Case=Dat|Clusivity=In|Number=Plur|POS=PRON|Person=1|PronType=Prs":"Case=Dat|Clusivity=In|Number=Plur|Person=1|PronType=Prs",
|
50 |
+
"Case=Gen|Number=Sing|POS=ADP":"Case=Gen|Number=Sing",
|
51 |
+
"Aspect=Perf|Mood=Pot|POS=VERB|Voice=Pass":"Aspect=Perf|Mood=Pot|Voice=Pass",
|
52 |
+
"Case=Nom|Deixis=Prox|POS=PRON|PronType=Dem":"Case=Nom|Deixis=Prox|PronType=Dem",
|
53 |
+
"Case=Dat|Number=Sing|POS=PRON|Person=3|PronType=Prs":"Case=Dat|Number=Sing|Person=3|PronType=Prs",
|
54 |
+
"POS=PRON":"",
|
55 |
+
"Case=Nom|Deixis=Remt|POS=PRON|PronType=Dem":"Case=Nom|Deixis=Remt|PronType=Dem",
|
56 |
+
"Case=Gen|Number=Sing|POS=PRON|Person=3|PronType=Prs":"Case=Gen|Number=Sing|Person=3|PronType=Prs",
|
57 |
+
"Case=Gen|Number=Sing|POS=PRON|Person=2|PronType=Prs":"Case=Gen|Number=Sing|Person=2|PronType=Prs",
|
58 |
+
"POS=ADP":"",
|
59 |
+
"Case=Dat|Number=Sing|POS=PRON|Person=1|PronType=Prs":"Case=Dat|Number=Sing|Person=1|PronType=Prs",
|
60 |
+
"Case=Gen|Clusivity=In|Number=Plur|POS=PRON|Person=1|PronType=Prs":"Case=Gen|Clusivity=In|Number=Plur|Person=1|PronType=Prs",
|
61 |
+
"Case=Loc|POS=ADV|PronType=Int":"Case=Loc|PronType=Int",
|
62 |
+
"Case=Loc|POS=PROPN":"Case=Loc",
|
63 |
+
"POS=SYM":"",
|
64 |
+
"POS=PROPN|PronType=Int":"PronType=Int",
|
65 |
+
"POS=PROPN|PartType=Int":"PartType=Int",
|
66 |
+
"Case=Gen|Deixis=Prox|POS=PRON|PronType=Dem":"Case=Gen|Deixis=Prox|PronType=Dem",
|
67 |
+
"NumType=Ord|POS=ADJ":"NumType=Ord",
|
68 |
+
"Aspect=Perf|Mood=Pot|POS=VERB|Voice=Act":"Aspect=Perf|Mood=Pot|Voice=Act",
|
69 |
+
"Aspect=Perf|Mood=Ind|POS=NOUN|Voice=Pass":"Aspect=Perf|Mood=Ind|Voice=Pass",
|
70 |
+
"Aspect=Perf|Mood=Ind|POS=VERB|Typo=Yes|Voice=Act":"Aspect=Perf|Mood=Ind|Typo=Yes|Voice=Act",
|
71 |
+
"Case=Gen|Number=Plur|POS=ADP":"Case=Gen|Number=Plur",
|
72 |
+
"Aspect=Perf|Mood=Ind|POS=VERB|Voice=Bfoc":"Aspect=Perf|Mood=Ind|Voice=Bfoc",
|
73 |
+
"Case=Dat|Number=Plur|POS=PRON|Person=3|PronType=Prs":"Case=Dat|Number=Plur|Person=3|PronType=Prs",
|
74 |
+
"Case=Dat|Clusivity=Ex|Number=Plur|POS=PRON|Person=1|PronType=Prs":"Case=Dat|Clusivity=Ex|Number=Plur|Person=1|PronType=Prs",
|
75 |
+
"Case=Nom|POS=PRON|PronType=Int":"Case=Nom|PronType=Int",
|
76 |
+
"Aspect=Perf|Mood=Ind|POS=VERB|Voice=Lfoc":"Aspect=Perf|Mood=Ind|Voice=Lfoc",
|
77 |
+
"Case=Loc|Deixis=Remt|POS=PRON|PronType=Dem":"Case=Loc|Deixis=Remt|PronType=Dem",
|
78 |
+
"Case=Gen|POS=PROPN":"Case=Gen",
|
79 |
+
"Case=Nom|Number=Plur|POS=DET":"Case=Nom|Number=Plur",
|
80 |
+
"Aspect=Perf|Mood=Ind|POS=ADJ|Voice=Pass":"Aspect=Perf|Mood=Ind|Voice=Pass",
|
81 |
+
"NumType=Frac|POS=NUM":"NumType=Frac",
|
82 |
+
"Case=Nom|Clusivity=In|Number=Dual|POS=PRON|Person=1|PronType=Prs":"Case=Nom|Clusivity=In|Number=Dual|Person=1|PronType=Prs",
|
83 |
+
"POS=INTJ":"",
|
84 |
+
"Case=Gen|POS=ADP|Typo=Yes":"Case=Gen|Typo=Yes",
|
85 |
+
"Aspect=Perf|Mood=Ind|POS=PRON|Voice=Act":"Aspect=Perf|Mood=Ind|Voice=Act",
|
86 |
+
"Case=Nom|Deixis=Med|POS=PRON|PronType=Dem":"Case=Nom|Deixis=Med|PronType=Dem",
|
87 |
+
"Aspect=Perf|Mood=Ind|POS=VERB|Voice=Cau":"Aspect=Perf|Mood=Ind|Voice=Cau",
|
88 |
+
"Aspect=Imp|Mood=Ind|POS=VERB|Voice=Bfoc":"Aspect=Imp|Mood=Ind|Voice=Bfoc",
|
89 |
+
"Aspect=Imp|Mood=Pot|POS=VERB|Voice=Bfoc":"Aspect=Imp|Mood=Pot|Voice=Bfoc",
|
90 |
+
"Degree=Sup|POS=ADJ":"Degree=Sup",
|
91 |
+
"Case=Loc|POS=NOUN|Typo=Yes":"Case=Loc|Typo=Yes",
|
92 |
+
"Case=Nom|Number=Sing|POS=DET|Typo=Yes":"Case=Nom|Number=Sing|Typo=Yes",
|
93 |
+
"Aspect=Imp|Mood=Ind|POS=VERB|Voice=Lfoc":"Aspect=Imp|Mood=Ind|Voice=Lfoc",
|
94 |
+
"Case=Gen|Number=Sing|POS=PROPN":"Case=Gen|Number=Sing",
|
95 |
+
"Case=Dat|Number=Plur|POS=PRON|Person=2|PronType=Prs":"Case=Dat|Number=Plur|Person=2|PronType=Prs",
|
96 |
+
"Case=Loc|Deixis=Med|POS=PRON|PronType=Dem":"Case=Loc|Deixis=Med|PronType=Dem",
|
97 |
+
"Case=Dat|Number=Plur|POS=ADP":"Case=Dat|Number=Plur",
|
98 |
+
"Case=Nom|Clusivity=In|Number=Plur|POS=PRON|Person=1|PronType=Prs":"Case=Nom|Clusivity=In|Number=Plur|Person=1|PronType=Prs",
|
99 |
+
"Aspect=Imp|Mood=Pot|POS=VERB|Voice=Cau":"Aspect=Imp|Mood=Pot|Voice=Cau",
|
100 |
+
"NumType=Ord|POS=PROPN":"NumType=Ord",
|
101 |
+
"POS=NOUN|Typo=Yes":"Typo=Yes",
|
102 |
+
"POS=PROPN|Typo=Yes":"Typo=Yes",
|
103 |
+
"Aspect=Imp|Mood=Ind|POS=VERB|Voice=Cau":"Aspect=Imp|Mood=Ind|Voice=Cau",
|
104 |
+
"Number=Plur|POS=PROPN":"Number=Plur",
|
105 |
+
"Aspect=Perf|Mood=Ind|POS=NOUN|Voice=Act":"Aspect=Perf|Mood=Ind|Voice=Act",
|
106 |
+
"Case=Loc|Deixis=Prox|POS=SCONJ|PronType=Dem":"Case=Loc|Deixis=Prox|PronType=Dem",
|
107 |
+
"Case=Loc|Deixis=Prox|POS=NOUN|PronType=Dem":"Case=Loc|Deixis=Prox|PronType=Dem",
|
108 |
+
"NumType=Card|POS=ADV":"NumType=Card",
|
109 |
+
"Case=Nom|Deixis=Remt|POS=PROPN|PronType=Dem":"Case=Nom|Deixis=Remt|PronType=Dem",
|
110 |
+
"Aspect=Imp|Mood=Pot|POS=NOUN|Voice=Act":"Aspect=Imp|Mood=Pot|Voice=Act",
|
111 |
+
"Aspect=Imp|Mood=Pot|POS=ADV|Voice=Pass":"Aspect=Imp|Mood=Pot|Voice=Pass",
|
112 |
+
"Case=Dat|Clusivity=Ex|Number=Plur|POS=ADJ|Person=1|PronType=Prs":"Case=Dat|Clusivity=Ex|Number=Plur|Person=1|PronType=Prs",
|
113 |
+
"NumType=Card|POS=PROPN":"NumType=Card",
|
114 |
+
"Case=Dat|Number=Sing|POS=NOUN|Person=1|PronType=Prs":"Case=Dat|Number=Sing|Person=1|PronType=Prs",
|
115 |
+
"Aspect=Imp|Mood=Pot|POS=PROPN|Voice=Pass":"Aspect=Imp|Mood=Pot|Voice=Pass",
|
116 |
+
"Deixis=Remt|POS=PROPN|PronType=Dem":"Deixis=Remt|PronType=Dem",
|
117 |
+
"Deixis=Remt|POS=PRON|PronType=Dem":"Deixis=Remt|PronType=Dem",
|
118 |
+
"Aspect=Perf|Mood=Ind|POS=PROPN|Voice=Pass":"Aspect=Perf|Mood=Ind|Voice=Pass",
|
119 |
+
"Aspect=Imp|Mood=Pot|POS=NOUN|Voice=Pass":"Aspect=Imp|Mood=Pot|Voice=Pass",
|
120 |
+
"POS=NOUN|PronType=Int":"PronType=Int",
|
121 |
+
"Case=Nom|POS=PRON|PronType=Ind":"Case=Nom|PronType=Ind",
|
122 |
+
"Aspect=Perf|Mood=Ind|POS=NOUN|Voice=Lfoc":"Aspect=Perf|Mood=Ind|Voice=Lfoc",
|
123 |
+
"Case=Gen|Number=Sing|POS=DET":"Case=Gen|Number=Sing",
|
124 |
+
"Case=Gen|POS=SCONJ|Typo=Yes":"Case=Gen|Typo=Yes",
|
125 |
+
"Case=Gen|POS=PART":"Case=Gen",
|
126 |
+
"POS=VERB|Typo=Yes":"Typo=Yes",
|
127 |
+
"Case=Gen|Number=Plur|POS=PRON|Person=2|PronType=Prs|Typo=Yes":"Case=Gen|Number=Plur|Person=2|PronType=Prs|Typo=Yes",
|
128 |
+
"POS=PART|Typo=Yes":"Typo=Yes",
|
129 |
+
"Aspect=Perf|Mood=Ind|POS=PRON|Voice=Pass":"Aspect=Perf|Mood=Ind|Voice=Pass",
|
130 |
+
"NumType=Card|POS=NOUN":"NumType=Card",
|
131 |
+
"POS=SCONJ|Typo=Yes":"Typo=Yes",
|
132 |
+
"Abbr=Yes|POS=ADJ":"Abbr=Yes",
|
133 |
+
"POS=ADV|Typo=Yes":"Typo=Yes",
|
134 |
+
"Case=Gen|Deixis=Remt|POS=ADV|PronType=Dem":"Case=Gen|Deixis=Remt|PronType=Dem",
|
135 |
+
"Number=Plur|POS=VERB":"Number=Plur",
|
136 |
+
"Aspect=Imp|Mood=Pot|Number=Plur|POS=VERB|Voice=Pass":"Aspect=Imp|Mood=Pot|Number=Plur|Voice=Pass",
|
137 |
+
"POS=NUM|PronType=Int":"PronType=Int",
|
138 |
+
"POS=X":"",
|
139 |
+
"Abbr=Yes|POS=PROPN":"Abbr=Yes",
|
140 |
+
"Degree=Equ|POS=ADJ":"Degree=Equ",
|
141 |
+
"Case=Dat|Number=Sing|POS=ADJ|Person=2|PronType=Prs":"Case=Dat|Number=Sing|Person=2|PronType=Prs",
|
142 |
+
"POS=CCONJ|Typo=Yes":"Typo=Yes",
|
143 |
+
"Case=Gen|Number=Sing|POS=ADP|Typo=Yes":"Case=Gen|Number=Sing|Typo=Yes",
|
144 |
+
"POS=ADJ|Typo=Yes":"Typo=Yes",
|
145 |
+
"POS=PRON|PronType=Dem":"PronType=Dem",
|
146 |
+
"NumType=Ord|POS=NUM":"NumType=Ord",
|
147 |
+
"Case=Dat|Clusivity=Ex|Number=Plur|POS=VERB|Person=1|PronType=Prs":"Case=Dat|Clusivity=Ex|Number=Plur|Person=1|PronType=Prs",
|
148 |
+
"Case=Nom|Number=Dual|POS=PRON|Person=2|PronType=Prs":"Case=Nom|Number=Dual|Person=2|PronType=Prs",
|
149 |
+
"Case=Loc|Deixis=Prox|POS=ADV|PronType=Dem":"Case=Loc|Deixis=Prox|PronType=Dem",
|
150 |
+
"Aspect=Perf|Mood=Ind|POS=VERB":"Aspect=Perf|Mood=Ind",
|
151 |
+
"POS=DET|Typo=Yes":"Typo=Yes",
|
152 |
+
"Case=Loc|Deixis=Remt|POS=ADV|PronType=Dem":"Case=Loc|Deixis=Remt|PronType=Dem",
|
153 |
+
"Aspect=Perf|Mood=Ind|POS=X":"Aspect=Perf|Mood=Ind",
|
154 |
+
"NumType=Ord|POS=ADV":"NumType=Ord",
|
155 |
+
"Aspect=Imp|Mood=Pot|POS=SCONJ|Voice=Act":"Aspect=Imp|Mood=Pot|Voice=Act",
|
156 |
+
"Case=Loc|POS=NOUN":"Case=Loc",
|
157 |
+
"Degree=Sup|POS=ADV":"Degree=Sup",
|
158 |
+
"Case=Gen|Number=Sing|POS=PRON|Person=1|PronType=Prs|Typo=Yes":"Case=Gen|Number=Sing|Person=1|PronType=Prs|Typo=Yes",
|
159 |
+
"Case=Gen|POS=PART|Typo=Yes":"Case=Gen|Typo=Yes",
|
160 |
+
"Aspect=Perf|Mood=Ind|POS=VERB|Typo=Yes|Voice=Pass":"Aspect=Perf|Mood=Ind|Typo=Yes|Voice=Pass",
|
161 |
+
"Aspect=Imp|Mood=Pot|POS=VERB":"Aspect=Imp|Mood=Pot",
|
162 |
+
"Case=Dat|Number=Sing|POS=NOUN|Person=3|PronType=Prs":"Case=Dat|Number=Sing|Person=3|PronType=Prs",
|
163 |
+
"Number=Plur|POS=NOUN":"Number=Plur",
|
164 |
+
"Case=Dat|Number=Sing|POS=NOUN":"Case=Dat|Number=Sing",
|
165 |
+
"Aspect=Imp|Mood=Pot|POS=NOUN|Voice=Bfoc":"Aspect=Imp|Mood=Pot|Voice=Bfoc",
|
166 |
+
"Case=Gen|Deixis=Remt|POS=PRON|PronType=Dem":"Case=Gen|Deixis=Remt|PronType=Dem",
|
167 |
+
"Deixis=Med|POS=PRON|PronType=Dem":"Deixis=Med|PronType=Dem",
|
168 |
+
"POS=PRON|PronType=Tot":"PronType=Tot",
|
169 |
+
"Case=Nom|Number=Sing|POS=NOUN|Person=3|PronType=Prs":"Case=Nom|Number=Sing|Person=3|PronType=Prs",
|
170 |
+
"Aspect=Imp|Mood=Pot|POS=NOUN|Voice=Lfoc":"Aspect=Imp|Mood=Pot|Voice=Lfoc",
|
171 |
+
"NumType=Frac|POS=NOUN":"NumType=Frac",
|
172 |
+
"NumType=Card|POS=ADJ":"NumType=Card",
|
173 |
+
"Case=Gen|Number=Sing|POS=PROPN|Person=2|PronType=Prs":"Case=Gen|Number=Sing|Person=2|PronType=Prs",
|
174 |
+
"Case=Nom|Number=Sing|POS=PROPN|Person=1|PronType=Prs":"Case=Nom|Number=Sing|Person=1|PronType=Prs",
|
175 |
+
"Case=Nom|POS=PROPN":"Case=Nom",
|
176 |
+
"Case=Gen|Number=Sing|POS=VERB":"Case=Gen|Number=Sing",
|
177 |
+
"Deixis=Prox|POS=PRON|PronType=Dem":"Deixis=Prox|PronType=Dem",
|
178 |
+
"Aspect=Imp|Mood=Pot|POS=PROPN|Voice=Lfoc":"Aspect=Imp|Mood=Pot|Voice=Lfoc",
|
179 |
+
"Case=Nom|Deixis=Remt|POS=NOUN|PronType=Dem":"Case=Nom|Deixis=Remt|PronType=Dem",
|
180 |
+
"Case=Dat|POS=ADP":"Case=Dat",
|
181 |
+
"Case=Loc|POS=VERB|PronType=Int":"Case=Loc|PronType=Int",
|
182 |
+
"POS=PRON|Person=1":"Person=1",
|
183 |
+
"Aspect=Perf|Mood=Ind|POS=SCONJ|Voice=Pass":"Aspect=Perf|Mood=Ind|Voice=Pass",
|
184 |
+
"Degree=Sup|POS=VERB":"Degree=Sup",
|
185 |
+
"Aspect=Imp|Mood=Ind|POS=SCONJ|Voice=Act":"Aspect=Imp|Mood=Ind|Voice=Act",
|
186 |
+
"Case=Gen|Number=Plur|POS=NOUN|Person=2|PronType=Prs":"Case=Gen|Number=Plur|Person=2|PronType=Prs",
|
187 |
+
"Aspect=Imp|Mood=Ind|POS=NOUN|Voice=Act":"Aspect=Imp|Mood=Ind|Voice=Act",
|
188 |
+
"Case=Gen|Number=Sing|POS=ADV|Person=2|PronType=Prs":"Case=Gen|Number=Sing|Person=2|PronType=Prs",
|
189 |
+
"Case=Loc|POS=NOUN|PronType=Int":"Case=Loc|PronType=Int",
|
190 |
+
"Aspect=Imp|Mood=Pot|POS=ADP|Voice=Act":"Aspect=Imp|Mood=Pot|Voice=Act",
|
191 |
+
"Case=Gen|Deixis=Prox|POS=ADV|PronType=Dem":"Case=Gen|Deixis=Prox|PronType=Dem",
|
192 |
+
"Aspect=Imp|Mood=Ind|POS=ADV|Voice=Pass":"Aspect=Imp|Mood=Ind|Voice=Pass",
|
193 |
+
"POS=SCONJ|PronType=Int":"PronType=Int",
|
194 |
+
"Degree=Abs|POS=ADJ":"Degree=Abs",
|
195 |
+
"Case=Gen|Clusivity=In|Number=Plur|POS=ADP|Person=1|PronType=Prs":"Case=Gen|Clusivity=In|Number=Plur|Person=1|PronType=Prs",
|
196 |
+
"Aspect=Imp|Mood=Pot|POS=ADJ|Voice=Pass":"Aspect=Imp|Mood=Pot|Voice=Pass",
|
197 |
+
"Aspect=Perf|Mood=Ind|POS=ADV|Voice=Act":"Aspect=Perf|Mood=Ind|Voice=Act",
|
198 |
+
"NumType=Card|POS=NUM|PronType=Int":"NumType=Card|PronType=Int",
|
199 |
+
"Aspect=Perf|Mood=Pot|POS=VERB|Voice=Cau":"Aspect=Perf|Mood=Pot|Voice=Cau",
|
200 |
+
"Aspect=Perf|Mood=Pot|POS=VERB|Voice=Bfoc":"Aspect=Perf|Mood=Pot|Voice=Bfoc",
|
201 |
+
"Aspect=Perf|Mood=Pot|POS=NOUN|Voice=Pass":"Aspect=Perf|Mood=Pot|Voice=Pass",
|
202 |
+
"Aspect=Imp|Mood=Pot|POS=ADV|Voice=Act":"Aspect=Imp|Mood=Pot|Voice=Act",
|
203 |
+
"Deixis=Remt|POS=ADV|PronType=Dem":"Deixis=Remt|PronType=Dem",
|
204 |
+
"Deixis=Prox|POS=ADJ|PronType=Dem":"Deixis=Prox|PronType=Dem",
|
205 |
+
"Deixis=Prox|POS=ADV|PronType=Dem":"Deixis=Prox|PronType=Dem",
|
206 |
+
"Aspect=Imp|Mood=Ind|POS=NOUN|Voice=Lfoc":"Aspect=Imp|Mood=Ind|Voice=Lfoc",
|
207 |
+
"Case=Loc|POS=PART":"Case=Loc",
|
208 |
+
"Deixis=Remt|POS=VERB|PronType=Dem":"Deixis=Remt|PronType=Dem",
|
209 |
+
"Aspect=Imp|Mood=Pot|POS=ADJ|Voice=Lfoc":"Aspect=Imp|Mood=Pot|Voice=Lfoc",
|
210 |
+
"NumType=Card|POS=VERB":"NumType=Card",
|
211 |
+
"POS=ADP|Typo=Yes":"Typo=Yes",
|
212 |
+
"Case=Nom|POS=PART|Typo=Yes":"Case=Nom|Typo=Yes",
|
213 |
+
"Case=Nom|Number=Plur|POS=PART":"Case=Nom|Number=Plur",
|
214 |
+
"Aspect=Imp|Mood=Ind|POS=NOUN|Voice=Pass":"Aspect=Imp|Mood=Ind|Voice=Pass",
|
215 |
+
"NumType=Sets|POS=ADV":"NumType=Sets",
|
216 |
+
"Case=Gen|Deixis=Remt|POS=SCONJ|PronType=Dem":"Case=Gen|Deixis=Remt|PronType=Dem",
|
217 |
+
"Aspect=Imp|Mood=Ind|POS=NOUN|Voice=Bfoc":"Aspect=Imp|Mood=Ind|Voice=Bfoc",
|
218 |
+
"Case=Nom|Number=Sing|POS=PROPN|Person=3|PronType=Prs":"Case=Nom|Number=Sing|Person=3|PronType=Prs",
|
219 |
+
"Aspect=Imp|Mood=Pot|POS=ADJ|Voice=Act":"Aspect=Imp|Mood=Pot|Voice=Act",
|
220 |
+
"Case=Nom|Deixis=Med|POS=VERB|PronType=Dem":"Case=Nom|Deixis=Med|PronType=Dem",
|
221 |
+
"Case=Nom|Number=Plur|POS=NOUN|Person=2|PronType=Prs":"Case=Nom|Number=Plur|Person=2|PronType=Prs",
|
222 |
+
"Aspect=Imp|Mood=Pot|POS=PRON|Voice=Act":"Aspect=Imp|Mood=Pot|Voice=Act",
|
223 |
+
"Aspect=Imp|Mood=Ind|POS=PROPN|Voice=Act":"Aspect=Imp|Mood=Ind|Voice=Act",
|
224 |
+
"Case=Dat|Number=Sing|POS=ADV|Person=3|PronType=Prs":"Case=Dat|Number=Sing|Person=3|PronType=Prs",
|
225 |
+
"Case=Loc|Deixis=Prox|POS=CCONJ|PronType=Dem":"Case=Loc|Deixis=Prox|PronType=Dem",
|
226 |
+
"Case=Nom|POS=DET|Typo=Yes":"Case=Nom|Typo=Yes",
|
227 |
+
"Case=Loc|POS=PRON|PronType=Int":"Case=Loc|PronType=Int",
|
228 |
+
"Case=Nom|Number=Plur|POS=PRON|Person=1|PronType=Prs":"Case=Nom|Number=Plur|Person=1|PronType=Prs",
|
229 |
+
"POS=CCONJ|Polarity=Neg":"Polarity=Neg",
|
230 |
+
"Case=Loc|Deixis=Remt|POS=VERB|PronType=Dem":"Case=Loc|Deixis=Remt|PronType=Dem",
|
231 |
+
"Case=Nom|POS=ADP":"Case=Nom",
|
232 |
+
"Degree=Sup|NumType=Ord|POS=ADJ":"Degree=Sup|NumType=Ord",
|
233 |
+
"Degree=Cmp|POS=ADV":"Degree=Cmp",
|
234 |
+
"NumType=Dist|POS=ADV":"NumType=Dist",
|
235 |
+
"Aspect=Imp|Mood=Ind|Number=Plur|POS=VERB|Voice=Act":"Aspect=Imp|Mood=Ind|Number=Plur|Voice=Act",
|
236 |
+
"NumType=Dist|POS=ADJ":"NumType=Dist",
|
237 |
+
"Aspect=Perf|Mood=Ind|Number=Plur|POS=VERB|Voice=Act":"Aspect=Perf|Mood=Ind|Number=Plur|Voice=Act",
|
238 |
+
"Case=Dat|Number=Plur|POS=PRON|Person=3|PronType=Prs|Typo=Yes":"Case=Dat|Number=Plur|Person=3|PronType=Prs|Typo=Yes",
|
239 |
+
"Case=Gen|POS=DET|Typo=Yes":"Case=Gen|Typo=Yes",
|
240 |
+
"Case=Nom|Deixis=Prox|POS=PART|PronType=Dem":"Case=Nom|Deixis=Prox|PronType=Dem",
|
241 |
+
"Case=Gen,Nom|Number=Sing|POS=PRON|Person=3|PronType=Prs":"Case=Gen,Nom|Number=Sing|Person=3|PronType=Prs",
|
242 |
+
"Case=Gen|POS=SCONJ":"Case=Gen",
|
243 |
+
"Aspect=Perf|Mood=Pot|POS=VERB|Typo=Yes|Voice=Pass":"Aspect=Perf|Mood=Pot|Typo=Yes|Voice=Pass",
|
244 |
+
"Case=Gen|POS=NOUN":"Case=Gen",
|
245 |
+
"Case=Dat|Clusivity=Ex|Number=Plur|POS=NOUN|Person=1|PronType=Prs":"Case=Dat|Clusivity=Ex|Number=Plur|Person=1|PronType=Prs",
|
246 |
+
"NumType=Ord|POS=ADJ|Typo=Yes":"NumType=Ord|Typo=Yes",
|
247 |
+
"Case=Gen|Deixis=Prox|POS=PRON|PronType=Dem|Typo=Yes":"Case=Gen|Deixis=Prox|PronType=Dem|Typo=Yes",
|
248 |
+
"NumType=Sets|POS=NUM":"NumType=Sets",
|
249 |
+
"Aspect=Perf|Mood=Ind|POS=ADV|Voice=Pass":"Aspect=Perf|Mood=Ind|Voice=Pass",
|
250 |
+
"Abbr=Yes|Case=Nom|Number=Sing|POS=PRON|Person=3|PronType=Prs":"Abbr=Yes|Case=Nom|Number=Sing|Person=3|PronType=Prs",
|
251 |
+
"POS=ADJ|Polarity=Neg":"Polarity=Neg",
|
252 |
+
"Case=Nom|POS=NOUN|PronType=Ind":"Case=Nom|PronType=Ind",
|
253 |
+
"NumType=Ord|POS=NOUN":"NumType=Ord",
|
254 |
+
"POS=CCONJ|PartType=Int":"PartType=Int",
|
255 |
+
"Aspect=Perf|Mood=Ind|POS=X|Voice=Act":"Aspect=Perf|Mood=Ind|Voice=Act",
|
256 |
+
"Case=Nom|Number=Dual|POS=NOUN|Person=2|PronType=Prs":"Case=Nom|Number=Dual|Person=2|PronType=Prs",
|
257 |
+
"Aspect=Imp|Mood=Pot|POS=VERB|Typo=Yes|Voice=Lfoc":"Aspect=Imp|Mood=Pot|Typo=Yes|Voice=Lfoc",
|
258 |
+
"Case=Nom|Number=Sing|POS=PRON|Person=1|PronType=Prs|Typo=Yes":"Case=Nom|Number=Sing|Person=1|PronType=Prs|Typo=Yes",
|
259 |
+
"Case=Nom|Number=Sing|POS=NOUN|Person=1|PronType=Prs":"Case=Nom|Number=Sing|Person=1|PronType=Prs",
|
260 |
+
"NumType=Dist|POS=NUM":"NumType=Dist",
|
261 |
+
"Number=Plur|POS=PRON|PronType=Ind":"Number=Plur|PronType=Ind",
|
262 |
+
"Case=Gen|Number=Sing|POS=NOUN|Person=1|PronType=Prs":"Case=Gen|Number=Sing|Person=1|PronType=Prs",
|
263 |
+
"Case=Nom|Deixis=Remt|POS=PRON|PronType=Dem|Typo=Yes":"Case=Nom|Deixis=Remt|PronType=Dem|Typo=Yes",
|
264 |
+
"Case=Nom|Number=Sing|POS=ADV|Person=3|PronType=Prs":"Case=Nom|Number=Sing|Person=3|PronType=Prs",
|
265 |
+
"Case=Nom|Number=Sing|POS=ADP":"Case=Nom|Number=Sing",
|
266 |
+
"Abbr=Yes|POS=NOUN":"Abbr=Yes",
|
267 |
+
"Case=Gen|Deixis=Remt|POS=ADP|PronType=Dem":"Case=Gen|Deixis=Remt|PronType=Dem",
|
268 |
+
"POS=PRON|PronType=Ind":"PronType=Ind",
|
269 |
+
"POS=VERB|Polarity=Neg|Typo=Yes":"Polarity=Neg|Typo=Yes",
|
270 |
+
"POS=ADP|Polarity=Neg":"Polarity=Neg",
|
271 |
+
"Case=Loc|POS=ADV|PronType=Int|Typo=Yes":"Case=Loc|PronType=Int|Typo=Yes",
|
272 |
+
"Case=Nom|Deixis=Med|POS=PROPN|PronType=Dem":"Case=Nom|Deixis=Med|PronType=Dem",
|
273 |
+
"Case=Loc|Deixis=Remt|POS=NOUN|PronType=Dem":"Case=Loc|Deixis=Remt|PronType=Dem",
|
274 |
+
"Case=Gen|Number=Plur|POS=NOUN|Person=3|PronType=Prs":"Case=Gen|Number=Plur|Person=3|PronType=Prs",
|
275 |
+
"Aspect=Imp|Mood=Pot|POS=VERB|Typo=Yes|Voice=Pass":"Aspect=Imp|Mood=Pot|Typo=Yes|Voice=Pass",
|
276 |
+
"Case=Nom|Clusivity=In|Number=Dual|POS=PRON|Person=1|PronType=Prs|Typo=Yes":"Case=Nom|Clusivity=In|Number=Dual|Person=1|PronType=Prs|Typo=Yes",
|
277 |
+
"Case=Gen|Number=Plur|POS=ADP|Person=3|PronType=Prs":"Case=Gen|Number=Plur|Person=3|PronType=Prs",
|
278 |
+
"Case=Gen|Deixis=Med|POS=PRON|PronType=Dem":"Case=Gen|Deixis=Med|PronType=Dem",
|
279 |
+
"Case=Nom|Clusivity=Ex|Number=Dual|POS=PRON|Person=1|PronType=Prs":"Case=Nom|Clusivity=Ex|Number=Dual|Person=1|PronType=Prs",
|
280 |
+
"Number=Sing|POS=ADV":"Number=Sing",
|
281 |
+
"Case=Dat|POS=PRON|PronType=Int":"Case=Dat|PronType=Int",
|
282 |
+
"Aspect=Imp|Mood=Ind|POS=PROPN|Voice=Pass":"Aspect=Imp|Mood=Ind|Voice=Pass",
|
283 |
+
"Aspect=Imp|Mood=Pot|POS=VERB|Typo=Yes|Voice=Act":"Aspect=Imp|Mood=Pot|Typo=Yes|Voice=Act",
|
284 |
+
"Number=Plur|POS=PRON|PronType=Int":"Number=Plur|PronType=Int",
|
285 |
+
"Case=Nom|POS=VERB":"Case=Nom",
|
286 |
+
"Case=Nom|POS=ADV|PronType=Ind":"Case=Nom|PronType=Ind",
|
287 |
+
"Aspect=Imp|Mood=Ind|POS=NUM|Voice=Act":"Aspect=Imp|Mood=Ind|Voice=Act",
|
288 |
+
"Case=Nom|Number=Plur|POS=PROPN|Person=1|PronType=Prs":"Case=Nom|Number=Plur|Person=1|PronType=Prs",
|
289 |
+
"Aspect=Perf|Mood=Pot|POS=NOUN|Voice=Act":"Aspect=Perf|Mood=Pot|Voice=Act",
|
290 |
+
"Case=Gen|Deixis=Prox|POS=ADP|PronType=Dem":"Case=Gen|Deixis=Prox|PronType=Dem",
|
291 |
+
"POS=SCONJ|Polarity=Neg":"Polarity=Neg",
|
292 |
+
"Aspect=Imp|Mood=Ind|POS=ADJ|Voice=Act":"Aspect=Imp|Mood=Ind|Voice=Act",
|
293 |
+
"Case=Loc|POS=ADP|Typo=Yes":"Case=Loc|Typo=Yes",
|
294 |
+
"NumType=Ord|POS=VERB":"NumType=Ord",
|
295 |
+
"Case=Nom|POS=SCONJ":"Case=Nom",
|
296 |
+
"Aspect=Perf|Mood=Ind|NumType=Ord|POS=VERB|Voice=Act":"Aspect=Perf|Mood=Ind|NumType=Ord|Voice=Act",
|
297 |
+
"Case=Nom|Clusivity=Ex|Number=Plur|POS=NOUN|Person=1|PronType=Prs":"Case=Nom|Clusivity=Ex|Number=Plur|Person=1|PronType=Prs",
|
298 |
+
"Degree=Cmp|POS=VERB":"Degree=Cmp",
|
299 |
+
"Case=Nom|Number=Sing|POS=PRON|Person=3|PronType=Prs|Typo=Yes":"Case=Nom|Number=Sing|Person=3|PronType=Prs|Typo=Yes",
|
300 |
+
"NumType=Sets|POS=NOUN":"NumType=Sets",
|
301 |
+
"Aspect=Perf|Mood=Ind|POS=ADP|Voice=Act":"Aspect=Perf|Mood=Ind|Voice=Act",
|
302 |
+
"Aspect=Imp|Mood=Pot|POS=PROPN|Voice=Act":"Aspect=Imp|Mood=Pot|Voice=Act",
|
303 |
+
"Case=Dat|Number=Sing|POS=NOUN|Person=2|PronType=Prs":"Case=Dat|Number=Sing|Person=2|PronType=Prs",
|
304 |
+
"NumType=Ord|POS=INTJ":"NumType=Ord",
|
305 |
+
"Case=Nom|Number=Plur|POS=ADJ|Person=2|PronType=Prs":"Case=Nom|Number=Plur|Person=2|PronType=Prs",
|
306 |
+
"Aspect=Imp|Mood=Pot|POS=ADP|Voice=Pass":"Aspect=Imp|Mood=Pot|Voice=Pass",
|
307 |
+
"Case=Nom|POS=ADV|PronType=Int":"Case=Nom|PronType=Int",
|
308 |
+
"Degree=Sup|POS=NOUN":"Degree=Sup",
|
309 |
+
"Case=Gen|Number=Sing|POS=PART":"Case=Gen|Number=Sing",
|
310 |
+
"Aspect=Perf|Mood=Ind|POS=ADP|Voice=Pass":"Aspect=Perf|Mood=Ind|Voice=Pass",
|
311 |
+
"Number=Plur|POS=ADV":"Number=Plur",
|
312 |
+
"Case=Loc|Number=Plur|POS=ADP|Typo=Yes":"Case=Loc|Number=Plur|Typo=Yes",
|
313 |
+
"Case=Nom|POS=ADV":"Case=Nom",
|
314 |
+
"Case=Gen|Number=Plur|POS=PROPN|Person=2|PronType=Prs":"Case=Gen|Number=Plur|Person=2|PronType=Prs",
|
315 |
+
"Case=Loc|POS=ADV":"Case=Loc",
|
316 |
+
"Case=Nom|Number=Plur|POS=NOUN|Person=1|PronType=Prs":"Case=Nom|Number=Plur|Person=1|PronType=Prs",
|
317 |
+
"POS=ADJ|PronType=Int":"PronType=Int",
|
318 |
+
"POS=NOUN|Polarity=Neg":"Polarity=Neg",
|
319 |
+
"POS=CCONJ|PronType=Int":"PronType=Int",
|
320 |
+
"Case=Gen|POS=ADV":"Case=Gen",
|
321 |
+
"POS=ADV|PronType=Ind":"PronType=Ind",
|
322 |
+
"POS=PROPN|Polarity=Neg":"Polarity=Neg",
|
323 |
+
"Deixis=Prox|POS=VERB|PronType=Dem":"Deixis=Prox|PronType=Dem",
|
324 |
+
"Case=Nom|Number=Plur|POS=PRON|Person=2|PronType=Prs|Typo=Yes":"Case=Nom|Number=Plur|Person=2|PronType=Prs|Typo=Yes",
|
325 |
+
"Case=Loc|Deixis=Remt|POS=PROPN|PronType=Dem":"Case=Loc|Deixis=Remt|PronType=Dem",
|
326 |
+
"Aspect=Imp|Mood=Pot|POS=SCONJ|Voice=Pass":"Aspect=Imp|Mood=Pot|Voice=Pass",
|
327 |
+
"Case=Dat|Clusivity=Ex|Number=Plur|POS=NUM|Person=1|PronType=Prs":"Case=Dat|Clusivity=Ex|Number=Plur|Person=1|PronType=Prs",
|
328 |
+
"POS=PRON|PronType=Int|Typo=Yes":"PronType=Int|Typo=Yes",
|
329 |
+
"Aspect=Imp|Mood=Ind|POS=ADJ|Voice=Pass":"Aspect=Imp|Mood=Ind|Voice=Pass",
|
330 |
+
"Case=Loc|Deixis=Prox|POS=DET|PronType=Dem":"Case=Loc|Deixis=Prox|PronType=Dem",
|
331 |
+
"Case=Dat,Loc|Number=Sing|POS=PRON|Person=2|PronType=Prs":"Case=Dat,Loc|Number=Sing|Person=2|PronType=Prs",
|
332 |
+
"Case=Gen|Number=Sing|POS=PRON|Person=3|PronType=Prs|Typo=Yes":"Case=Gen|Number=Sing|Person=3|PronType=Prs|Typo=Yes",
|
333 |
+
"Aspect=Perf|Case=Gen|Mood=Ind|POS=VERB|Typo=Yes|Voice=Cau":"Aspect=Perf|Case=Gen|Mood=Ind|Typo=Yes|Voice=Cau",
|
334 |
+
"Case=Gen|Number=Plur|POS=PRON":"Case=Gen|Number=Plur",
|
335 |
+
"Case=Nom|Deixis=Prox|POS=NUM|PronType=Dem":"Case=Nom|Deixis=Prox|PronType=Dem",
|
336 |
+
"Case=Dat,Gen|Number=Plur|POS=PRON|Person=3|PronType=Prs":"Case=Dat,Gen|Number=Plur|Person=3|PronType=Prs",
|
337 |
+
"Case=Dat,Loc|Clusivity=In|Number=Plur|POS=PRON|Person=1|PronType=Prs":"Case=Dat,Loc|Clusivity=In|Number=Plur|Person=1|PronType=Prs",
|
338 |
+
"Case=Loc|POS=SCONJ|PronType=Int":"Case=Loc|PronType=Int",
|
339 |
+
"POS=PART|Polite=Form|Typo=Yes":"Polite=Form|Typo=Yes",
|
340 |
+
"Abbr=Yes|POS=ADV|Polarity=Neg":"Abbr=Yes|Polarity=Neg",
|
341 |
+
"NumType=Card|POS=PART":"NumType=Card",
|
342 |
+
"Case=Nom|POS=ADP|Typo=Yes":"Case=Nom|Typo=Yes",
|
343 |
+
"Case=Dat|Number=Sing|POS=PROPN|Person=3|PronType=Prs":"Case=Dat|Number=Sing|Person=3|PronType=Prs",
|
344 |
+
"Case=Dat|Number=Sing|POS=ADV|Person=2|PronType=Prs":"Case=Dat|Number=Sing|Person=2|PronType=Prs",
|
345 |
+
"Case=Nom|Clusivity=In|Number=Plur|POS=VERB|Person=1|PronType=Prs":"Case=Nom|Clusivity=In|Number=Plur|Person=1|PronType=Prs",
|
346 |
+
"Case=Gen|POS=VERB":"Case=Gen",
|
347 |
+
"Case=Nom|Deixis=Prox|POS=PROPN|PronType=Dem":"Case=Nom|Deixis=Prox|PronType=Dem",
|
348 |
+
"Case=Nom|Number=Sing|POS=PROPN|Person=2|PronType=Prs":"Case=Nom|Number=Sing|Person=2|PronType=Prs",
|
349 |
+
"Case=Dat|Clusivity=In|Number=Plur|POS=NOUN|Person=1|PronType=Prs":"Case=Dat|Clusivity=In|Number=Plur|Person=1|PronType=Prs",
|
350 |
+
"Number=Plur|POS=DET|Typo=Yes":"Number=Plur|Typo=Yes",
|
351 |
+
"Case=Gen|POS=ADJ":"Case=Gen",
|
352 |
+
"NumType=Frac|POS=ADJ":"NumType=Frac",
|
353 |
+
"Case=Gen|POS=PRON|PronType=Ind":"Case=Gen|PronType=Ind",
|
354 |
+
"POS=ADV|PartType=Int":"PartType=Int",
|
355 |
+
"Case=Nom|Deixis=Prox|POS=NOUN|PronType=Dem":"Case=Nom|Deixis=Prox|PronType=Dem",
|
356 |
+
"Degree=Abs|POS=VERB":"Degree=Abs",
|
357 |
+
"Deixis=Med|POS=VERB|PronType=Dem":"Deixis=Med|PronType=Dem",
|
358 |
+
"NumType=Card|POS=PRON":"NumType=Card",
|
359 |
+
"Case=Gen|Deixis=Remt|POS=ADJ|PronType=Dem":"Case=Gen|Deixis=Remt|PronType=Dem",
|
360 |
+
"Aspect=Imp|Mood=Pot|POS=DET|Voice=Pass":"Aspect=Imp|Mood=Pot|Voice=Pass",
|
361 |
+
"Case=Loc|Deixis=Remt|POS=DET|PronType=Dem":"Case=Loc|Deixis=Remt|PronType=Dem",
|
362 |
+
"Case=Loc|POS=VERB":"Case=Loc",
|
363 |
+
"Degree=Cmp|POS=ADJ":"Degree=Cmp",
|
364 |
+
"Degree=Abs|POS=SCONJ":"Degree=Abs",
|
365 |
+
"NumType=Dist|POS=ADP":"NumType=Dist",
|
366 |
+
"Case=Dat|Number=Plur|POS=PART|Person=3|PronType=Prs":"Case=Dat|Number=Plur|Person=3|PronType=Prs",
|
367 |
+
"Deixis=Remt|POS=NOUN|PronType=Dem":"Deixis=Remt|PronType=Dem",
|
368 |
+
"Case=Gen|Deixis=Prox|POS=DET|PronType=Dem":"Case=Gen|Deixis=Prox|PronType=Dem",
|
369 |
+
"POS=ADV|Polarity=Neg|Typo=Yes":"Polarity=Neg|Typo=Yes",
|
370 |
+
"Case=Gen|Number=Plur|POS=PRON|Person=3|PronType=Prs|Typo=Yes":"Case=Gen|Number=Plur|Person=3|PronType=Prs|Typo=Yes",
|
371 |
+
"Aspect=Perf|Mood=Ind|POS=VERB|Typo=Yes|Voice=Bfoc":"Aspect=Perf|Mood=Ind|Typo=Yes|Voice=Bfoc",
|
372 |
+
"Degree=Sup|POS=PROPN":"Degree=Sup",
|
373 |
+
"Case=Loc|Deixis=Med|POS=ADV|PronType=Dem":"Case=Loc|Deixis=Med|PronType=Dem",
|
374 |
+
"Case=Nom|Number=Plur|POS=PRON|Person=3|PronType=Prs|Typo=Yes":"Case=Nom|Number=Plur|Person=3|PronType=Prs|Typo=Yes",
|
375 |
+
"Case=Nom|Number=Plur|POS=PROPN|Person=3|PronType=Prs":"Case=Nom|Number=Plur|Person=3|PronType=Prs",
|
376 |
+
"Case=Nom|POS=PROPN|PronType=Ind":"Case=Nom|PronType=Ind",
|
377 |
+
"Case=Nom|Deixis=Prox|POS=VERB|PronType=Dem":"Case=Nom|Deixis=Prox|PronType=Dem",
|
378 |
+
"Case=Gen|Number=Sing|POS=VERB|Person=1|PronType=Prs":"Case=Gen|Number=Sing|Person=1|PronType=Prs",
|
379 |
+
"Case=Nom|Clusivity=In|Number=Dual|POS=ADJ|Person=1|PronType=Prs":"Case=Nom|Clusivity=In|Number=Dual|Person=1|PronType=Prs",
|
380 |
+
"Case=Gen|Number=Sing|POS=ADV":"Case=Gen|Number=Sing",
|
381 |
+
"Deixis=Med|POS=ADV|PronType=Dem":"Deixis=Med|PronType=Dem",
|
382 |
+
"POS=ADV|PartType=Int|Polarity=Neg":"PartType=Int|Polarity=Neg",
|
383 |
+
"Degree=Abs|POS=ADV":"Degree=Abs",
|
384 |
+
"Case=Dat|POS=ADP|Typo=Yes":"Case=Dat|Typo=Yes",
|
385 |
+
"POS=VERB|PronType=Int":"PronType=Int",
|
386 |
+
"Case=Gen|Number=Plur|POS=ADP|Typo=Yes":"Case=Gen|Number=Plur|Typo=Yes",
|
387 |
+
"Case=Nom|Deixis=Remt|POS=DET|PronType=Dem":"Case=Nom|Deixis=Remt|PronType=Dem",
|
388 |
+
"Case=Gen|POS=ADV|Typo=Yes":"Case=Gen|Typo=Yes",
|
389 |
+
"Aspect=Imp|Mood=Pot|POS=ADV|Voice=Lfoc":"Aspect=Imp|Mood=Pot|Voice=Lfoc",
|
390 |
+
"Aspect=Imp|Case=Loc|Mood=Pot|POS=SCONJ|PronType=Int|Voice=Pass":"Aspect=Imp|Case=Loc|Mood=Pot|PronType=Int|Voice=Pass",
|
391 |
+
"Case=Gen|Number=Sing|POS=DET|Typo=Yes":"Case=Gen|Number=Sing|Typo=Yes",
|
392 |
+
"Case=Nom|Deixis=Med|POS=NOUN|PronType=Dem":"Case=Nom|Deixis=Med|PronType=Dem",
|
393 |
+
"Aspect=Imp|Mood=Pot|POS=PRON|Voice=Pass":"Aspect=Imp|Mood=Pot|Voice=Pass",
|
394 |
+
"Case=Nom|Deixis=Remt|POS=NUM|PronType=Dem":"Case=Nom|Deixis=Remt|PronType=Dem",
|
395 |
+
"Case=Nom|Deixis=Remt|POS=ADV|PronType=Dem":"Case=Nom|Deixis=Remt|PronType=Dem",
|
396 |
+
"Case=Gen|Deixis=Med|POS=ADV|PronType=Dem":"Case=Gen|Deixis=Med|PronType=Dem",
|
397 |
+
"Aspect=Perf|Case=Gen|Mood=Ind|POS=VERB|Voice=Pass":"Aspect=Perf|Case=Gen|Mood=Ind|Voice=Pass",
|
398 |
+
"Degree=Equ|POS=ADV":"Degree=Equ",
|
399 |
+
"NumType=Card|POS=DET":"NumType=Card",
|
400 |
+
"Case=Gen|Deixis=Remt|POS=ADV|PronType=Dem|Typo=Yes":"Case=Gen|Deixis=Remt|PronType=Dem|Typo=Yes",
|
401 |
+
"Abbr=Yes|Case=Nom|POS=PRON|PronType=Int":"Abbr=Yes|Case=Nom|PronType=Int",
|
402 |
+
"POS=INTJ|Polite=Form":"Polite=Form",
|
403 |
+
"Aspect=Perf|Mood=Ind|POS=ADJ|Voice=Act":"Aspect=Perf|Mood=Ind|Voice=Act",
|
404 |
+
"Case=Nom|Clusivity=In|Number=Plur|POS=PART|Person=1|PronType=Prs":"Case=Nom|Clusivity=In|Number=Plur|Person=1|PronType=Prs",
|
405 |
+
"Case=Nom|POS=NOUN":"Case=Nom",
|
406 |
+
"Aspect=Imp|Mood=Ind|POS=VERB|Polarity=Neg|Voice=Pass":"Aspect=Imp|Mood=Ind|Polarity=Neg|Voice=Pass",
|
407 |
+
"Aspect=Imp|Mood=Ind|POS=VERB|Typo=Yes|Voice=Pass":"Aspect=Imp|Mood=Ind|Typo=Yes|Voice=Pass",
|
408 |
+
"Case=Loc|Deixis=Med|POS=PRON|PronType=Dem|Typo=Yes":"Case=Loc|Deixis=Med|PronType=Dem|Typo=Yes",
|
409 |
+
"Aspect=Imp|Mood=Pot|POS=NOUN|Voice=Cau":"Aspect=Imp|Mood=Pot|Voice=Cau",
|
410 |
+
"Case=Nom|Number=Sing|POS=VERB|Person=2|PronType=Prs":"Case=Nom|Number=Sing|Person=2|PronType=Prs",
|
411 |
+
"Degree=Sup|POS=ADJ|Typo=Yes":"Degree=Sup|Typo=Yes",
|
412 |
+
"Deixis=Prox|POS=PROPN|PronType=Dem":"Deixis=Prox|PronType=Dem",
|
413 |
+
"Case=Nom|Number=Plur|POS=ADP":"Case=Nom|Number=Plur",
|
414 |
+
"Case=Nom|Number=Plur|POS=ADV|Person=2|PronType=Prs":"Case=Nom|Number=Plur|Person=2|PronType=Prs",
|
415 |
+
"Case=Loc|POS=PRON":"Case=Loc",
|
416 |
+
"Case=Nom|POS=PROPN|PronType=Int":"Case=Nom|PronType=Int",
|
417 |
+
"Aspect=Imp|Mood=Ind|POS=VERB|Typo=Yes|Voice=Lfoc":"Aspect=Imp|Mood=Ind|Typo=Yes|Voice=Lfoc",
|
418 |
+
"Deixis=Prox|POS=ADV|PronType=Dem|Typo=Yes":"Deixis=Prox|PronType=Dem|Typo=Yes",
|
419 |
+
"POS=PRON|Typo=Yes":"Typo=Yes",
|
420 |
+
"Abbr=Yes|Case=Gen|Number=Plur|POS=PRON|Person=2|PronType=Prs":"Abbr=Yes|Case=Gen|Number=Plur|Person=2|PronType=Prs",
|
421 |
+
"Abbr=Yes|POS=ADV":"Abbr=Yes",
|
422 |
+
"Abbr=Yes|NumType=Card|POS=NUM":"Abbr=Yes|NumType=Card",
|
423 |
+
"Deixis=Prox|POS=NUM|PronType=Dem":"Deixis=Prox|PronType=Dem",
|
424 |
+
"Deixis=Remt|POS=SCONJ|PronType=Dem":"Deixis=Remt|PronType=Dem",
|
425 |
+
"NumType=Card|POS=NUM|Typo=Yes":"NumType=Card|Typo=Yes",
|
426 |
+
"Case=Nom|POS=PRON|PronType=Ind|Typo=Yes":"Case=Nom|PronType=Ind|Typo=Yes",
|
427 |
+
"Case=Gen|Number=Sing|POS=PART|Person=3|PronType=Prs":"Case=Gen|Number=Sing|Person=3|PronType=Prs",
|
428 |
+
"Case=Dat,Loc|Number=Sing|POS=ADP|Person=2|PronType=Prs":"Case=Dat,Loc|Number=Sing|Person=2|PronType=Prs",
|
429 |
+
"Case=Nom|Number=Sing|POS=PART|Person=3|PronType=Prs":"Case=Nom|Number=Sing|Person=3|PronType=Prs",
|
430 |
+
"Aspect=Perf|Mood=Ind|POS=PART|Voice=Pass":"Aspect=Perf|Mood=Ind|Voice=Pass",
|
431 |
+
"Case=Gen|Deixis=Prox|POS=NUM|PronType=Dem":"Case=Gen|Deixis=Prox|PronType=Dem",
|
432 |
+
"Aspect=Imp|Mood=Ind|POS=PRON|Voice=Pass":"Aspect=Imp|Mood=Ind|Voice=Pass",
|
433 |
+
"Case=Loc|Deixis=Prox|POS=PROPN|PronType=Dem":"Case=Loc|Deixis=Prox|PronType=Dem",
|
434 |
+
"Case=Gen|Number=Sing|POS=PROPN|Person=3|PronType=Prs":"Case=Gen|Number=Sing|Person=3|PronType=Prs",
|
435 |
+
"Case=Gen|Number=Sing|POS=NOUN|Person=3|PronType=Prs":"Case=Gen|Number=Sing|Person=3|PronType=Prs",
|
436 |
+
"Case=Loc|POS=PUNCT":"Case=Loc",
|
437 |
+
"Case=Nom|Number=Plur|POS=DET|Typo=Yes":"Case=Nom|Number=Plur|Typo=Yes",
|
438 |
+
"Aspect=Imp|Mood=Ind|POS=VERB|Typo=Yes|Voice=Act":"Aspect=Imp|Mood=Ind|Typo=Yes|Voice=Act",
|
439 |
+
"Aspect=Imp|Mood=Ind|POS=ADV|Voice=Act":"Aspect=Imp|Mood=Ind|Voice=Act",
|
440 |
+
"Case=Nom|Number=Sing|POS=PRON":"Case=Nom|Number=Sing"
|
441 |
+
},
|
442 |
+
"labels_pos":{
|
443 |
+
"POS=PART":94,
|
444 |
+
"POS=PUNCT":97,
|
445 |
+
"POS=ADV|Polarity=Neg":86,
|
446 |
+
"POS=PART|PartType=Int":94,
|
447 |
+
"Case=Nom|Number=Sing|POS=PRON|Person=3|PronType=Prs":95,
|
448 |
+
"POS=ADV":86,
|
449 |
+
"POS=ADJ":84,
|
450 |
+
"Case=Nom|POS=DET":90,
|
451 |
+
"POS=NOUN":92,
|
452 |
+
"Case=Gen|Number=Plur|POS=PRON|Person=3|PronType=Prs":95,
|
453 |
+
"Case=Nom|Number=Sing|POS=PRON|Person=1|PronType=Prs":95,
|
454 |
+
"Aspect=Imp|Mood=Ind|POS=VERB|Voice=Pass":100,
|
455 |
+
"POS=PROPN":96,
|
456 |
+
"POS=VERB":100,
|
457 |
+
"POS=NUM":93,
|
458 |
+
"POS=CCONJ":89,
|
459 |
+
"Case=Nom|Number=Plur|POS=PRON|Person=3|PronType=Prs":95,
|
460 |
+
"Case=Gen|POS=ADP":85,
|
461 |
+
"Case=Nom|Number=Sing|POS=PRON|Person=2|PronType=Prs":95,
|
462 |
+
"Case=Loc|POS=ADP":85,
|
463 |
+
"Case=Dat|Number=Sing|POS=PRON|Person=2|PronType=Prs":95,
|
464 |
+
"Case=Gen|Clusivity=Ex|Number=Plur|POS=PRON|Person=1|PronType=Prs":95,
|
465 |
+
"POS=SCONJ":98,
|
466 |
+
"POS=ADV|PronType=Int":86,
|
467 |
+
"Case=Nom|Clusivity=Ex|Number=Plur|POS=PRON|Person=1|PronType=Prs":95,
|
468 |
+
"Aspect=Perf|Mood=Ind|POS=VERB|Voice=Act":100,
|
469 |
+
"POS=PART|Polite=Form":94,
|
470 |
+
"Aspect=Perf|Mood=Pot|POS=VERB|Voice=Lfoc":100,
|
471 |
+
"Case=Gen|Number=Plur|POS=PRON|Person=2|PronType=Prs":95,
|
472 |
+
"Case=Gen|Number=Sing|POS=PRON|Person=1|PronType=Prs":95,
|
473 |
+
"POS=VERB|Polarity=Neg":100,
|
474 |
+
"Aspect=Perf|Mood=Ind|POS=VERB|Voice=Pass":100,
|
475 |
+
"POS=DET":90,
|
476 |
+
"NumType=Card|POS=NUM":93,
|
477 |
+
"Case=Dat|Number=Sing|POS=ADP":85,
|
478 |
+
"Aspect=Imp|Mood=Pot|POS=VERB|Voice=Act":100,
|
479 |
+
"Number=Plur|POS=DET":90,
|
480 |
+
"POS=PRON|PronType=Int":95,
|
481 |
+
"Aspect=Imp|Mood=Pot|POS=VERB|Voice=Pass":100,
|
482 |
+
"Case=Nom|Number=Plur|POS=PRON|Person=2|PronType=Prs":95,
|
483 |
+
"Aspect=Imp|Mood=Pot|POS=VERB|Voice=Lfoc":100,
|
484 |
+
"Case=Loc|Deixis=Prox|POS=PRON|PronType=Dem":95,
|
485 |
+
"Case=Nom|Number=Sing|POS=DET":90,
|
486 |
+
"Aspect=Imp|Mood=Ind|POS=VERB|Voice=Act":100,
|
487 |
+
"Case=Dat|Clusivity=In|Number=Plur|POS=PRON|Person=1|PronType=Prs":95,
|
488 |
+
"Case=Gen|Number=Sing|POS=ADP":85,
|
489 |
+
"Aspect=Perf|Mood=Pot|POS=VERB|Voice=Pass":100,
|
490 |
+
"Case=Nom|Deixis=Prox|POS=PRON|PronType=Dem":95,
|
491 |
+
"Case=Dat|Number=Sing|POS=PRON|Person=3|PronType=Prs":95,
|
492 |
+
"POS=PRON":95,
|
493 |
+
"Case=Nom|Deixis=Remt|POS=PRON|PronType=Dem":95,
|
494 |
+
"Case=Gen|Number=Sing|POS=PRON|Person=3|PronType=Prs":95,
|
495 |
+
"Case=Gen|Number=Sing|POS=PRON|Person=2|PronType=Prs":95,
|
496 |
+
"POS=ADP":85,
|
497 |
+
"Case=Dat|Number=Sing|POS=PRON|Person=1|PronType=Prs":95,
|
498 |
+
"Case=Gen|Clusivity=In|Number=Plur|POS=PRON|Person=1|PronType=Prs":95,
|
499 |
+
"Case=Loc|POS=ADV|PronType=Int":86,
|
500 |
+
"Case=Loc|POS=PROPN":96,
|
501 |
+
"POS=SYM":99,
|
502 |
+
"POS=PROPN|PronType=Int":96,
|
503 |
+
"POS=PROPN|PartType=Int":96,
|
504 |
+
"Case=Gen|Deixis=Prox|POS=PRON|PronType=Dem":95,
|
505 |
+
"NumType=Ord|POS=ADJ":84,
|
506 |
+
"Aspect=Perf|Mood=Pot|POS=VERB|Voice=Act":100,
|
507 |
+
"Aspect=Perf|Mood=Ind|POS=NOUN|Voice=Pass":92,
|
508 |
+
"Aspect=Perf|Mood=Ind|POS=VERB|Typo=Yes|Voice=Act":100,
|
509 |
+
"Case=Gen|Number=Plur|POS=ADP":85,
|
510 |
+
"Aspect=Perf|Mood=Ind|POS=VERB|Voice=Bfoc":100,
|
511 |
+
"Case=Dat|Number=Plur|POS=PRON|Person=3|PronType=Prs":95,
|
512 |
+
"Case=Dat|Clusivity=Ex|Number=Plur|POS=PRON|Person=1|PronType=Prs":95,
|
513 |
+
"Case=Nom|POS=PRON|PronType=Int":95,
|
514 |
+
"Aspect=Perf|Mood=Ind|POS=VERB|Voice=Lfoc":100,
|
515 |
+
"Case=Loc|Deixis=Remt|POS=PRON|PronType=Dem":95,
|
516 |
+
"Case=Gen|POS=PROPN":96,
|
517 |
+
"Case=Nom|Number=Plur|POS=DET":90,
|
518 |
+
"Aspect=Perf|Mood=Ind|POS=ADJ|Voice=Pass":84,
|
519 |
+
"NumType=Frac|POS=NUM":93,
|
520 |
+
"Case=Nom|Clusivity=In|Number=Dual|POS=PRON|Person=1|PronType=Prs":95,
|
521 |
+
"POS=INTJ":91,
|
522 |
+
"Case=Gen|POS=ADP|Typo=Yes":85,
|
523 |
+
"Aspect=Perf|Mood=Ind|POS=PRON|Voice=Act":95,
|
524 |
+
"Case=Nom|Deixis=Med|POS=PRON|PronType=Dem":95,
|
525 |
+
"Aspect=Perf|Mood=Ind|POS=VERB|Voice=Cau":100,
|
526 |
+
"Aspect=Imp|Mood=Ind|POS=VERB|Voice=Bfoc":100,
|
527 |
+
"Aspect=Imp|Mood=Pot|POS=VERB|Voice=Bfoc":100,
|
528 |
+
"Degree=Sup|POS=ADJ":84,
|
529 |
+
"Case=Loc|POS=NOUN|Typo=Yes":92,
|
530 |
+
"Case=Nom|Number=Sing|POS=DET|Typo=Yes":90,
|
531 |
+
"Aspect=Imp|Mood=Ind|POS=VERB|Voice=Lfoc":100,
|
532 |
+
"Case=Gen|Number=Sing|POS=PROPN":96,
|
533 |
+
"Case=Dat|Number=Plur|POS=PRON|Person=2|PronType=Prs":95,
|
534 |
+
"Case=Loc|Deixis=Med|POS=PRON|PronType=Dem":95,
|
535 |
+
"Case=Dat|Number=Plur|POS=ADP":85,
|
536 |
+
"Case=Nom|Clusivity=In|Number=Plur|POS=PRON|Person=1|PronType=Prs":95,
|
537 |
+
"Aspect=Imp|Mood=Pot|POS=VERB|Voice=Cau":100,
|
538 |
+
"NumType=Ord|POS=PROPN":96,
|
539 |
+
"POS=NOUN|Typo=Yes":92,
|
540 |
+
"POS=PROPN|Typo=Yes":96,
|
541 |
+
"Aspect=Imp|Mood=Ind|POS=VERB|Voice=Cau":100,
|
542 |
+
"Number=Plur|POS=PROPN":96,
|
543 |
+
"Aspect=Perf|Mood=Ind|POS=NOUN|Voice=Act":92,
|
544 |
+
"Case=Loc|Deixis=Prox|POS=SCONJ|PronType=Dem":98,
|
545 |
+
"Case=Loc|Deixis=Prox|POS=NOUN|PronType=Dem":92,
|
546 |
+
"NumType=Card|POS=ADV":86,
|
547 |
+
"Case=Nom|Deixis=Remt|POS=PROPN|PronType=Dem":96,
|
548 |
+
"Aspect=Imp|Mood=Pot|POS=NOUN|Voice=Act":92,
|
549 |
+
"Aspect=Imp|Mood=Pot|POS=ADV|Voice=Pass":86,
|
550 |
+
"Case=Dat|Clusivity=Ex|Number=Plur|POS=ADJ|Person=1|PronType=Prs":84,
|
551 |
+
"NumType=Card|POS=PROPN":96,
|
552 |
+
"Case=Dat|Number=Sing|POS=NOUN|Person=1|PronType=Prs":92,
|
553 |
+
"Aspect=Imp|Mood=Pot|POS=PROPN|Voice=Pass":96,
|
554 |
+
"Deixis=Remt|POS=PROPN|PronType=Dem":96,
|
555 |
+
"Deixis=Remt|POS=PRON|PronType=Dem":95,
|
556 |
+
"Aspect=Perf|Mood=Ind|POS=PROPN|Voice=Pass":96,
|
557 |
+
"Aspect=Imp|Mood=Pot|POS=NOUN|Voice=Pass":92,
|
558 |
+
"POS=NOUN|PronType=Int":92,
|
559 |
+
"Case=Nom|POS=PRON|PronType=Ind":95,
|
560 |
+
"Aspect=Perf|Mood=Ind|POS=NOUN|Voice=Lfoc":92,
|
561 |
+
"Case=Gen|Number=Sing|POS=DET":90,
|
562 |
+
"Case=Gen|POS=SCONJ|Typo=Yes":98,
|
563 |
+
"Case=Gen|POS=PART":94,
|
564 |
+
"POS=VERB|Typo=Yes":100,
|
565 |
+
"Case=Gen|Number=Plur|POS=PRON|Person=2|PronType=Prs|Typo=Yes":95,
|
566 |
+
"POS=PART|Typo=Yes":94,
|
567 |
+
"Aspect=Perf|Mood=Ind|POS=PRON|Voice=Pass":95,
|
568 |
+
"NumType=Card|POS=NOUN":92,
|
569 |
+
"POS=SCONJ|Typo=Yes":98,
|
570 |
+
"Abbr=Yes|POS=ADJ":84,
|
571 |
+
"POS=ADV|Typo=Yes":86,
|
572 |
+
"Case=Gen|Deixis=Remt|POS=ADV|PronType=Dem":86,
|
573 |
+
"Number=Plur|POS=VERB":100,
|
574 |
+
"Aspect=Imp|Mood=Pot|Number=Plur|POS=VERB|Voice=Pass":100,
|
575 |
+
"POS=NUM|PronType=Int":93,
|
576 |
+
"POS=X":101,
|
577 |
+
"Abbr=Yes|POS=PROPN":96,
|
578 |
+
"Degree=Equ|POS=ADJ":84,
|
579 |
+
"Case=Dat|Number=Sing|POS=ADJ|Person=2|PronType=Prs":84,
|
580 |
+
"POS=CCONJ|Typo=Yes":89,
|
581 |
+
"Case=Gen|Number=Sing|POS=ADP|Typo=Yes":85,
|
582 |
+
"POS=ADJ|Typo=Yes":84,
|
583 |
+
"POS=PRON|PronType=Dem":95,
|
584 |
+
"NumType=Ord|POS=NUM":93,
|
585 |
+
"Case=Dat|Clusivity=Ex|Number=Plur|POS=VERB|Person=1|PronType=Prs":100,
|
586 |
+
"Case=Nom|Number=Dual|POS=PRON|Person=2|PronType=Prs":95,
|
587 |
+
"Case=Loc|Deixis=Prox|POS=ADV|PronType=Dem":86,
|
588 |
+
"Aspect=Perf|Mood=Ind|POS=VERB":100,
|
589 |
+
"POS=DET|Typo=Yes":90,
|
590 |
+
"Case=Loc|Deixis=Remt|POS=ADV|PronType=Dem":86,
|
591 |
+
"Aspect=Perf|Mood=Ind|POS=X":101,
|
592 |
+
"NumType=Ord|POS=ADV":86,
|
593 |
+
"Aspect=Imp|Mood=Pot|POS=SCONJ|Voice=Act":98,
|
594 |
+
"Case=Loc|POS=NOUN":92,
|
595 |
+
"Degree=Sup|POS=ADV":86,
|
596 |
+
"Case=Gen|Number=Sing|POS=PRON|Person=1|PronType=Prs|Typo=Yes":95,
|
597 |
+
"Case=Gen|POS=PART|Typo=Yes":94,
|
598 |
+
"Aspect=Perf|Mood=Ind|POS=VERB|Typo=Yes|Voice=Pass":100,
|
599 |
+
"Aspect=Imp|Mood=Pot|POS=VERB":100,
|
600 |
+
"Case=Dat|Number=Sing|POS=NOUN|Person=3|PronType=Prs":92,
|
601 |
+
"Number=Plur|POS=NOUN":92,
|
602 |
+
"Case=Dat|Number=Sing|POS=NOUN":92,
|
603 |
+
"Aspect=Imp|Mood=Pot|POS=NOUN|Voice=Bfoc":92,
|
604 |
+
"Case=Gen|Deixis=Remt|POS=PRON|PronType=Dem":95,
|
605 |
+
"Deixis=Med|POS=PRON|PronType=Dem":95,
|
606 |
+
"POS=PRON|PronType=Tot":95,
|
607 |
+
"Case=Nom|Number=Sing|POS=NOUN|Person=3|PronType=Prs":92,
|
608 |
+
"Aspect=Imp|Mood=Pot|POS=NOUN|Voice=Lfoc":92,
|
609 |
+
"NumType=Frac|POS=NOUN":92,
|
610 |
+
"NumType=Card|POS=ADJ":84,
|
611 |
+
"Case=Gen|Number=Sing|POS=PROPN|Person=2|PronType=Prs":96,
|
612 |
+
"Case=Nom|Number=Sing|POS=PROPN|Person=1|PronType=Prs":96,
|
613 |
+
"Case=Nom|POS=PROPN":96,
|
614 |
+
"Case=Gen|Number=Sing|POS=VERB":100,
|
615 |
+
"Deixis=Prox|POS=PRON|PronType=Dem":95,
|
616 |
+
"Aspect=Imp|Mood=Pot|POS=PROPN|Voice=Lfoc":96,
|
617 |
+
"Case=Nom|Deixis=Remt|POS=NOUN|PronType=Dem":92,
|
618 |
+
"Case=Dat|POS=ADP":85,
|
619 |
+
"Case=Loc|POS=VERB|PronType=Int":100,
|
620 |
+
"POS=PRON|Person=1":95,
|
621 |
+
"Aspect=Perf|Mood=Ind|POS=SCONJ|Voice=Pass":98,
|
622 |
+
"Degree=Sup|POS=VERB":100,
|
623 |
+
"Aspect=Imp|Mood=Ind|POS=SCONJ|Voice=Act":98,
|
624 |
+
"Case=Gen|Number=Plur|POS=NOUN|Person=2|PronType=Prs":92,
|
625 |
+
"Aspect=Imp|Mood=Ind|POS=NOUN|Voice=Act":92,
|
626 |
+
"Case=Gen|Number=Sing|POS=ADV|Person=2|PronType=Prs":86,
|
627 |
+
"Case=Loc|POS=NOUN|PronType=Int":92,
|
628 |
+
"Aspect=Imp|Mood=Pot|POS=ADP|Voice=Act":85,
|
629 |
+
"Case=Gen|Deixis=Prox|POS=ADV|PronType=Dem":86,
|
630 |
+
"Aspect=Imp|Mood=Ind|POS=ADV|Voice=Pass":86,
|
631 |
+
"POS=SCONJ|PronType=Int":98,
|
632 |
+
"Degree=Abs|POS=ADJ":84,
|
633 |
+
"Case=Gen|Clusivity=In|Number=Plur|POS=ADP|Person=1|PronType=Prs":85,
|
634 |
+
"Aspect=Imp|Mood=Pot|POS=ADJ|Voice=Pass":84,
|
635 |
+
"Aspect=Perf|Mood=Ind|POS=ADV|Voice=Act":86,
|
636 |
+
"NumType=Card|POS=NUM|PronType=Int":93,
|
637 |
+
"Aspect=Perf|Mood=Pot|POS=VERB|Voice=Cau":100,
|
638 |
+
"Aspect=Perf|Mood=Pot|POS=VERB|Voice=Bfoc":100,
|
639 |
+
"Aspect=Perf|Mood=Pot|POS=NOUN|Voice=Pass":92,
|
640 |
+
"Aspect=Imp|Mood=Pot|POS=ADV|Voice=Act":86,
|
641 |
+
"Deixis=Remt|POS=ADV|PronType=Dem":86,
|
642 |
+
"Deixis=Prox|POS=ADJ|PronType=Dem":84,
|
643 |
+
"Deixis=Prox|POS=ADV|PronType=Dem":86,
|
644 |
+
"Aspect=Imp|Mood=Ind|POS=NOUN|Voice=Lfoc":92,
|
645 |
+
"Case=Loc|POS=PART":94,
|
646 |
+
"Deixis=Remt|POS=VERB|PronType=Dem":100,
|
647 |
+
"Aspect=Imp|Mood=Pot|POS=ADJ|Voice=Lfoc":84,
|
648 |
+
"NumType=Card|POS=VERB":100,
|
649 |
+
"POS=ADP|Typo=Yes":85,
|
650 |
+
"Case=Nom|POS=PART|Typo=Yes":94,
|
651 |
+
"Case=Nom|Number=Plur|POS=PART":94,
|
652 |
+
"Aspect=Imp|Mood=Ind|POS=NOUN|Voice=Pass":92,
|
653 |
+
"NumType=Sets|POS=ADV":86,
|
654 |
+
"Case=Gen|Deixis=Remt|POS=SCONJ|PronType=Dem":98,
|
655 |
+
"Aspect=Imp|Mood=Ind|POS=NOUN|Voice=Bfoc":92,
|
656 |
+
"Case=Nom|Number=Sing|POS=PROPN|Person=3|PronType=Prs":96,
|
657 |
+
"Aspect=Imp|Mood=Pot|POS=ADJ|Voice=Act":84,
|
658 |
+
"Case=Nom|Deixis=Med|POS=VERB|PronType=Dem":100,
|
659 |
+
"Case=Nom|Number=Plur|POS=NOUN|Person=2|PronType=Prs":92,
|
660 |
+
"Aspect=Imp|Mood=Pot|POS=PRON|Voice=Act":95,
|
661 |
+
"Aspect=Imp|Mood=Ind|POS=PROPN|Voice=Act":96,
|
662 |
+
"Case=Dat|Number=Sing|POS=ADV|Person=3|PronType=Prs":86,
|
663 |
+
"Case=Loc|Deixis=Prox|POS=CCONJ|PronType=Dem":89,
|
664 |
+
"Case=Nom|POS=DET|Typo=Yes":90,
|
665 |
+
"Case=Loc|POS=PRON|PronType=Int":95,
|
666 |
+
"Case=Nom|Number=Plur|POS=PRON|Person=1|PronType=Prs":95,
|
667 |
+
"POS=CCONJ|Polarity=Neg":89,
|
668 |
+
"Case=Loc|Deixis=Remt|POS=VERB|PronType=Dem":100,
|
669 |
+
"Case=Nom|POS=ADP":85,
|
670 |
+
"Degree=Sup|NumType=Ord|POS=ADJ":84,
|
671 |
+
"Degree=Cmp|POS=ADV":86,
|
672 |
+
"NumType=Dist|POS=ADV":86,
|
673 |
+
"Aspect=Imp|Mood=Ind|Number=Plur|POS=VERB|Voice=Act":100,
|
674 |
+
"NumType=Dist|POS=ADJ":84,
|
675 |
+
"Aspect=Perf|Mood=Ind|Number=Plur|POS=VERB|Voice=Act":100,
|
676 |
+
"Case=Dat|Number=Plur|POS=PRON|Person=3|PronType=Prs|Typo=Yes":95,
|
677 |
+
"Case=Gen|POS=DET|Typo=Yes":90,
|
678 |
+
"Case=Nom|Deixis=Prox|POS=PART|PronType=Dem":94,
|
679 |
+
"Case=Gen,Nom|Number=Sing|POS=PRON|Person=3|PronType=Prs":95,
|
680 |
+
"Case=Gen|POS=SCONJ":98,
|
681 |
+
"Aspect=Perf|Mood=Pot|POS=VERB|Typo=Yes|Voice=Pass":100,
|
682 |
+
"Case=Gen|POS=NOUN":92,
|
683 |
+
"Case=Dat|Clusivity=Ex|Number=Plur|POS=NOUN|Person=1|PronType=Prs":92,
|
684 |
+
"NumType=Ord|POS=ADJ|Typo=Yes":84,
|
685 |
+
"Case=Gen|Deixis=Prox|POS=PRON|PronType=Dem|Typo=Yes":95,
|
686 |
+
"NumType=Sets|POS=NUM":93,
|
687 |
+
"Aspect=Perf|Mood=Ind|POS=ADV|Voice=Pass":86,
|
688 |
+
"Abbr=Yes|Case=Nom|Number=Sing|POS=PRON|Person=3|PronType=Prs":95,
|
689 |
+
"POS=ADJ|Polarity=Neg":84,
|
690 |
+
"Case=Nom|POS=NOUN|PronType=Ind":92,
|
691 |
+
"NumType=Ord|POS=NOUN":92,
|
692 |
+
"POS=CCONJ|PartType=Int":89,
|
693 |
+
"Aspect=Perf|Mood=Ind|POS=X|Voice=Act":101,
|
694 |
+
"Case=Nom|Number=Dual|POS=NOUN|Person=2|PronType=Prs":92,
|
695 |
+
"Aspect=Imp|Mood=Pot|POS=VERB|Typo=Yes|Voice=Lfoc":100,
|
696 |
+
"Case=Nom|Number=Sing|POS=PRON|Person=1|PronType=Prs|Typo=Yes":95,
|
697 |
+
"Case=Nom|Number=Sing|POS=NOUN|Person=1|PronType=Prs":92,
|
698 |
+
"NumType=Dist|POS=NUM":93,
|
699 |
+
"Number=Plur|POS=PRON|PronType=Ind":95,
|
700 |
+
"Case=Gen|Number=Sing|POS=NOUN|Person=1|PronType=Prs":92,
|
701 |
+
"Case=Nom|Deixis=Remt|POS=PRON|PronType=Dem|Typo=Yes":95,
|
702 |
+
"Case=Nom|Number=Sing|POS=ADV|Person=3|PronType=Prs":86,
|
703 |
+
"Case=Nom|Number=Sing|POS=ADP":85,
|
704 |
+
"Abbr=Yes|POS=NOUN":92,
|
705 |
+
"Case=Gen|Deixis=Remt|POS=ADP|PronType=Dem":85,
|
706 |
+
"POS=PRON|PronType=Ind":95,
|
707 |
+
"POS=VERB|Polarity=Neg|Typo=Yes":100,
|
708 |
+
"POS=ADP|Polarity=Neg":85,
|
709 |
+
"Case=Loc|POS=ADV|PronType=Int|Typo=Yes":86,
|
710 |
+
"Case=Nom|Deixis=Med|POS=PROPN|PronType=Dem":96,
|
711 |
+
"Case=Loc|Deixis=Remt|POS=NOUN|PronType=Dem":92,
|
712 |
+
"Case=Gen|Number=Plur|POS=NOUN|Person=3|PronType=Prs":92,
|
713 |
+
"Aspect=Imp|Mood=Pot|POS=VERB|Typo=Yes|Voice=Pass":100,
|
714 |
+
"Case=Nom|Clusivity=In|Number=Dual|POS=PRON|Person=1|PronType=Prs|Typo=Yes":95,
|
715 |
+
"Case=Gen|Number=Plur|POS=ADP|Person=3|PronType=Prs":85,
|
716 |
+
"Case=Gen|Deixis=Med|POS=PRON|PronType=Dem":95,
|
717 |
+
"Case=Nom|Clusivity=Ex|Number=Dual|POS=PRON|Person=1|PronType=Prs":95,
|
718 |
+
"Number=Sing|POS=ADV":86,
|
719 |
+
"Case=Dat|POS=PRON|PronType=Int":95,
|
720 |
+
"Aspect=Imp|Mood=Ind|POS=PROPN|Voice=Pass":96,
|
721 |
+
"Aspect=Imp|Mood=Pot|POS=VERB|Typo=Yes|Voice=Act":100,
|
722 |
+
"Number=Plur|POS=PRON|PronType=Int":95,
|
723 |
+
"Case=Nom|POS=VERB":100,
|
724 |
+
"Case=Nom|POS=ADV|PronType=Ind":86,
|
725 |
+
"Aspect=Imp|Mood=Ind|POS=NUM|Voice=Act":93,
|
726 |
+
"Case=Nom|Number=Plur|POS=PROPN|Person=1|PronType=Prs":96,
|
727 |
+
"Aspect=Perf|Mood=Pot|POS=NOUN|Voice=Act":92,
|
728 |
+
"Case=Gen|Deixis=Prox|POS=ADP|PronType=Dem":85,
|
729 |
+
"POS=SCONJ|Polarity=Neg":98,
|
730 |
+
"Aspect=Imp|Mood=Ind|POS=ADJ|Voice=Act":84,
|
731 |
+
"Case=Loc|POS=ADP|Typo=Yes":85,
|
732 |
+
"NumType=Ord|POS=VERB":100,
|
733 |
+
"Case=Nom|POS=SCONJ":98,
|
734 |
+
"Aspect=Perf|Mood=Ind|NumType=Ord|POS=VERB|Voice=Act":100,
|
735 |
+
"Case=Nom|Clusivity=Ex|Number=Plur|POS=NOUN|Person=1|PronType=Prs":92,
|
736 |
+
"Degree=Cmp|POS=VERB":100,
|
737 |
+
"Case=Nom|Number=Sing|POS=PRON|Person=3|PronType=Prs|Typo=Yes":95,
|
738 |
+
"NumType=Sets|POS=NOUN":92,
|
739 |
+
"Aspect=Perf|Mood=Ind|POS=ADP|Voice=Act":85,
|
740 |
+
"Aspect=Imp|Mood=Pot|POS=PROPN|Voice=Act":96,
|
741 |
+
"Case=Dat|Number=Sing|POS=NOUN|Person=2|PronType=Prs":92,
|
742 |
+
"NumType=Ord|POS=INTJ":91,
|
743 |
+
"Case=Nom|Number=Plur|POS=ADJ|Person=2|PronType=Prs":84,
|
744 |
+
"Aspect=Imp|Mood=Pot|POS=ADP|Voice=Pass":85,
|
745 |
+
"Case=Nom|POS=ADV|PronType=Int":86,
|
746 |
+
"Degree=Sup|POS=NOUN":92,
|
747 |
+
"Case=Gen|Number=Sing|POS=PART":94,
|
748 |
+
"Aspect=Perf|Mood=Ind|POS=ADP|Voice=Pass":85,
|
749 |
+
"Number=Plur|POS=ADV":86,
|
750 |
+
"Case=Loc|Number=Plur|POS=ADP|Typo=Yes":85,
|
751 |
+
"Case=Nom|POS=ADV":86,
|
752 |
+
"Case=Gen|Number=Plur|POS=PROPN|Person=2|PronType=Prs":96,
|
753 |
+
"Case=Loc|POS=ADV":86,
|
754 |
+
"Case=Nom|Number=Plur|POS=NOUN|Person=1|PronType=Prs":92,
|
755 |
+
"POS=ADJ|PronType=Int":84,
|
756 |
+
"POS=NOUN|Polarity=Neg":92,
|
757 |
+
"POS=CCONJ|PronType=Int":89,
|
758 |
+
"Case=Gen|POS=ADV":86,
|
759 |
+
"POS=ADV|PronType=Ind":86,
|
760 |
+
"POS=PROPN|Polarity=Neg":96,
|
761 |
+
"Deixis=Prox|POS=VERB|PronType=Dem":100,
|
762 |
+
"Case=Nom|Number=Plur|POS=PRON|Person=2|PronType=Prs|Typo=Yes":95,
|
763 |
+
"Case=Loc|Deixis=Remt|POS=PROPN|PronType=Dem":96,
|
764 |
+
"Aspect=Imp|Mood=Pot|POS=SCONJ|Voice=Pass":98,
|
765 |
+
"Case=Dat|Clusivity=Ex|Number=Plur|POS=NUM|Person=1|PronType=Prs":93,
|
766 |
+
"POS=PRON|PronType=Int|Typo=Yes":95,
|
767 |
+
"Aspect=Imp|Mood=Ind|POS=ADJ|Voice=Pass":84,
|
768 |
+
"Case=Loc|Deixis=Prox|POS=DET|PronType=Dem":90,
|
769 |
+
"Case=Dat,Loc|Number=Sing|POS=PRON|Person=2|PronType=Prs":95,
|
770 |
+
"Case=Gen|Number=Sing|POS=PRON|Person=3|PronType=Prs|Typo=Yes":95,
|
771 |
+
"Aspect=Perf|Case=Gen|Mood=Ind|POS=VERB|Typo=Yes|Voice=Cau":100,
|
772 |
+
"Case=Gen|Number=Plur|POS=PRON":95,
|
773 |
+
"Case=Nom|Deixis=Prox|POS=NUM|PronType=Dem":93,
|
774 |
+
"Case=Dat,Gen|Number=Plur|POS=PRON|Person=3|PronType=Prs":95,
|
775 |
+
"Case=Dat,Loc|Clusivity=In|Number=Plur|POS=PRON|Person=1|PronType=Prs":95,
|
776 |
+
"Case=Loc|POS=SCONJ|PronType=Int":98,
|
777 |
+
"POS=PART|Polite=Form|Typo=Yes":94,
|
778 |
+
"Abbr=Yes|POS=ADV|Polarity=Neg":86,
|
779 |
+
"NumType=Card|POS=PART":94,
|
780 |
+
"Case=Nom|POS=ADP|Typo=Yes":85,
|
781 |
+
"Case=Dat|Number=Sing|POS=PROPN|Person=3|PronType=Prs":96,
|
782 |
+
"Case=Dat|Number=Sing|POS=ADV|Person=2|PronType=Prs":86,
|
783 |
+
"Case=Nom|Clusivity=In|Number=Plur|POS=VERB|Person=1|PronType=Prs":100,
|
784 |
+
"Case=Gen|POS=VERB":100,
|
785 |
+
"Case=Nom|Deixis=Prox|POS=PROPN|PronType=Dem":96,
|
786 |
+
"Case=Nom|Number=Sing|POS=PROPN|Person=2|PronType=Prs":96,
|
787 |
+
"Case=Dat|Clusivity=In|Number=Plur|POS=NOUN|Person=1|PronType=Prs":92,
|
788 |
+
"Number=Plur|POS=DET|Typo=Yes":90,
|
789 |
+
"Case=Gen|POS=ADJ":84,
|
790 |
+
"NumType=Frac|POS=ADJ":84,
|
791 |
+
"Case=Gen|POS=PRON|PronType=Ind":95,
|
792 |
+
"POS=ADV|PartType=Int":86,
|
793 |
+
"Case=Nom|Deixis=Prox|POS=NOUN|PronType=Dem":92,
|
794 |
+
"Degree=Abs|POS=VERB":100,
|
795 |
+
"Deixis=Med|POS=VERB|PronType=Dem":100,
|
796 |
+
"NumType=Card|POS=PRON":95,
|
797 |
+
"Case=Gen|Deixis=Remt|POS=ADJ|PronType=Dem":84,
|
798 |
+
"Aspect=Imp|Mood=Pot|POS=DET|Voice=Pass":90,
|
799 |
+
"Case=Loc|Deixis=Remt|POS=DET|PronType=Dem":90,
|
800 |
+
"Case=Loc|POS=VERB":100,
|
801 |
+
"Degree=Cmp|POS=ADJ":84,
|
802 |
+
"Degree=Abs|POS=SCONJ":98,
|
803 |
+
"NumType=Dist|POS=ADP":85,
|
804 |
+
"Case=Dat|Number=Plur|POS=PART|Person=3|PronType=Prs":94,
|
805 |
+
"Deixis=Remt|POS=NOUN|PronType=Dem":92,
|
806 |
+
"Case=Gen|Deixis=Prox|POS=DET|PronType=Dem":90,
|
807 |
+
"POS=ADV|Polarity=Neg|Typo=Yes":86,
|
808 |
+
"Case=Gen|Number=Plur|POS=PRON|Person=3|PronType=Prs|Typo=Yes":95,
|
809 |
+
"Aspect=Perf|Mood=Ind|POS=VERB|Typo=Yes|Voice=Bfoc":100,
|
810 |
+
"Degree=Sup|POS=PROPN":96,
|
811 |
+
"Case=Loc|Deixis=Med|POS=ADV|PronType=Dem":86,
|
812 |
+
"Case=Nom|Number=Plur|POS=PRON|Person=3|PronType=Prs|Typo=Yes":95,
|
813 |
+
"Case=Nom|Number=Plur|POS=PROPN|Person=3|PronType=Prs":96,
|
814 |
+
"Case=Nom|POS=PROPN|PronType=Ind":96,
|
815 |
+
"Case=Nom|Deixis=Prox|POS=VERB|PronType=Dem":100,
|
816 |
+
"Case=Gen|Number=Sing|POS=VERB|Person=1|PronType=Prs":100,
|
817 |
+
"Case=Nom|Clusivity=In|Number=Dual|POS=ADJ|Person=1|PronType=Prs":84,
|
818 |
+
"Case=Gen|Number=Sing|POS=ADV":86,
|
819 |
+
"Deixis=Med|POS=ADV|PronType=Dem":86,
|
820 |
+
"POS=ADV|PartType=Int|Polarity=Neg":86,
|
821 |
+
"Degree=Abs|POS=ADV":86,
|
822 |
+
"Case=Dat|POS=ADP|Typo=Yes":85,
|
823 |
+
"POS=VERB|PronType=Int":100,
|
824 |
+
"Case=Gen|Number=Plur|POS=ADP|Typo=Yes":85,
|
825 |
+
"Case=Nom|Deixis=Remt|POS=DET|PronType=Dem":90,
|
826 |
+
"Case=Gen|POS=ADV|Typo=Yes":86,
|
827 |
+
"Aspect=Imp|Mood=Pot|POS=ADV|Voice=Lfoc":86,
|
828 |
+
"Aspect=Imp|Case=Loc|Mood=Pot|POS=SCONJ|PronType=Int|Voice=Pass":98,
|
829 |
+
"Case=Gen|Number=Sing|POS=DET|Typo=Yes":90,
|
830 |
+
"Case=Nom|Deixis=Med|POS=NOUN|PronType=Dem":92,
|
831 |
+
"Aspect=Imp|Mood=Pot|POS=PRON|Voice=Pass":95,
|
832 |
+
"Case=Nom|Deixis=Remt|POS=NUM|PronType=Dem":93,
|
833 |
+
"Case=Nom|Deixis=Remt|POS=ADV|PronType=Dem":86,
|
834 |
+
"Case=Gen|Deixis=Med|POS=ADV|PronType=Dem":86,
|
835 |
+
"Aspect=Perf|Case=Gen|Mood=Ind|POS=VERB|Voice=Pass":100,
|
836 |
+
"Degree=Equ|POS=ADV":86,
|
837 |
+
"NumType=Card|POS=DET":90,
|
838 |
+
"Case=Gen|Deixis=Remt|POS=ADV|PronType=Dem|Typo=Yes":86,
|
839 |
+
"Abbr=Yes|Case=Nom|POS=PRON|PronType=Int":95,
|
840 |
+
"POS=INTJ|Polite=Form":91,
|
841 |
+
"Aspect=Perf|Mood=Ind|POS=ADJ|Voice=Act":84,
|
842 |
+
"Case=Nom|Clusivity=In|Number=Plur|POS=PART|Person=1|PronType=Prs":94,
|
843 |
+
"Case=Nom|POS=NOUN":92,
|
844 |
+
"Aspect=Imp|Mood=Ind|POS=VERB|Polarity=Neg|Voice=Pass":100,
|
845 |
+
"Aspect=Imp|Mood=Ind|POS=VERB|Typo=Yes|Voice=Pass":100,
|
846 |
+
"Case=Loc|Deixis=Med|POS=PRON|PronType=Dem|Typo=Yes":95,
|
847 |
+
"Aspect=Imp|Mood=Pot|POS=NOUN|Voice=Cau":92,
|
848 |
+
"Case=Nom|Number=Sing|POS=VERB|Person=2|PronType=Prs":100,
|
849 |
+
"Degree=Sup|POS=ADJ|Typo=Yes":84,
|
850 |
+
"Deixis=Prox|POS=PROPN|PronType=Dem":96,
|
851 |
+
"Case=Nom|Number=Plur|POS=ADP":85,
|
852 |
+
"Case=Nom|Number=Plur|POS=ADV|Person=2|PronType=Prs":86,
|
853 |
+
"Case=Loc|POS=PRON":95,
|
854 |
+
"Case=Nom|POS=PROPN|PronType=Int":96,
|
855 |
+
"Aspect=Imp|Mood=Ind|POS=VERB|Typo=Yes|Voice=Lfoc":100,
|
856 |
+
"Deixis=Prox|POS=ADV|PronType=Dem|Typo=Yes":86,
|
857 |
+
"POS=PRON|Typo=Yes":95,
|
858 |
+
"Abbr=Yes|Case=Gen|Number=Plur|POS=PRON|Person=2|PronType=Prs":95,
|
859 |
+
"Abbr=Yes|POS=ADV":86,
|
860 |
+
"Abbr=Yes|NumType=Card|POS=NUM":93,
|
861 |
+
"Deixis=Prox|POS=NUM|PronType=Dem":93,
|
862 |
+
"Deixis=Remt|POS=SCONJ|PronType=Dem":98,
|
863 |
+
"NumType=Card|POS=NUM|Typo=Yes":93,
|
864 |
+
"Case=Nom|POS=PRON|PronType=Ind|Typo=Yes":95,
|
865 |
+
"Case=Gen|Number=Sing|POS=PART|Person=3|PronType=Prs":94,
|
866 |
+
"Case=Dat,Loc|Number=Sing|POS=ADP|Person=2|PronType=Prs":85,
|
867 |
+
"Case=Nom|Number=Sing|POS=PART|Person=3|PronType=Prs":94,
|
868 |
+
"Aspect=Perf|Mood=Ind|POS=PART|Voice=Pass":94,
|
869 |
+
"Case=Gen|Deixis=Prox|POS=NUM|PronType=Dem":93,
|
870 |
+
"Aspect=Imp|Mood=Ind|POS=PRON|Voice=Pass":95,
|
871 |
+
"Case=Loc|Deixis=Prox|POS=PROPN|PronType=Dem":96,
|
872 |
+
"Case=Gen|Number=Sing|POS=PROPN|Person=3|PronType=Prs":96,
|
873 |
+
"Case=Gen|Number=Sing|POS=NOUN|Person=3|PronType=Prs":92,
|
874 |
+
"Case=Loc|POS=PUNCT":97,
|
875 |
+
"Case=Nom|Number=Plur|POS=DET|Typo=Yes":90,
|
876 |
+
"Aspect=Imp|Mood=Ind|POS=VERB|Typo=Yes|Voice=Act":100,
|
877 |
+
"Aspect=Imp|Mood=Ind|POS=ADV|Voice=Act":86,
|
878 |
+
"Case=Nom|Number=Sing|POS=PRON":95
|
879 |
+
},
|
880 |
+
"overwrite":true
|
881 |
+
}
|
morphologizer/model
ADDED
Binary file (449 kB). View file
|
|
parser/cfg
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"moves":null,
|
3 |
+
"update_with_oracle_cut_size":100,
|
4 |
+
"multitasks":[
|
5 |
+
|
6 |
+
],
|
7 |
+
"min_action_freq":30,
|
8 |
+
"learn_tokens":false,
|
9 |
+
"beam_width":1,
|
10 |
+
"beam_density":0.0,
|
11 |
+
"beam_update_prob":0.0,
|
12 |
+
"incorrect_spans_key":null
|
13 |
+
}
|
parser/model
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:afff762729c72262d243aa69447a41fa30339f174ec95b423e3e681b8cff2fa5
|
3 |
+
size 1753113
|
parser/moves
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
��moves��{"0":{"":111561},"1":{"":131021},"2":{"case":32821,"det":19743,"mark":10839,"advmod":7830,"cc":6422,"amod":5937,"punct":5847,"nmod":3856,"nummod":3015,"nsubj":2944,"nmod:poss":2285,"advcl":2244,"obl":2149,"acl:relcl":1676,"compound":973,"dislocated":658,"obj:agent":633,"dep":385,"compound:redup":382,"discourse":246,"parataxis":177,"acl":75,"vocative":52,"advmod||advmod":48,"fixed||case":44,"orphan":39,"obj":34},"3":{"punct":17500,"nsubj":15349,"flat":14207,"nmod":12013,"advmod":11749,"obl":10595,"conj":6808,"obj:agent":5540,"nmod:poss":5474,"obj":4831,"advcl":4819,"acl:relcl":3496,"discourse":3172,"fixed":3153,"ccomp":2973,"xcomp":1718,"case":1661,"appos":1321,"parataxis":1158,"mark":679,"compound":488,"dep":328,"list":321,"acl":223,"nummod":174,"amod":172,"acl:relcl||obj":139,"obl||acl:relcl":118,"nmod||obj":63,"vocative":60,"obj:agent||acl:relcl":60,"goeswith":55,"dislocated":49,"compound:redup":46,"obl||xcomp":45,"orphan":38},"4":{"ROOT":12495}}�cfg��neg_key�
|
tagger/cfg
ADDED
@@ -0,0 +1,640 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"label_smoothing":0.05,
|
3 |
+
"labels":[
|
4 |
+
"ADJ",
|
5 |
+
"ADJ_ADP__Case=Gen",
|
6 |
+
"ADJ_CCONJ",
|
7 |
+
"ADJ_CCONJ__Degree=Abs",
|
8 |
+
"ADJ_PART",
|
9 |
+
"ADJ_PART_ADJ",
|
10 |
+
"ADJ_PART_ADJ_PART__Degree=Abs",
|
11 |
+
"ADJ_PART_ADJ__Degree=Abs",
|
12 |
+
"ADJ_PART__Aspect=Imp|Mood=Ind|Voice=Act",
|
13 |
+
"ADJ_PART__Aspect=Imp|Mood=Pot|Voice=Pass",
|
14 |
+
"ADJ_PART__Aspect=Perf|Mood=Ind|Voice=Pass",
|
15 |
+
"ADJ_PART__Case=Gen|Deixis=Remt|PronType=Dem",
|
16 |
+
"ADJ_PART__Case=Nom|Number=Plur|Person=2|PronType=Prs",
|
17 |
+
"ADJ_PART__Degree=Abs",
|
18 |
+
"ADJ_PART__Degree=Sup",
|
19 |
+
"ADJ_PART__Degree=Sup|NumType=Ord",
|
20 |
+
"ADJ_PART__Degree=Sup|Typo=Yes",
|
21 |
+
"ADJ_PART__Deixis=Prox|PronType=Dem",
|
22 |
+
"ADJ_PART__NumType=Card",
|
23 |
+
"ADJ_PART__NumType=Frac",
|
24 |
+
"ADJ_PART__NumType=Ord",
|
25 |
+
"ADJ_PART__NumType=Ord|Typo=Yes",
|
26 |
+
"ADJ_PART__Polarity=Neg",
|
27 |
+
"ADJ_PART__Typo=Yes",
|
28 |
+
"ADJ_X",
|
29 |
+
"ADJ__Abbr=Yes",
|
30 |
+
"ADJ__Aspect=Imp|Mood=Ind|Voice=Act",
|
31 |
+
"ADJ__Aspect=Imp|Mood=Ind|Voice=Pass",
|
32 |
+
"ADJ__Aspect=Imp|Mood=Pot|Voice=Act",
|
33 |
+
"ADJ__Aspect=Imp|Mood=Pot|Voice=Lfoc",
|
34 |
+
"ADJ__Aspect=Imp|Mood=Pot|Voice=Pass",
|
35 |
+
"ADJ__Aspect=Perf|Mood=Ind|Voice=Act",
|
36 |
+
"ADJ__Case=Dat|Clusivity=Ex|Number=Plur|Person=1|PronType=Prs",
|
37 |
+
"ADJ__Case=Dat|Number=Sing|Person=2|PronType=Prs",
|
38 |
+
"ADJ__Case=Gen|Deixis=Remt|PronType=Dem",
|
39 |
+
"ADJ__Case=Nom|Clusivity=In|Number=Dual|Person=1|PronType=Prs",
|
40 |
+
"ADJ__Case=Nom|Number=Plur|Person=2|PronType=Prs",
|
41 |
+
"ADJ__Degree=Abs",
|
42 |
+
"ADJ__Degree=Cmp",
|
43 |
+
"ADJ__Degree=Equ",
|
44 |
+
"ADJ__Degree=Sup",
|
45 |
+
"ADJ__NumType=Card",
|
46 |
+
"ADJ__NumType=Dist",
|
47 |
+
"ADJ__NumType=Ord",
|
48 |
+
"ADJ__Polarity=Neg",
|
49 |
+
"ADJ__PronType=Int",
|
50 |
+
"ADJ__Typo=Yes",
|
51 |
+
"ADP",
|
52 |
+
"ADP_ADP",
|
53 |
+
"ADP_CCONJ",
|
54 |
+
"ADP_PART",
|
55 |
+
"ADP_PART__Case=Gen|Deixis=Prox|PronType=Dem",
|
56 |
+
"ADP_PART__Case=Gen|Deixis=Remt|PronType=Dem",
|
57 |
+
"ADP_PRON_PART__Case=Dat,Loc|Number=Sing|Person=2|PronType=Prs",
|
58 |
+
"ADP_PRON__Case=Dat,Loc|Clusivity=In|Number=Plur|Person=1|PronType=Prs",
|
59 |
+
"ADP_PRON__Case=Dat,Loc|Number=Sing|Person=2|PronType=Prs",
|
60 |
+
"ADP_PRON__Case=Dat|Number=Sing|Person=1|PronType=Prs",
|
61 |
+
"ADP_PRON__Case=Loc",
|
62 |
+
"ADP__Aspect=Imp|Mood=Pot|Voice=Act",
|
63 |
+
"ADP__Aspect=Imp|Mood=Pot|Voice=Pass",
|
64 |
+
"ADP__Aspect=Perf|Mood=Ind|Voice=Act",
|
65 |
+
"ADP__Aspect=Perf|Mood=Ind|Voice=Pass",
|
66 |
+
"ADP__Case=Dat",
|
67 |
+
"ADP__Case=Dat|Number=Plur",
|
68 |
+
"ADP__Case=Dat|Number=Sing",
|
69 |
+
"ADP__Case=Dat|Typo=Yes",
|
70 |
+
"ADP__Case=Gen",
|
71 |
+
"ADP__Case=Gen|Clusivity=In|Number=Plur|Person=1|PronType=Prs",
|
72 |
+
"ADP__Case=Gen|Number=Plur",
|
73 |
+
"ADP__Case=Gen|Number=Plur|Person=3|PronType=Prs",
|
74 |
+
"ADP__Case=Gen|Number=Plur|Typo=Yes",
|
75 |
+
"ADP__Case=Gen|Number=Sing",
|
76 |
+
"ADP__Case=Gen|Number=Sing|Typo=Yes",
|
77 |
+
"ADP__Case=Gen|Typo=Yes",
|
78 |
+
"ADP__Case=Loc",
|
79 |
+
"ADP__Case=Loc|Number=Plur|Typo=Yes",
|
80 |
+
"ADP__Case=Loc|Typo=Yes",
|
81 |
+
"ADP__Case=Nom",
|
82 |
+
"ADP__Case=Nom|Number=Plur",
|
83 |
+
"ADP__Case=Nom|Number=Sing",
|
84 |
+
"ADP__Case=Nom|Typo=Yes",
|
85 |
+
"ADP__NumType=Dist",
|
86 |
+
"ADP__Polarity=Neg",
|
87 |
+
"ADP__Typo=Yes",
|
88 |
+
"ADV",
|
89 |
+
"ADV_ADP",
|
90 |
+
"ADV_ADP__Case=Gen",
|
91 |
+
"ADV_ADV",
|
92 |
+
"ADV_CCONJ",
|
93 |
+
"ADV_DET",
|
94 |
+
"ADV_DET__Case=Loc|PronType=Int",
|
95 |
+
"ADV_DET__Case=Nom",
|
96 |
+
"ADV_DET__Number=Sing",
|
97 |
+
"ADV_PART",
|
98 |
+
"ADV_PART__Aspect=Imp|Mood=Pot|Voice=Pass",
|
99 |
+
"ADV_PART__Aspect=Perf|Mood=Ind|Voice=Pass",
|
100 |
+
"ADV_PART__Case=Dat|Number=Sing|Person=2|PronType=Prs",
|
101 |
+
"ADV_PART__Case=Dat|Number=Sing|Person=3|PronType=Prs",
|
102 |
+
"ADV_PART__Case=Gen",
|
103 |
+
"ADV_PART__Case=Gen|Deixis=Med|PronType=Dem",
|
104 |
+
"ADV_PART__Case=Gen|Deixis=Prox|PronType=Dem",
|
105 |
+
"ADV_PART__Case=Gen|Deixis=Remt|PronType=Dem",
|
106 |
+
"ADV_PART__Case=Gen|Deixis=Remt|PronType=Dem|Typo=Yes",
|
107 |
+
"ADV_PART__Case=Gen|Typo=Yes",
|
108 |
+
"ADV_PART__Case=Loc",
|
109 |
+
"ADV_PART__Case=Loc|PronType=Int",
|
110 |
+
"ADV_PART__Case=Nom|Deixis=Remt|PronType=Dem",
|
111 |
+
"ADV_PART__Case=Nom|Number=Plur|Person=2|PronType=Prs",
|
112 |
+
"ADV_PART__Case=Nom|Number=Sing|Person=3|PronType=Prs",
|
113 |
+
"ADV_PART__Deixis=Med|PronType=Dem",
|
114 |
+
"ADV_PART__Deixis=Prox|PronType=Dem",
|
115 |
+
"ADV_PART__Deixis=Prox|PronType=Dem|Typo=Yes",
|
116 |
+
"ADV_PART__Deixis=Remt|PronType=Dem",
|
117 |
+
"ADV_PART__NumType=Card",
|
118 |
+
"ADV_PART__NumType=Dist",
|
119 |
+
"ADV_PART__NumType=Ord",
|
120 |
+
"ADV_PART__PartType=Int|Polarity=Neg",
|
121 |
+
"ADV_PART__Polarity=Neg",
|
122 |
+
"ADV_PART__PronType=Int",
|
123 |
+
"ADV_PART__Typo=Yes",
|
124 |
+
"ADV_VERB_PART__Aspect=Imp|Mood=Ind|Polarity=Neg|Voice=Pass",
|
125 |
+
"ADV_X",
|
126 |
+
"ADV__Abbr=Yes",
|
127 |
+
"ADV__Abbr=Yes|Polarity=Neg",
|
128 |
+
"ADV__Aspect=Imp|Mood=Ind|Voice=Act",
|
129 |
+
"ADV__Aspect=Imp|Mood=Ind|Voice=Pass",
|
130 |
+
"ADV__Aspect=Imp|Mood=Pot|Voice=Act",
|
131 |
+
"ADV__Aspect=Imp|Mood=Pot|Voice=Lfoc",
|
132 |
+
"ADV__Aspect=Imp|Mood=Pot|Voice=Pass",
|
133 |
+
"ADV__Aspect=Perf|Mood=Ind|Voice=Act",
|
134 |
+
"ADV__Aspect=Perf|Mood=Ind|Voice=Pass",
|
135 |
+
"ADV__Case=Dat|Number=Sing|Person=3|PronType=Prs",
|
136 |
+
"ADV__Case=Gen",
|
137 |
+
"ADV__Case=Gen|Deixis=Prox|PronType=Dem",
|
138 |
+
"ADV__Case=Gen|Deixis=Remt|PronType=Dem",
|
139 |
+
"ADV__Case=Gen|Deixis=Remt|PronType=Dem|Typo=Yes",
|
140 |
+
"ADV__Case=Gen|Number=Sing",
|
141 |
+
"ADV__Case=Gen|Number=Sing|Person=2|PronType=Prs",
|
142 |
+
"ADV__Case=Gen|Typo=Yes",
|
143 |
+
"ADV__Case=Loc",
|
144 |
+
"ADV__Case=Loc|Deixis=Med|PronType=Dem",
|
145 |
+
"ADV__Case=Loc|Deixis=Prox|PronType=Dem",
|
146 |
+
"ADV__Case=Loc|Deixis=Remt|PronType=Dem",
|
147 |
+
"ADV__Case=Loc|PronType=Int",
|
148 |
+
"ADV__Case=Loc|PronType=Int|Typo=Yes",
|
149 |
+
"ADV__Case=Nom|Deixis=Remt|PronType=Dem",
|
150 |
+
"ADV__Case=Nom|PronType=Ind",
|
151 |
+
"ADV__Case=Nom|PronType=Int",
|
152 |
+
"ADV__Degree=Abs",
|
153 |
+
"ADV__Degree=Cmp",
|
154 |
+
"ADV__Degree=Equ",
|
155 |
+
"ADV__Degree=Sup",
|
156 |
+
"ADV__Deixis=Med|PronType=Dem",
|
157 |
+
"ADV__Deixis=Prox|PronType=Dem",
|
158 |
+
"ADV__Deixis=Remt|PronType=Dem",
|
159 |
+
"ADV__NumType=Card",
|
160 |
+
"ADV__NumType=Dist",
|
161 |
+
"ADV__NumType=Ord",
|
162 |
+
"ADV__NumType=Sets",
|
163 |
+
"ADV__Number=Plur",
|
164 |
+
"ADV__PartType=Int",
|
165 |
+
"ADV__Polarity=Neg",
|
166 |
+
"ADV__Polarity=Neg|Typo=Yes",
|
167 |
+
"ADV__PronType=Ind",
|
168 |
+
"ADV__PronType=Int",
|
169 |
+
"ADV__Typo=Yes",
|
170 |
+
"Aspect=Imp|Mood=Ind|Voice=Lfoc",
|
171 |
+
"CCONJ",
|
172 |
+
"CCONJ_ADV__Polarity=Neg",
|
173 |
+
"CCONJ_CCONJ",
|
174 |
+
"CCONJ__Case=Loc|Deixis=Prox|PronType=Dem",
|
175 |
+
"CCONJ__PronType=Int",
|
176 |
+
"CCONJ__Typo=Yes",
|
177 |
+
"DET",
|
178 |
+
"DET_PART",
|
179 |
+
"DET_PART__Case=Gen|Deixis=Prox|PronType=Dem",
|
180 |
+
"DET_PART__Case=Nom|Deixis=Remt|PronType=Dem",
|
181 |
+
"DET__Aspect=Imp|Mood=Pot|Voice=Pass",
|
182 |
+
"DET__Case=Gen|Number=Sing",
|
183 |
+
"DET__Case=Gen|Number=Sing|Typo=Yes",
|
184 |
+
"DET__Case=Gen|Typo=Yes",
|
185 |
+
"DET__Case=Loc|Deixis=Prox|PronType=Dem",
|
186 |
+
"DET__Case=Loc|Deixis=Remt|PronType=Dem",
|
187 |
+
"DET__Case=Nom",
|
188 |
+
"DET__Case=Nom|Number=Plur",
|
189 |
+
"DET__Case=Nom|Number=Plur|Typo=Yes",
|
190 |
+
"DET__Case=Nom|Number=Sing",
|
191 |
+
"DET__Case=Nom|Number=Sing|Typo=Yes",
|
192 |
+
"DET__Case=Nom|Typo=Yes",
|
193 |
+
"DET__NumType=Card",
|
194 |
+
"DET__Number=Plur",
|
195 |
+
"DET__Number=Plur|Typo=Yes",
|
196 |
+
"DET__Typo=Yes",
|
197 |
+
"INTJ",
|
198 |
+
"INTJ_PART",
|
199 |
+
"INTJ__NumType=Ord",
|
200 |
+
"INTJ__Polite=Form",
|
201 |
+
"NOUN",
|
202 |
+
"NOUN_ADP",
|
203 |
+
"NOUN_CCONJ",
|
204 |
+
"NOUN_CCONJ__Case=Nom|Deixis=Prox|PronType=Dem",
|
205 |
+
"NOUN_CCONJ__NumType=Ord",
|
206 |
+
"NOUN_DET__Case=Nom",
|
207 |
+
"NOUN_NOUN_PART",
|
208 |
+
"NOUN_PART",
|
209 |
+
"NOUN_PART__Aspect=Imp|Mood=Pot|Voice=Act",
|
210 |
+
"NOUN_PART__Aspect=Imp|Mood=Pot|Voice=Lfoc",
|
211 |
+
"NOUN_PART__Aspect=Imp|Mood=Pot|Voice=Pass",
|
212 |
+
"NOUN_PART__Case=Dat|Number=Sing|Person=3|PronType=Prs",
|
213 |
+
"NOUN_PART__Case=Gen",
|
214 |
+
"NOUN_PART__Case=Gen|Number=Plur|Person=3|PronType=Prs",
|
215 |
+
"NOUN_PART__Case=Loc",
|
216 |
+
"NOUN_PART__Case=Nom|Clusivity=Ex|Number=Plur|Person=1|PronType=Prs",
|
217 |
+
"NOUN_PART__Case=Nom|Number=Plur|Person=2|PronType=Prs",
|
218 |
+
"NOUN_PART__Case=Nom|Number=Sing|Person=1|PronType=Prs",
|
219 |
+
"NOUN_PART__Case=Nom|Number=Sing|Person=3|PronType=Prs",
|
220 |
+
"NOUN_PART__Case=Nom|PronType=Ind",
|
221 |
+
"NOUN_PART__Degree=Sup",
|
222 |
+
"NOUN_PART__NumType=Card",
|
223 |
+
"NOUN_PART__NumType=Ord",
|
224 |
+
"NOUN_PART__PronType=Int",
|
225 |
+
"NOUN_PART__Typo=Yes",
|
226 |
+
"NOUN_X",
|
227 |
+
"NOUN__Abbr=Yes",
|
228 |
+
"NOUN__Aspect=Imp|Mood=Ind|Voice=Act",
|
229 |
+
"NOUN__Aspect=Imp|Mood=Ind|Voice=Bfoc",
|
230 |
+
"NOUN__Aspect=Imp|Mood=Ind|Voice=Lfoc",
|
231 |
+
"NOUN__Aspect=Imp|Mood=Ind|Voice=Pass",
|
232 |
+
"NOUN__Aspect=Imp|Mood=Pot|Voice=Act",
|
233 |
+
"NOUN__Aspect=Imp|Mood=Pot|Voice=Bfoc",
|
234 |
+
"NOUN__Aspect=Imp|Mood=Pot|Voice=Cau",
|
235 |
+
"NOUN__Aspect=Imp|Mood=Pot|Voice=Lfoc",
|
236 |
+
"NOUN__Aspect=Imp|Mood=Pot|Voice=Pass",
|
237 |
+
"NOUN__Aspect=Perf|Mood=Ind|Voice=Act",
|
238 |
+
"NOUN__Aspect=Perf|Mood=Ind|Voice=Lfoc",
|
239 |
+
"NOUN__Aspect=Perf|Mood=Ind|Voice=Pass",
|
240 |
+
"NOUN__Aspect=Perf|Mood=Pot|Voice=Act",
|
241 |
+
"NOUN__Aspect=Perf|Mood=Pot|Voice=Pass",
|
242 |
+
"NOUN__Case=Dat|Clusivity=Ex|Number=Plur|Person=1|PronType=Prs",
|
243 |
+
"NOUN__Case=Dat|Clusivity=In|Number=Plur|Person=1|PronType=Prs",
|
244 |
+
"NOUN__Case=Dat|Number=Sing",
|
245 |
+
"NOUN__Case=Dat|Number=Sing|Person=1|PronType=Prs",
|
246 |
+
"NOUN__Case=Dat|Number=Sing|Person=2|PronType=Prs",
|
247 |
+
"NOUN__Case=Dat|Number=Sing|Person=3|PronType=Prs",
|
248 |
+
"NOUN__Case=Gen",
|
249 |
+
"NOUN__Case=Gen|Number=Plur|Person=2|PronType=Prs",
|
250 |
+
"NOUN__Case=Gen|Number=Sing|Person=1|PronType=Prs",
|
251 |
+
"NOUN__Case=Gen|Number=Sing|Person=3|PronType=Prs",
|
252 |
+
"NOUN__Case=Loc",
|
253 |
+
"NOUN__Case=Loc|Deixis=Prox|PronType=Dem",
|
254 |
+
"NOUN__Case=Loc|Deixis=Remt|PronType=Dem",
|
255 |
+
"NOUN__Case=Loc|PronType=Int",
|
256 |
+
"NOUN__Case=Loc|Typo=Yes",
|
257 |
+
"NOUN__Case=Nom|Deixis=Med|PronType=Dem",
|
258 |
+
"NOUN__Case=Nom|Deixis=Prox|PronType=Dem",
|
259 |
+
"NOUN__Case=Nom|Deixis=Remt|PronType=Dem",
|
260 |
+
"NOUN__Case=Nom|Number=Dual|Person=2|PronType=Prs",
|
261 |
+
"NOUN__Case=Nom|Number=Plur|Person=1|PronType=Prs",
|
262 |
+
"NOUN__Case=Nom|Number=Plur|Person=2|PronType=Prs",
|
263 |
+
"NOUN__Case=Nom|Number=Sing|Person=1|PronType=Prs",
|
264 |
+
"NOUN__Case=Nom|Number=Sing|Person=3|PronType=Prs",
|
265 |
+
"NOUN__Case=Nom|PronType=Ind",
|
266 |
+
"NOUN__Deixis=Remt|PronType=Dem",
|
267 |
+
"NOUN__NumType=Card",
|
268 |
+
"NOUN__NumType=Frac",
|
269 |
+
"NOUN__NumType=Ord",
|
270 |
+
"NOUN__NumType=Sets",
|
271 |
+
"NOUN__Number=Plur",
|
272 |
+
"NOUN__Polarity=Neg",
|
273 |
+
"NOUN__PronType=Int",
|
274 |
+
"NOUN__Typo=Yes",
|
275 |
+
"NUM",
|
276 |
+
"NUM_CCONJ",
|
277 |
+
"NUM_CCONJ__NumType=Card",
|
278 |
+
"NUM_DET__NumType=Card|Typo=Yes",
|
279 |
+
"NUM_NOUN__NumType=Card",
|
280 |
+
"NUM_PART",
|
281 |
+
"NUM_PART__Case=Gen|Deixis=Prox|PronType=Dem",
|
282 |
+
"NUM_PART__Case=Nom|Deixis=Prox|PronType=Dem",
|
283 |
+
"NUM_PART__Case=Nom|Deixis=Remt|PronType=Dem",
|
284 |
+
"NUM_PART__Deixis=Prox|PronType=Dem",
|
285 |
+
"NUM_PART__NumType=Card",
|
286 |
+
"NUM_PART__NumType=Dist",
|
287 |
+
"NUM_PART__NumType=Ord",
|
288 |
+
"NUM_PART__PronType=Int",
|
289 |
+
"NUM_PUNCT_NOUN__NumType=Card",
|
290 |
+
"NUM__Abbr=Yes|NumType=Card",
|
291 |
+
"NUM__Aspect=Imp|Mood=Ind|Voice=Act",
|
292 |
+
"NUM__Case=Dat|Clusivity=Ex|Number=Plur|Person=1|PronType=Prs",
|
293 |
+
"NUM__Deixis=Prox|PronType=Dem",
|
294 |
+
"NUM__NumType=Card",
|
295 |
+
"NUM__NumType=Card|PronType=Int",
|
296 |
+
"NUM__NumType=Dist",
|
297 |
+
"NUM__NumType=Frac",
|
298 |
+
"NUM__NumType=Ord",
|
299 |
+
"NUM__NumType=Sets",
|
300 |
+
"NUM__PronType=Int",
|
301 |
+
"NumType=Ord",
|
302 |
+
"NumType=Ord__NumType=Ord",
|
303 |
+
"PART",
|
304 |
+
"PART_CCONJ",
|
305 |
+
"PART_CCONJ__PartType=Int",
|
306 |
+
"PART_DET__PartType=Int",
|
307 |
+
"PART_PART",
|
308 |
+
"PART_PART__PartType=Int",
|
309 |
+
"PART_PART__Polite=Form",
|
310 |
+
"PART__Aspect=Perf|Mood=Ind|Voice=Pass",
|
311 |
+
"PART__Case=Gen",
|
312 |
+
"PART__Case=Gen|Number=Sing",
|
313 |
+
"PART__Case=Gen|Typo=Yes",
|
314 |
+
"PART__Case=Loc",
|
315 |
+
"PART__Case=Nom|Number=Plur",
|
316 |
+
"PART__Case=Nom|Typo=Yes",
|
317 |
+
"PART__PartType=Int",
|
318 |
+
"PART__Polite=Form",
|
319 |
+
"PART__Polite=Form|Typo=Yes",
|
320 |
+
"PART__Typo=Yes",
|
321 |
+
"PRON",
|
322 |
+
"PRON_ADP__Case=Dat,Gen|Number=Plur|Person=3|PronType=Prs",
|
323 |
+
"PRON_ADV",
|
324 |
+
"PRON_ADV__Case=Dat|Number=Sing|Person=3|PronType=Prs",
|
325 |
+
"PRON_ADV__Case=Gen|Deixis=Prox|PronType=Dem",
|
326 |
+
"PRON_AUX",
|
327 |
+
"PRON_CCONJ",
|
328 |
+
"PRON_DET__Abbr=Yes|Case=Nom|Number=Sing|Person=3|PronType=Prs",
|
329 |
+
"PRON_DET__Case=Gen,Nom|Number=Sing|Person=3|PronType=Prs",
|
330 |
+
"PRON_DET__Case=Gen|Number=Sing|Person=3|PronType=Prs",
|
331 |
+
"PRON_DET__Case=Nom|Number=Sing|Person=1|PronType=Prs",
|
332 |
+
"PRON_DET__Case=Nom|Number=Sing|Person=3|PronType=Prs",
|
333 |
+
"PRON_DET__Case=Nom|PronType=Int",
|
334 |
+
"PRON_DET__PronType=Int",
|
335 |
+
"PRON_PART",
|
336 |
+
"PRON_PART__Aspect=Imp|Mood=Pot|Voice=Pass",
|
337 |
+
"PRON_PART__Aspect=Perf|Mood=Ind|Voice=Act",
|
338 |
+
"PRON_PART__Case=Dat|Clusivity=Ex|Number=Plur|Person=1|PronType=Prs",
|
339 |
+
"PRON_PART__Case=Dat|Clusivity=In|Number=Plur|Person=1|PronType=Prs",
|
340 |
+
"PRON_PART__Case=Dat|Number=Plur|Person=2|PronType=Prs",
|
341 |
+
"PRON_PART__Case=Dat|Number=Plur|Person=3|PronType=Prs",
|
342 |
+
"PRON_PART__Case=Dat|Number=Plur|Person=3|PronType=Prs|Typo=Yes",
|
343 |
+
"PRON_PART__Case=Dat|Number=Sing|Person=1|PronType=Prs",
|
344 |
+
"PRON_PART__Case=Dat|Number=Sing|Person=2|PronType=Prs",
|
345 |
+
"PRON_PART__Case=Dat|Number=Sing|Person=3|PronType=Prs",
|
346 |
+
"PRON_PART__Case=Dat|PronType=Int",
|
347 |
+
"PRON_PART__Case=Gen|Clusivity=Ex|Number=Plur|Person=1|PronType=Prs",
|
348 |
+
"PRON_PART__Case=Gen|Clusivity=In|Number=Plur|Person=1|PronType=Prs",
|
349 |
+
"PRON_PART__Case=Gen|Deixis=Prox|PronType=Dem",
|
350 |
+
"PRON_PART__Case=Gen|Deixis=Remt|PronType=Dem",
|
351 |
+
"PRON_PART__Case=Gen|Number=Plur|Person=2|PronType=Prs",
|
352 |
+
"PRON_PART__Case=Gen|Number=Plur|Person=3|PronType=Prs",
|
353 |
+
"PRON_PART__Case=Gen|Number=Sing|Person=1|PronType=Prs",
|
354 |
+
"PRON_PART__Case=Gen|Number=Sing|Person=1|PronType=Prs|Typo=Yes",
|
355 |
+
"PRON_PART__Case=Gen|Number=Sing|Person=2|PronType=Prs",
|
356 |
+
"PRON_PART__Case=Gen|Number=Sing|Person=3|PronType=Prs",
|
357 |
+
"PRON_PART__Case=Loc|Deixis=Med|PronType=Dem",
|
358 |
+
"PRON_PART__Case=Loc|Deixis=Prox|PronType=Dem",
|
359 |
+
"PRON_PART__Case=Loc|PronType=Int",
|
360 |
+
"PRON_PART__Case=Nom|Clusivity=Ex|Number=Plur|Person=1|PronType=Prs",
|
361 |
+
"PRON_PART__Case=Nom|Clusivity=In|Number=Dual|Person=1|PronType=Prs",
|
362 |
+
"PRON_PART__Case=Nom|Clusivity=In|Number=Plur|Person=1|PronType=Prs",
|
363 |
+
"PRON_PART__Case=Nom|Deixis=Med|PronType=Dem",
|
364 |
+
"PRON_PART__Case=Nom|Deixis=Prox|PronType=Dem",
|
365 |
+
"PRON_PART__Case=Nom|Deixis=Remt|PronType=Dem",
|
366 |
+
"PRON_PART__Case=Nom|Deixis=Remt|PronType=Dem|Typo=Yes",
|
367 |
+
"PRON_PART__Case=Nom|Number=Plur|Person=2|PronType=Prs",
|
368 |
+
"PRON_PART__Case=Nom|Number=Plur|Person=3|PronType=Prs",
|
369 |
+
"PRON_PART__Case=Nom|Number=Sing|Person=1|PronType=Prs",
|
370 |
+
"PRON_PART__Case=Nom|Number=Sing|Person=2|PronType=Prs",
|
371 |
+
"PRON_PART__Case=Nom|Number=Sing|Person=3|PronType=Prs",
|
372 |
+
"PRON_PART__Case=Nom|PronType=Ind",
|
373 |
+
"PRON_PART__Case=Nom|PronType=Int",
|
374 |
+
"PRON_PART__Deixis=Prox|PronType=Dem",
|
375 |
+
"PRON_PART__Person=1",
|
376 |
+
"PRON_PART__PronType=Int",
|
377 |
+
"PRON_VERB",
|
378 |
+
"PRON_X__Case=Nom|Number=Sing|Person=1|PronType=Prs",
|
379 |
+
"PRON__Abbr=Yes|Case=Gen|Number=Plur|Person=2|PronType=Prs",
|
380 |
+
"PRON__Abbr=Yes|Case=Nom|PronType=Int",
|
381 |
+
"PRON__Aspect=Imp|Mood=Ind|Voice=Pass",
|
382 |
+
"PRON__Aspect=Imp|Mood=Pot|Voice=Act",
|
383 |
+
"PRON__Aspect=Imp|Mood=Pot|Voice=Pass",
|
384 |
+
"PRON__Aspect=Perf|Mood=Ind|Voice=Act",
|
385 |
+
"PRON__Aspect=Perf|Mood=Ind|Voice=Pass",
|
386 |
+
"PRON__Case=Dat|Clusivity=Ex|Number=Plur|Person=1|PronType=Prs",
|
387 |
+
"PRON__Case=Dat|Clusivity=In|Number=Plur|Person=1|PronType=Prs",
|
388 |
+
"PRON__Case=Dat|Number=Plur|Person=2|PronType=Prs",
|
389 |
+
"PRON__Case=Dat|Number=Plur|Person=3|PronType=Prs",
|
390 |
+
"PRON__Case=Dat|Number=Sing|Person=1|PronType=Prs",
|
391 |
+
"PRON__Case=Dat|Number=Sing|Person=2|PronType=Prs",
|
392 |
+
"PRON__Case=Dat|Number=Sing|Person=3|PronType=Prs",
|
393 |
+
"PRON__Case=Dat|PronType=Int",
|
394 |
+
"PRON__Case=Gen|Clusivity=Ex|Number=Plur|Person=1|PronType=Prs",
|
395 |
+
"PRON__Case=Gen|Clusivity=In|Number=Plur|Person=1|PronType=Prs",
|
396 |
+
"PRON__Case=Gen|Deixis=Med|PronType=Dem",
|
397 |
+
"PRON__Case=Gen|Deixis=Prox|PronType=Dem",
|
398 |
+
"PRON__Case=Gen|Deixis=Prox|PronType=Dem|Typo=Yes",
|
399 |
+
"PRON__Case=Gen|Deixis=Remt|PronType=Dem",
|
400 |
+
"PRON__Case=Gen|Number=Plur",
|
401 |
+
"PRON__Case=Gen|Number=Plur|Person=2|PronType=Prs",
|
402 |
+
"PRON__Case=Gen|Number=Plur|Person=2|PronType=Prs|Typo=Yes",
|
403 |
+
"PRON__Case=Gen|Number=Plur|Person=3|PronType=Prs",
|
404 |
+
"PRON__Case=Gen|Number=Plur|Person=3|PronType=Prs|Typo=Yes",
|
405 |
+
"PRON__Case=Gen|Number=Sing|Person=1|PronType=Prs",
|
406 |
+
"PRON__Case=Gen|Number=Sing|Person=1|PronType=Prs|Typo=Yes",
|
407 |
+
"PRON__Case=Gen|Number=Sing|Person=2|PronType=Prs",
|
408 |
+
"PRON__Case=Gen|Number=Sing|Person=3|PronType=Prs",
|
409 |
+
"PRON__Case=Gen|Number=Sing|Person=3|PronType=Prs|Typo=Yes",
|
410 |
+
"PRON__Case=Gen|PronType=Ind",
|
411 |
+
"PRON__Case=Loc|Deixis=Med|PronType=Dem",
|
412 |
+
"PRON__Case=Loc|Deixis=Med|PronType=Dem|Typo=Yes",
|
413 |
+
"PRON__Case=Loc|Deixis=Prox|PronType=Dem",
|
414 |
+
"PRON__Case=Loc|Deixis=Remt|PronType=Dem",
|
415 |
+
"PRON__Case=Loc|PronType=Int",
|
416 |
+
"PRON__Case=Nom|Clusivity=Ex|Number=Dual|Person=1|PronType=Prs",
|
417 |
+
"PRON__Case=Nom|Clusivity=Ex|Number=Plur|Person=1|PronType=Prs",
|
418 |
+
"PRON__Case=Nom|Clusivity=In|Number=Dual|Person=1|PronType=Prs",
|
419 |
+
"PRON__Case=Nom|Clusivity=In|Number=Dual|Person=1|PronType=Prs|Typo=Yes",
|
420 |
+
"PRON__Case=Nom|Clusivity=In|Number=Plur|Person=1|PronType=Prs",
|
421 |
+
"PRON__Case=Nom|Deixis=Med|PronType=Dem",
|
422 |
+
"PRON__Case=Nom|Deixis=Prox|PronType=Dem",
|
423 |
+
"PRON__Case=Nom|Deixis=Remt|PronType=Dem",
|
424 |
+
"PRON__Case=Nom|Deixis=Remt|PronType=Dem|Typo=Yes",
|
425 |
+
"PRON__Case=Nom|Number=Dual|Person=2|PronType=Prs",
|
426 |
+
"PRON__Case=Nom|Number=Plur|Person=1|PronType=Prs",
|
427 |
+
"PRON__Case=Nom|Number=Plur|Person=2|PronType=Prs",
|
428 |
+
"PRON__Case=Nom|Number=Plur|Person=2|PronType=Prs|Typo=Yes",
|
429 |
+
"PRON__Case=Nom|Number=Plur|Person=3|PronType=Prs",
|
430 |
+
"PRON__Case=Nom|Number=Plur|Person=3|PronType=Prs|Typo=Yes",
|
431 |
+
"PRON__Case=Nom|Number=Sing",
|
432 |
+
"PRON__Case=Nom|Number=Sing|Person=1|PronType=Prs",
|
433 |
+
"PRON__Case=Nom|Number=Sing|Person=1|PronType=Prs|Typo=Yes",
|
434 |
+
"PRON__Case=Nom|Number=Sing|Person=2|PronType=Prs",
|
435 |
+
"PRON__Case=Nom|Number=Sing|Person=3|PronType=Prs",
|
436 |
+
"PRON__Case=Nom|Number=Sing|Person=3|PronType=Prs|Typo=Yes",
|
437 |
+
"PRON__Case=Nom|PronType=Ind",
|
438 |
+
"PRON__Case=Nom|PronType=Ind|Typo=Yes",
|
439 |
+
"PRON__Case=Nom|PronType=Int",
|
440 |
+
"PRON__Deixis=Med|PronType=Dem",
|
441 |
+
"PRON__Deixis=Prox|PronType=Dem",
|
442 |
+
"PRON__Deixis=Remt|PronType=Dem",
|
443 |
+
"PRON__NumType=Card",
|
444 |
+
"PRON__Number=Plur|PronType=Ind",
|
445 |
+
"PRON__Number=Plur|PronType=Int",
|
446 |
+
"PRON__PronType=Dem",
|
447 |
+
"PRON__PronType=Ind",
|
448 |
+
"PRON__PronType=Int",
|
449 |
+
"PRON__PronType=Int|Typo=Yes",
|
450 |
+
"PRON__PronType=Tot",
|
451 |
+
"PRON__Typo=Yes",
|
452 |
+
"PROPN",
|
453 |
+
"PROPN_ADP",
|
454 |
+
"PROPN_DET__Case=Nom|PronType=Int",
|
455 |
+
"PROPN_PART",
|
456 |
+
"PROPN_PART__Case=Dat|Number=Sing|Person=3|PronType=Prs",
|
457 |
+
"PROPN_PART__Case=Nom|Deixis=Remt|PronType=Dem",
|
458 |
+
"PROPN_PART__NumType=Ord",
|
459 |
+
"PROPN_PROPN",
|
460 |
+
"PROPN_PROPN__Case=Nom|Number=Sing|Person=1|PronType=Prs",
|
461 |
+
"PROPN_X",
|
462 |
+
"PROPN_X__Aspect=Perf|Mood=Ind|Voice=Pass",
|
463 |
+
"PROPN__Abbr=Yes",
|
464 |
+
"PROPN__Aspect=Imp|Mood=Ind|Voice=Act",
|
465 |
+
"PROPN__Aspect=Imp|Mood=Ind|Voice=Pass",
|
466 |
+
"PROPN__Aspect=Imp|Mood=Pot|Voice=Act",
|
467 |
+
"PROPN__Aspect=Imp|Mood=Pot|Voice=Lfoc",
|
468 |
+
"PROPN__Aspect=Imp|Mood=Pot|Voice=Pass",
|
469 |
+
"PROPN__Aspect=Perf|Mood=Ind|Voice=Pass",
|
470 |
+
"PROPN__Case=Dat|Number=Sing|Person=3|PronType=Prs",
|
471 |
+
"PROPN__Case=Gen",
|
472 |
+
"PROPN__Case=Gen|Number=Plur|Person=2|PronType=Prs",
|
473 |
+
"PROPN__Case=Gen|Number=Sing",
|
474 |
+
"PROPN__Case=Gen|Number=Sing|Person=2|PronType=Prs",
|
475 |
+
"PROPN__Case=Gen|Number=Sing|Person=3|PronType=Prs",
|
476 |
+
"PROPN__Case=Loc",
|
477 |
+
"PROPN__Case=Loc|Deixis=Prox|PronType=Dem",
|
478 |
+
"PROPN__Case=Loc|Deixis=Remt|PronType=Dem",
|
479 |
+
"PROPN__Case=Nom",
|
480 |
+
"PROPN__Case=Nom|Deixis=Med|PronType=Dem",
|
481 |
+
"PROPN__Case=Nom|Deixis=Prox|PronType=Dem",
|
482 |
+
"PROPN__Case=Nom|Deixis=Remt|PronType=Dem",
|
483 |
+
"PROPN__Case=Nom|Number=Plur|Person=1|PronType=Prs",
|
484 |
+
"PROPN__Case=Nom|Number=Plur|Person=3|PronType=Prs",
|
485 |
+
"PROPN__Case=Nom|Number=Sing|Person=1|PronType=Prs",
|
486 |
+
"PROPN__Case=Nom|Number=Sing|Person=2|PronType=Prs",
|
487 |
+
"PROPN__Case=Nom|Number=Sing|Person=3|PronType=Prs",
|
488 |
+
"PROPN__Case=Nom|PronType=Ind",
|
489 |
+
"PROPN__Degree=Sup",
|
490 |
+
"PROPN__Deixis=Prox|PronType=Dem",
|
491 |
+
"PROPN__Deixis=Remt|PronType=Dem",
|
492 |
+
"PROPN__NumType=Card",
|
493 |
+
"PROPN__NumType=Ord",
|
494 |
+
"PROPN__Number=Plur",
|
495 |
+
"PROPN__PartType=Int",
|
496 |
+
"PROPN__Polarity=Neg",
|
497 |
+
"PROPN__PronType=Int",
|
498 |
+
"PROPN__Typo=Yes",
|
499 |
+
"PUNCT",
|
500 |
+
"PUNCT__Case=Loc",
|
501 |
+
"SCONJ",
|
502 |
+
"SCONJ_ADP",
|
503 |
+
"SCONJ_ADV",
|
504 |
+
"SCONJ_ADV__Aspect=Imp|Case=Loc|Mood=Pot|PronType=Int|Voice=Pass",
|
505 |
+
"SCONJ_ADV__Polarity=Neg",
|
506 |
+
"SCONJ_ADV__Typo=Yes",
|
507 |
+
"SCONJ_CCONJ",
|
508 |
+
"SCONJ_CCONJ__Degree=Abs",
|
509 |
+
"SCONJ_PART",
|
510 |
+
"SCONJ_PART__Case=Gen|Deixis=Remt|PronType=Dem",
|
511 |
+
"SCONJ_PART__Case=Loc|PronType=Int",
|
512 |
+
"SCONJ_PART__Deixis=Remt|PronType=Dem",
|
513 |
+
"SCONJ__Aspect=Imp|Mood=Ind|Voice=Act",
|
514 |
+
"SCONJ__Aspect=Imp|Mood=Pot|Voice=Act",
|
515 |
+
"SCONJ__Aspect=Imp|Mood=Pot|Voice=Pass",
|
516 |
+
"SCONJ__Aspect=Perf|Mood=Ind|Voice=Pass",
|
517 |
+
"SCONJ__Case=Gen",
|
518 |
+
"SCONJ__Case=Gen|Deixis=Remt|PronType=Dem",
|
519 |
+
"SCONJ__Case=Gen|Typo=Yes",
|
520 |
+
"SCONJ__Case=Loc|Deixis=Prox|PronType=Dem",
|
521 |
+
"SCONJ__Case=Loc|PronType=Int",
|
522 |
+
"SCONJ__Case=Nom",
|
523 |
+
"SCONJ__Degree=Abs",
|
524 |
+
"SCONJ__PronType=Int",
|
525 |
+
"SCONJ__Typo=Yes",
|
526 |
+
"SYM",
|
527 |
+
"VERB",
|
528 |
+
"VERB_ADP__Aspect=Perf|Case=Gen|Mood=Ind|Typo=Yes|Voice=Cau",
|
529 |
+
"VERB_ADP__Aspect=Perf|Case=Gen|Mood=Ind|Voice=Pass",
|
530 |
+
"VERB_ADP__Case=Gen",
|
531 |
+
"VERB_ADV__Aspect=Perf|Mood=Ind|Voice=Act",
|
532 |
+
"VERB_ADV__Aspect=Perf|Mood=Ind|Voice=Pass",
|
533 |
+
"VERB_CCONJ",
|
534 |
+
"VERB_CCONJ__Aspect=Imp|Mood=Pot|Voice=Act",
|
535 |
+
"VERB_DET",
|
536 |
+
"VERB_DET__Case=Nom",
|
537 |
+
"VERB_DET__Polarity=Neg",
|
538 |
+
"VERB_PART",
|
539 |
+
"VERB_PART_NOUN",
|
540 |
+
"VERB_PART_NOUN__Aspect=Imp|Mood=Ind|Voice=Cau",
|
541 |
+
"VERB_PART_VERB",
|
542 |
+
"VERB_PART_VERB__Polarity=Neg",
|
543 |
+
"VERB_PART__Aspect=Imp|Mood=Ind|Typo=Yes|Voice=Act",
|
544 |
+
"VERB_PART__Aspect=Imp|Mood=Ind|Voice=Act",
|
545 |
+
"VERB_PART__Aspect=Imp|Mood=Ind|Voice=Bfoc",
|
546 |
+
"VERB_PART__Aspect=Imp|Mood=Ind|Voice=Cau",
|
547 |
+
"VERB_PART__Aspect=Imp|Mood=Ind|Voice=Lfoc",
|
548 |
+
"VERB_PART__Aspect=Imp|Mood=Ind|Voice=Pass",
|
549 |
+
"VERB_PART__Aspect=Imp|Mood=Pot|Typo=Yes|Voice=Lfoc",
|
550 |
+
"VERB_PART__Aspect=Imp|Mood=Pot|Typo=Yes|Voice=Pass",
|
551 |
+
"VERB_PART__Aspect=Imp|Mood=Pot|Voice=Act",
|
552 |
+
"VERB_PART__Aspect=Imp|Mood=Pot|Voice=Cau",
|
553 |
+
"VERB_PART__Aspect=Imp|Mood=Pot|Voice=Lfoc",
|
554 |
+
"VERB_PART__Aspect=Imp|Mood=Pot|Voice=Pass",
|
555 |
+
"VERB_PART__Aspect=Perf|Mood=Ind|Voice=Act",
|
556 |
+
"VERB_PART__Aspect=Perf|Mood=Ind|Voice=Bfoc",
|
557 |
+
"VERB_PART__Aspect=Perf|Mood=Ind|Voice=Cau",
|
558 |
+
"VERB_PART__Aspect=Perf|Mood=Ind|Voice=Lfoc",
|
559 |
+
"VERB_PART__Aspect=Perf|Mood=Ind|Voice=Pass",
|
560 |
+
"VERB_PART__Aspect=Perf|Mood=Pot|Voice=Act",
|
561 |
+
"VERB_PART__Aspect=Perf|Mood=Pot|Voice=Pass",
|
562 |
+
"VERB_PART__Case=Dat|Clusivity=Ex|Number=Plur|Person=1|PronType=Prs",
|
563 |
+
"VERB_PART__Case=Nom|Deixis=Prox|PronType=Dem",
|
564 |
+
"VERB_PART__Degree=Sup",
|
565 |
+
"VERB_PART__Polarity=Neg",
|
566 |
+
"VERB_PART__Typo=Yes",
|
567 |
+
"VERB_PRON",
|
568 |
+
"VERB_PRON__Case=Gen|Number=Sing|Person=1|PronType=Prs",
|
569 |
+
"VERB_X",
|
570 |
+
"VERB_X__Aspect=Imp|Mood=Ind|Voice=Pass",
|
571 |
+
"VERB_X__Aspect=Imp|Mood=Pot|Voice=Act",
|
572 |
+
"VERB_X__Aspect=Imp|Mood=Pot|Voice=Pass",
|
573 |
+
"VERB_X__Aspect=Perf|Mood=Ind|Voice=Act",
|
574 |
+
"VERB_X__Aspect=Perf|Mood=Ind|Voice=Pass",
|
575 |
+
"VERB_X__Typo=Yes",
|
576 |
+
"VERB__Aspect=Imp|Mood=Ind|Number=Plur|Voice=Act",
|
577 |
+
"VERB__Aspect=Imp|Mood=Ind|Typo=Yes|Voice=Lfoc",
|
578 |
+
"VERB__Aspect=Imp|Mood=Ind|Typo=Yes|Voice=Pass",
|
579 |
+
"VERB__Aspect=Imp|Mood=Ind|Voice=Act",
|
580 |
+
"VERB__Aspect=Imp|Mood=Ind|Voice=Bfoc",
|
581 |
+
"VERB__Aspect=Imp|Mood=Ind|Voice=Cau",
|
582 |
+
"VERB__Aspect=Imp|Mood=Ind|Voice=Lfoc",
|
583 |
+
"VERB__Aspect=Imp|Mood=Ind|Voice=Pass",
|
584 |
+
"VERB__Aspect=Imp|Mood=Pot",
|
585 |
+
"VERB__Aspect=Imp|Mood=Pot|Number=Plur|Voice=Pass",
|
586 |
+
"VERB__Aspect=Imp|Mood=Pot|Typo=Yes|Voice=Act",
|
587 |
+
"VERB__Aspect=Imp|Mood=Pot|Typo=Yes|Voice=Lfoc",
|
588 |
+
"VERB__Aspect=Imp|Mood=Pot|Typo=Yes|Voice=Pass",
|
589 |
+
"VERB__Aspect=Imp|Mood=Pot|Voice=Act",
|
590 |
+
"VERB__Aspect=Imp|Mood=Pot|Voice=Bfoc",
|
591 |
+
"VERB__Aspect=Imp|Mood=Pot|Voice=Cau",
|
592 |
+
"VERB__Aspect=Imp|Mood=Pot|Voice=Lfoc",
|
593 |
+
"VERB__Aspect=Imp|Mood=Pot|Voice=Pass",
|
594 |
+
"VERB__Aspect=Perf|Mood=Ind",
|
595 |
+
"VERB__Aspect=Perf|Mood=Ind|NumType=Ord|Voice=Act",
|
596 |
+
"VERB__Aspect=Perf|Mood=Ind|Number=Plur|Voice=Act",
|
597 |
+
"VERB__Aspect=Perf|Mood=Ind|Typo=Yes|Voice=Act",
|
598 |
+
"VERB__Aspect=Perf|Mood=Ind|Typo=Yes|Voice=Bfoc",
|
599 |
+
"VERB__Aspect=Perf|Mood=Ind|Typo=Yes|Voice=Pass",
|
600 |
+
"VERB__Aspect=Perf|Mood=Ind|Voice=Act",
|
601 |
+
"VERB__Aspect=Perf|Mood=Ind|Voice=Bfoc",
|
602 |
+
"VERB__Aspect=Perf|Mood=Ind|Voice=Cau",
|
603 |
+
"VERB__Aspect=Perf|Mood=Ind|Voice=Lfoc",
|
604 |
+
"VERB__Aspect=Perf|Mood=Ind|Voice=Pass",
|
605 |
+
"VERB__Aspect=Perf|Mood=Pot|Typo=Yes|Voice=Pass",
|
606 |
+
"VERB__Aspect=Perf|Mood=Pot|Voice=Act",
|
607 |
+
"VERB__Aspect=Perf|Mood=Pot|Voice=Bfoc",
|
608 |
+
"VERB__Aspect=Perf|Mood=Pot|Voice=Cau",
|
609 |
+
"VERB__Aspect=Perf|Mood=Pot|Voice=Lfoc",
|
610 |
+
"VERB__Aspect=Perf|Mood=Pot|Voice=Pass",
|
611 |
+
"VERB__Case=Gen|Number=Sing",
|
612 |
+
"VERB__Case=Loc",
|
613 |
+
"VERB__Case=Loc|Deixis=Remt|PronType=Dem",
|
614 |
+
"VERB__Case=Loc|PronType=Int",
|
615 |
+
"VERB__Case=Nom|Clusivity=In|Number=Plur|Person=1|PronType=Prs",
|
616 |
+
"VERB__Case=Nom|Deixis=Med|PronType=Dem",
|
617 |
+
"VERB__Case=Nom|Deixis=Prox|PronType=Dem",
|
618 |
+
"VERB__Case=Nom|Number=Sing|Person=2|PronType=Prs",
|
619 |
+
"VERB__Degree=Abs",
|
620 |
+
"VERB__Degree=Cmp",
|
621 |
+
"VERB__Degree=Sup",
|
622 |
+
"VERB__Deixis=Med|PronType=Dem",
|
623 |
+
"VERB__Deixis=Prox|PronType=Dem",
|
624 |
+
"VERB__Deixis=Remt|PronType=Dem",
|
625 |
+
"VERB__NumType=Card",
|
626 |
+
"VERB__NumType=Ord",
|
627 |
+
"VERB__Number=Plur",
|
628 |
+
"VERB__Polarity=Neg",
|
629 |
+
"VERB__Polarity=Neg|Typo=Yes",
|
630 |
+
"VERB__PronType=Int",
|
631 |
+
"VERB__Typo=Yes",
|
632 |
+
"X",
|
633 |
+
"X__Aspect=Perf|Mood=Ind",
|
634 |
+
"X__Aspect=Perf|Mood=Ind|Voice=Act",
|
635 |
+
"fixed__Case=Loc",
|
636 |
+
"nsubj_PART__Case=Nom|Number=Sing|Person=3|PronType=Prs"
|
637 |
+
],
|
638 |
+
"neg_prefix":"!",
|
639 |
+
"overwrite":false
|
640 |
+
}
|
tagger/model
ADDED
Binary file (651 kB). View file
|
|
tl_hash_transition-any-py3-none-any.whl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:44931671ff2f812f36836ed714763021e7e2186db39382b007bb284adb0a7ccc
|
3 |
+
size 181711992
|
tok2vec/cfg
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
|
3 |
+
}
|
tok2vec/model
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7e72441e0b49a98821c515a19f79c317f4a48562ce7e5b0b4168e285c63a0570
|
3 |
+
size 34331606
|
tokenizer
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
��prefix_search��^§|^%|^=|^—|^–|^\+(?![0-9])|^…|^……|^,|^:|^;|^\!|^\?|^¿|^؟|^¡|^\(|^\)|^\[|^\]|^\{|^\}|^<|^>|^_|^#|^\*|^&|^。|^?|^!|^,|^、|^;|^:|^~|^·|^।|^،|^۔|^؛|^٪|^\.\.+|^…|^\'|^"|^”|^“|^`|^‘|^´|^’|^‚|^,|^„|^»|^«|^「|^」|^『|^』|^(|^)|^〔|^〕|^【|^】|^《|^》|^〈|^〉|^〈|^〉|^⟦|^⟧|^\$|^£|^€|^¥|^฿|^US\$|^C\$|^A\$|^₽|^﷼|^₴|^₠|^₡|^₢|^₣|^₤|^₥|^₦|^₧|^₨|^₩|^₪|^₫|^€|^₭|^₮|^₯|^₰|^₱|^₲|^₳|^₴|^₵|^₶|^₷|^₸|^₹|^₺|^₻|^₼|^₽|^₾|^₿|^[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]�suffix_search�2�…$|……$|,$|:$|;$|\!$|\?$|¿$|؟$|¡$|\($|\)$|\[$|\]$|\{$|\}$|<$|>$|_$|#$|\*$|&$|。$|?$|!$|,$|、$|;$|:$|~$|·$|।$|،$|۔$|؛$|٪$|\.\.+$|…$|\'$|"$|”$|“$|`$|‘$|´$|’$|‚$|,$|„$|»$|«$|「$|」$|『$|』$|($|)$|〔$|〕$|【$|】$|《$|》$|〈$|〉$|〈$|〉$|⟦$|⟧$|[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]$|'s$|'S$|’s$|’S$|—$|–$|(?<=[0-9])\+$|(?<=°[FfCcKk])\.$|(?<=[0-9])(?:\$|£|€|¥|฿|US\$|C\$|A\$|₽|﷼|₴|₠|₡|₢|₣|₤|₥|₦|₧|₨|₩|₪|₫|€|₭|₮|₯|₰|₱|₲|₳|₴|₵|₶|₷|₸|₹|₺|₻|₼|₽|₾|₿)$|(?<=[0-9])(?:km|km²|km³|m|m²|m³|dm|dm²|dm³|cm|cm²|cm³|mm|mm²|mm³|ha|µm|nm|yd|in|ft|kg|g|mg|µg|t|lb|oz|m/s|km/h|kmh|mph|hPa|Pa|mbar|mb|MB|kb|KB|gb|GB|tb|TB|T|G|M|K|%|км|км²|км³|м|м²|м³|дм|дм²|дм³|см|см²|см³|мм|мм²|мм³|нм|кг|г|мг|м/с|км/ч|кПа|Па|мбар|Кб|КБ|кб|Мб|МБ|мб|Гб|ГБ|гб|Тб|ТБ|тбكم|كم²|كم³|م|م²|م³|سم|سم²|سم³|مم|مم²|مم³|كم|غرام|جرام|جم|كغ|ملغ|كوب|اكواب)$|(?<=[0-9a-z\uFF41-\uFF5A\u00DF-\u00F6\u00F8-\u00FF\u0101\u0103\u0105\u0107\u0109\u010B\u010D\u010F\u0111\u0113\u0115\u0117\u0119\u011B\u011D\u011F\u0121\u0123\u0125\u0127\u0129\u012B\u012D\u012F\u0131\u0133\u0135\u0137\u0138\u013A\u013C\u013E\u0140\u0142\u0144\u0146\u0148\u0149\u014B\u014D\u014F\u0151\u0153\u0155\u0157\u0159\u015B\u015D\u015F\u0161\u0163\u0165\u0167\u0169\u016B\u016D\u016F\u0171\u0173\u0175\u0177\u017A\u017C\u017E\u017F\u0180\u0183\u0185\u0188\u018C\u018D\u0192\u0195\u0199-\u019B\u019E\u01A1\u01A3\u01A5\u01A8\u01AA\u01AB\u01AD\u01B0\u01B4\u01B6\u01B9\u01BA\u01BD-\u01BF\u01C6\u01C9\u01CC\u01CE\u01D0\u01D2\u01D4\u01D6\u01D8\u01DA\u01DC\u01DD\u01DF\u01E1\u01E3\u01E5\u01E7\u01E9\u01EB\u01ED\u01EF\u01F0\u01F3\u01F5\u01F9\u01FB\u01FD\u01FF\u0201\u0203\u0205\u0207\u0209\u020B\u020D\u020F\u0211\u0213\u0215\u0217\u0219\u021B\u021D\u021F\u0221\u0223\u0225\u0227\u0229\u022B\u022D\u022F\u0231\u0233-\u0239\u023C\u023F\u0240\u0242\u0247\u0249\u024B\u024D\u024F\u2C61\u2C65\u2C66\u2C68\u2C6A\u2C6C\u2C71\u2C73\u2C74\u2C76-\u2C7B\uA723\uA725\uA727\uA729\uA72B\uA72D\uA72F-\uA731\uA733\uA735\uA737\uA739\uA73B\uA73D\uA73F\uA741\uA743\uA745\uA747\uA749\uA74B\uA74D\uA74F\uA751\uA753\uA755\uA757\uA759\uA75B\uA75D\uA75F\uA761\uA763\uA765\uA767\uA769\uA76B\uA76D\uA76F\uA771-\uA778\uA77A\uA77C\uA77F\uA781\uA783\uA785\uA787\uA78C\uA78E\uA791\uA793-\uA795\uA797\uA799\uA79B\uA79D\uA79F\uA7A1\uA7A3\uA7A5\uA7A7\uA7A9\uA7AF\uA7B5\uA7B7\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E01\u1E03\u1E05\u1E07\u1E09\u1E0B\u1E0D\u1E0F\u1E11\u1E13\u1E15\u1E17\u1E19\u1E1B\u1E1D\u1E1F\u1E21\u1E23\u1E25\u1E27\u1E29\u1E2B\u1E2D\u1E2F\u1E31\u1E33\u1E35\u1E37\u1E39\u1E3B\u1E3D\u1E3F\u1E41\u1E43\u1E45\u1E47\u1E49\u1E4B\u1E4D\u1E4F\u1E51\u1E53\u1E55\u1E57\u1E59\u1E5B\u1E5D\u1E5F\u1E61\u1E63\u1E65\u1E67\u1E69\u1E6B\u1E6D\u1E6F\u1E71\u1E73\u1E75\u1E77\u1E79\u1E7B\u1E7D\u1E7F\u1E81\u1E83\u1E85\u1E87\u1E89\u1E8B\u1E8D\u1E8F\u1E91\u1E93\u1E95-\u1E9D\u1E9F\u1EA1\u1EA3\u1EA5\u1EA7\u1EA9\u1EAB\u1EAD\u1EAF\u1EB1\u1EB3\u1EB5\u1EB7\u1EB9\u1EBB\u1EBD\u1EBF\u1EC1\u1EC3\u1EC5\u1EC7\u1EC9\u1ECB\u1ECD\u1ECF\u1ED1\u1ED3\u1ED5\u1ED7\u1ED9\u1EDB\u1EDD\u1EDF\u1EE1\u1EE3\u1EE5\u1EE7\u1EE9\u1EEB\u1EED\u1EEF\u1EF1\u1EF3\u1EF5\u1EF7\u1EF9\u1EFB\u1EFD\u1EFFёа-яәөүҗңһα-ωάέίόώήύа-щюяіїєґѓѕјљњќѐѝ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F%²\-\+…|……|,|:|;|\!|\?|¿|؟|¡|\(|\)|\[|\]|\{|\}|<|>|_|#|\*|&|。|?|!|,|、|;|:|~|·|।|،|۔|؛|٪(?:\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧)])\.$|(?<=[A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F][A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])\.$�infix_finditer�>�\.\.+|…|[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]|(?<=[0-9])[+\-\*^](?=[0-9-])|(?<=[a-z\uFF41-\uFF5A\u00DF-\u00F6\u00F8-\u00FF\u0101\u0103\u0105\u0107\u0109\u010B\u010D\u010F\u0111\u0113\u0115\u0117\u0119\u011B\u011D\u011F\u0121\u0123\u0125\u0127\u0129\u012B\u012D\u012F\u0131\u0133\u0135\u0137\u0138\u013A\u013C\u013E\u0140\u0142\u0144\u0146\u0148\u0149\u014B\u014D\u014F\u0151\u0153\u0155\u0157\u0159\u015B\u015D\u015F\u0161\u0163\u0165\u0167\u0169\u016B\u016D\u016F\u0171\u0173\u0175\u0177\u017A\u017C\u017E\u017F\u0180\u0183\u0185\u0188\u018C\u018D\u0192\u0195\u0199-\u019B\u019E\u01A1\u01A3\u01A5\u01A8\u01AA\u01AB\u01AD\u01B0\u01B4\u01B6\u01B9\u01BA\u01BD-\u01BF\u01C6\u01C9\u01CC\u01CE\u01D0\u01D2\u01D4\u01D6\u01D8\u01DA\u01DC\u01DD\u01DF\u01E1\u01E3\u01E5\u01E7\u01E9\u01EB\u01ED\u01EF\u01F0\u01F3\u01F5\u01F9\u01FB\u01FD\u01FF\u0201\u0203\u0205\u0207\u0209\u020B\u020D\u020F\u0211\u0213\u0215\u0217\u0219\u021B\u021D\u021F\u0221\u0223\u0225\u0227\u0229\u022B\u022D\u022F\u0231\u0233-\u0239\u023C\u023F\u0240\u0242\u0247\u0249\u024B\u024D\u024F\u2C61\u2C65\u2C66\u2C68\u2C6A\u2C6C\u2C71\u2C73\u2C74\u2C76-\u2C7B\uA723\uA725\uA727\uA729\uA72B\uA72D\uA72F-\uA731\uA733\uA735\uA737\uA739\uA73B\uA73D\uA73F\uA741\uA743\uA745\uA747\uA749\uA74B\uA74D\uA74F\uA751\uA753\uA755\uA757\uA759\uA75B\uA75D\uA75F\uA761\uA763\uA765\uA767\uA769\uA76B\uA76D\uA76F\uA771-\uA778\uA77A\uA77C\uA77F\uA781\uA783\uA785\uA787\uA78C\uA78E\uA791\uA793-\uA795\uA797\uA799\uA79B\uA79D\uA79F\uA7A1\uA7A3\uA7A5\uA7A7\uA7A9\uA7AF\uA7B5\uA7B7\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E01\u1E03\u1E05\u1E07\u1E09\u1E0B\u1E0D\u1E0F\u1E11\u1E13\u1E15\u1E17\u1E19\u1E1B\u1E1D\u1E1F\u1E21\u1E23\u1E25\u1E27\u1E29\u1E2B\u1E2D\u1E2F\u1E31\u1E33\u1E35\u1E37\u1E39\u1E3B\u1E3D\u1E3F\u1E41\u1E43\u1E45\u1E47\u1E49\u1E4B\u1E4D\u1E4F\u1E51\u1E53\u1E55\u1E57\u1E59\u1E5B\u1E5D\u1E5F\u1E61\u1E63\u1E65\u1E67\u1E69\u1E6B\u1E6D\u1E6F\u1E71\u1E73\u1E75\u1E77\u1E79\u1E7B\u1E7D\u1E7F\u1E81\u1E83\u1E85\u1E87\u1E89\u1E8B\u1E8D\u1E8F\u1E91\u1E93\u1E95-\u1E9D\u1E9F\u1EA1\u1EA3\u1EA5\u1EA7\u1EA9\u1EAB\u1EAD\u1EAF\u1EB1\u1EB3\u1EB5\u1EB7\u1EB9\u1EBB\u1EBD\u1EBF\u1EC1\u1EC3\u1EC5\u1EC7\u1EC9\u1ECB\u1ECD\u1ECF\u1ED1\u1ED3\u1ED5\u1ED7\u1ED9\u1EDB\u1EDD\u1EDF\u1EE1\u1EE3\u1EE5\u1EE7\u1EE9\u1EEB\u1EED\u1EEF\u1EF1\u1EF3\u1EF5\u1EF7\u1EF9\u1EFB\u1EFD\u1EFFёа-яәөүҗңһα-ωάέίόώήύа-щюяіїєґѓѕјљњќѐѝ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧])\.(?=[A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F]),(?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])(?:-|–|—|--|---|——|~)(?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F0-9])[:<>=/](?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])�token_match��url_match�
|
2 |
+
��A�
|
3 |
+
� ��A� �'��A�'�''��A�''�'di��A�'diC�hindi�(*_*)��A�(*_*)�(-8��A�(-8�(-:��A�(-:�(-;��A�(-;�(-_-)��A�(-_-)�(._.)��A�(._.)�(:��A�(:�(;��A�(;�(=��A�(=�(>_<)��A�(>_<)�(^_^)��A�(^_^)�(o:��A�(o:�(¬_¬)��A�(¬_¬)�(ಠ_ಠ)��A�(ಠ_ಠ)�(╯°□°)╯︵┻━┻��A�(╯°□°)╯︵┻━┻�)-:��A�)-:�):��A�):�-_-��A�-_-�-__-��A�-__-�._.��A�._.�0.0��A�0.0�0.o��A�0.o�0_0��A�0_0�0_o��A�0_o�8)��A�8)�8-)��A�8-)�8-D��A�8-D�8D��A�8D�:'(��A�:'(�:')��A�:')�:'-(��A�:'-(�:'-)��A�:'-)�:(��A�:(�:((��A�:((�:(((��A�:(((�:()��A�:()�:)��A�:)�:))��A�:))�:)))��A�:)))�:*��A�:*�:-(��A�:-(�:-((��A�:-((�:-(((��A�:-(((�:-)��A�:-)�:-))��A�:-))�:-)))��A�:-)))�:-*��A�:-*�:-/��A�:-/�:-0��A�:-0�:-3��A�:-3�:->��A�:->�:-D��A�:-D�:-O��A�:-O�:-P��A�:-P�:-X��A�:-X�:-]��A�:-]�:-o��A�:-o�:-p��A�:-p�:-x��A�:-x�:-|��A�:-|�:-}��A�:-}�:/��A�:/�:0��A�:0�:1��A�:1�:3��A�:3�:>��A�:>�:D��A�:D�:O��A�:O�:P��A�:P�:X��A�:X�:]��A�:]�:o��A�:o�:o)��A�:o)�:p��A�:p�:x��A�:x�:|��A�:|�:}��A�:}�:’(��A�:’(�:’)��A�:’)�:’-(��A�:’-(�:’-)��A�:’-)�;)��A�;)�;-)��A�;-)�;-D��A�;-D�;D��A�;D�;_;��A�;_;�<.<��A�<.<�</3��A�</3�<3��A�<3�<33��A�<33�<333��A�<333�<space>��A�<space>�=(��A�=(�=)��A�=)�=/��A�=/�=3��A�=3�=D��A�=D�=[��A�=[�=]��A�=]�=|��A�=|�>.<��A�>.<�>.>��A�>.>�>:(��A�>:(�>:o��A�>:o�><(((*>��A�><(((*>�@_@��A�@_@�C++��A�C++�O.O��A�O.O�O.o��A�O.o�O_O��A�O_O�O_o��A�O_o�V.V��A�V.V�V_V��A�V_V�XD��A�XD�XDD��A�XDD�[-:��A�[-:�[:��A�[:�[=��A�[=�\")��A�\")�\n��A�\n�\t��A�\t�]=��A�]=�^_^��A�^_^�^__^��A�^__^�^___^��A�^___^�a.��A�a.�ano'ng��A�ano�A�'ngC�ang�ano’ng��A�ano�A�’ngC�ang�b.��A�b.�baya'y��A�baya�A�'yC�ay�baya’y��A�baya�A�’yC�ay�c.��A�c.�d.��A�d.�e.��A�e.�f.��A�f.�g.��A�g.�h.��A�h.�i.��A�i.�isa'y��A�isa�A�'yC�ay�isa’y��A�isa�A�’yC�ay�j.��A�j.�k.��A�k.�l.��A�l.�m.��A�m.�n.��A�n.�nawa'y��A�nawa�A�'yC�ay�nawa’y��A�nawa�A�’yC�ay�o.��A�o.�o.0��A�o.0�o.O��A�o.O�o.o��A�o.o�o_0��A�o_0�o_O��A�o_O�o_o��A�o_o�p.��A�p.�papa'no��A�papa'noC�papaano�papa’no��A�papa’noC�papaano�q.��A�q.�r.��A�r.�s.��A�s.�sa'yo��A�sa�A�'yoC�iyo�sa’yo��A�sa�A�’yoC�iyo�siya'y��A�siya�A�'yC�ay�siya’y��A�siya�A�’yC�ay�t.��A�t.�tayo'y��A�tayo�A�'yC�ay�tayo’y��A�tayo�A�’yC�ay�u.��A�u.�v.��A�v.�v.v��A�v.v�v_v��A�v_v�w.��A�w.�x.��A�x.�xD��A�xD�xDD��A�xDD�y.��A�y.�z.��A�z.� ��A� C� �¯\(ツ)/¯��A�¯\(ツ)/¯�°C.��A�°�A�C�A�.�°F.��A�°�A�F�A�.�°K.��A�°�A�K�A�.�°c.��A�°�A�c�A�.�°f.��A�°�A�f�A�.�°k.��A�°�A�k�A�.�ä.��A�ä.�ö.��A�ö.�ü.��A�ü.�ಠ_ಠ��A�ಠ_ಠ�ಠ︵ಠ��A�ಠ︵ಠ�—��A�—�’��A�’�’di��A�’diC�hindi�’’��A�’’�faster_heuristics�
|
trainable_lemmatizer/cfg
ADDED
@@ -0,0 +1,1639 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"labels":[
|
3 |
+
0,
|
4 |
+
1,
|
5 |
+
4,
|
6 |
+
7,
|
7 |
+
9,
|
8 |
+
11,
|
9 |
+
13,
|
10 |
+
15,
|
11 |
+
19,
|
12 |
+
21,
|
13 |
+
22,
|
14 |
+
24,
|
15 |
+
27,
|
16 |
+
29,
|
17 |
+
34,
|
18 |
+
36,
|
19 |
+
39,
|
20 |
+
41,
|
21 |
+
12,
|
22 |
+
43,
|
23 |
+
45,
|
24 |
+
47,
|
25 |
+
49,
|
26 |
+
51,
|
27 |
+
55,
|
28 |
+
57,
|
29 |
+
60,
|
30 |
+
62,
|
31 |
+
65,
|
32 |
+
67,
|
33 |
+
69,
|
34 |
+
71,
|
35 |
+
73,
|
36 |
+
75,
|
37 |
+
77,
|
38 |
+
79,
|
39 |
+
81,
|
40 |
+
83,
|
41 |
+
85,
|
42 |
+
87,
|
43 |
+
88,
|
44 |
+
90,
|
45 |
+
92,
|
46 |
+
94,
|
47 |
+
96,
|
48 |
+
97,
|
49 |
+
99,
|
50 |
+
101,
|
51 |
+
104,
|
52 |
+
106,
|
53 |
+
107,
|
54 |
+
109,
|
55 |
+
111,
|
56 |
+
113,
|
57 |
+
116,
|
58 |
+
118,
|
59 |
+
120,
|
60 |
+
123,
|
61 |
+
125,
|
62 |
+
127,
|
63 |
+
129,
|
64 |
+
130,
|
65 |
+
132,
|
66 |
+
134,
|
67 |
+
138,
|
68 |
+
140,
|
69 |
+
142,
|
70 |
+
144,
|
71 |
+
146,
|
72 |
+
150,
|
73 |
+
152,
|
74 |
+
154,
|
75 |
+
155,
|
76 |
+
158,
|
77 |
+
160,
|
78 |
+
162,
|
79 |
+
164,
|
80 |
+
166,
|
81 |
+
169,
|
82 |
+
170,
|
83 |
+
174,
|
84 |
+
176,
|
85 |
+
178,
|
86 |
+
180,
|
87 |
+
182,
|
88 |
+
184,
|
89 |
+
186,
|
90 |
+
188,
|
91 |
+
190,
|
92 |
+
191,
|
93 |
+
192,
|
94 |
+
194,
|
95 |
+
196,
|
96 |
+
197,
|
97 |
+
200,
|
98 |
+
202,
|
99 |
+
204,
|
100 |
+
205,
|
101 |
+
207,
|
102 |
+
210,
|
103 |
+
212,
|
104 |
+
214,
|
105 |
+
215,
|
106 |
+
217,
|
107 |
+
218,
|
108 |
+
220,
|
109 |
+
222,
|
110 |
+
224,
|
111 |
+
226,
|
112 |
+
228,
|
113 |
+
230,
|
114 |
+
232,
|
115 |
+
234,
|
116 |
+
235,
|
117 |
+
237,
|
118 |
+
239,
|
119 |
+
242,
|
120 |
+
244,
|
121 |
+
246,
|
122 |
+
248,
|
123 |
+
250,
|
124 |
+
252,
|
125 |
+
253,
|
126 |
+
254,
|
127 |
+
256,
|
128 |
+
258,
|
129 |
+
259,
|
130 |
+
261,
|
131 |
+
263,
|
132 |
+
264,
|
133 |
+
266,
|
134 |
+
268,
|
135 |
+
270,
|
136 |
+
272,
|
137 |
+
274,
|
138 |
+
275,
|
139 |
+
277,
|
140 |
+
279,
|
141 |
+
281,
|
142 |
+
283,
|
143 |
+
285,
|
144 |
+
286,
|
145 |
+
287,
|
146 |
+
289,
|
147 |
+
290,
|
148 |
+
291,
|
149 |
+
294,
|
150 |
+
295,
|
151 |
+
297,
|
152 |
+
299,
|
153 |
+
301,
|
154 |
+
302,
|
155 |
+
304,
|
156 |
+
306,
|
157 |
+
308,
|
158 |
+
310,
|
159 |
+
311,
|
160 |
+
312,
|
161 |
+
314,
|
162 |
+
316,
|
163 |
+
317,
|
164 |
+
319,
|
165 |
+
321,
|
166 |
+
323,
|
167 |
+
325,
|
168 |
+
328,
|
169 |
+
329,
|
170 |
+
331,
|
171 |
+
333,
|
172 |
+
335,
|
173 |
+
336,
|
174 |
+
338,
|
175 |
+
340,
|
176 |
+
341,
|
177 |
+
343,
|
178 |
+
345,
|
179 |
+
347,
|
180 |
+
348,
|
181 |
+
349,
|
182 |
+
351,
|
183 |
+
352,
|
184 |
+
354,
|
185 |
+
356,
|
186 |
+
358,
|
187 |
+
360,
|
188 |
+
361,
|
189 |
+
362,
|
190 |
+
364,
|
191 |
+
366,
|
192 |
+
368,
|
193 |
+
370,
|
194 |
+
372,
|
195 |
+
373,
|
196 |
+
374,
|
197 |
+
376,
|
198 |
+
378,
|
199 |
+
379,
|
200 |
+
381,
|
201 |
+
383,
|
202 |
+
385,
|
203 |
+
387,
|
204 |
+
389,
|
205 |
+
392,
|
206 |
+
394,
|
207 |
+
396,
|
208 |
+
399,
|
209 |
+
400,
|
210 |
+
402,
|
211 |
+
405,
|
212 |
+
406,
|
213 |
+
408,
|
214 |
+
410,
|
215 |
+
411,
|
216 |
+
413,
|
217 |
+
415,
|
218 |
+
416,
|
219 |
+
418,
|
220 |
+
420,
|
221 |
+
422,
|
222 |
+
424,
|
223 |
+
426,
|
224 |
+
427,
|
225 |
+
428,
|
226 |
+
430,
|
227 |
+
432,
|
228 |
+
434,
|
229 |
+
437,
|
230 |
+
438,
|
231 |
+
440,
|
232 |
+
441,
|
233 |
+
443,
|
234 |
+
445,
|
235 |
+
447,
|
236 |
+
449,
|
237 |
+
452,
|
238 |
+
453,
|
239 |
+
455,
|
240 |
+
456,
|
241 |
+
459,
|
242 |
+
460,
|
243 |
+
462,
|
244 |
+
464,
|
245 |
+
98,
|
246 |
+
466,
|
247 |
+
468,
|
248 |
+
469,
|
249 |
+
470,
|
250 |
+
472,
|
251 |
+
474,
|
252 |
+
476,
|
253 |
+
478,
|
254 |
+
479,
|
255 |
+
481,
|
256 |
+
483,
|
257 |
+
485,
|
258 |
+
487,
|
259 |
+
489,
|
260 |
+
491,
|
261 |
+
493,
|
262 |
+
496,
|
263 |
+
498,
|
264 |
+
501,
|
265 |
+
502,
|
266 |
+
504,
|
267 |
+
505,
|
268 |
+
507,
|
269 |
+
509,
|
270 |
+
511,
|
271 |
+
512,
|
272 |
+
514,
|
273 |
+
515,
|
274 |
+
518,
|
275 |
+
520,
|
276 |
+
521,
|
277 |
+
523,
|
278 |
+
525,
|
279 |
+
527,
|
280 |
+
528,
|
281 |
+
529,
|
282 |
+
532,
|
283 |
+
534,
|
284 |
+
538,
|
285 |
+
539,
|
286 |
+
540,
|
287 |
+
543,
|
288 |
+
545,
|
289 |
+
547,
|
290 |
+
549,
|
291 |
+
550,
|
292 |
+
552,
|
293 |
+
554,
|
294 |
+
556,
|
295 |
+
557,
|
296 |
+
559,
|
297 |
+
562,
|
298 |
+
564,
|
299 |
+
565,
|
300 |
+
567,
|
301 |
+
568,
|
302 |
+
569,
|
303 |
+
570,
|
304 |
+
572,
|
305 |
+
575,
|
306 |
+
577,
|
307 |
+
579,
|
308 |
+
581,
|
309 |
+
583,
|
310 |
+
584,
|
311 |
+
586,
|
312 |
+
588,
|
313 |
+
590,
|
314 |
+
592,
|
315 |
+
594,
|
316 |
+
596,
|
317 |
+
598,
|
318 |
+
600,
|
319 |
+
602,
|
320 |
+
604,
|
321 |
+
605,
|
322 |
+
607,
|
323 |
+
608,
|
324 |
+
609,
|
325 |
+
611,
|
326 |
+
613,
|
327 |
+
614,
|
328 |
+
616,
|
329 |
+
618,
|
330 |
+
619,
|
331 |
+
621,
|
332 |
+
622,
|
333 |
+
623,
|
334 |
+
625,
|
335 |
+
628,
|
336 |
+
631,
|
337 |
+
633,
|
338 |
+
635,
|
339 |
+
636,
|
340 |
+
638,
|
341 |
+
640,
|
342 |
+
642,
|
343 |
+
644,
|
344 |
+
646,
|
345 |
+
648,
|
346 |
+
649,
|
347 |
+
651,
|
348 |
+
653,
|
349 |
+
656,
|
350 |
+
658,
|
351 |
+
660,
|
352 |
+
661,
|
353 |
+
662,
|
354 |
+
664,
|
355 |
+
666,
|
356 |
+
668,
|
357 |
+
670,
|
358 |
+
671,
|
359 |
+
672,
|
360 |
+
674,
|
361 |
+
676,
|
362 |
+
678,
|
363 |
+
680,
|
364 |
+
681,
|
365 |
+
683,
|
366 |
+
687,
|
367 |
+
689,
|
368 |
+
691,
|
369 |
+
692,
|
370 |
+
694,
|
371 |
+
696,
|
372 |
+
697,
|
373 |
+
698,
|
374 |
+
700,
|
375 |
+
701,
|
376 |
+
703,
|
377 |
+
704,
|
378 |
+
706,
|
379 |
+
708,
|
380 |
+
710,
|
381 |
+
712,
|
382 |
+
714,
|
383 |
+
716,
|
384 |
+
719,
|
385 |
+
721,
|
386 |
+
722,
|
387 |
+
724,
|
388 |
+
726,
|
389 |
+
728,
|
390 |
+
730,
|
391 |
+
732,
|
392 |
+
734,
|
393 |
+
737,
|
394 |
+
739,
|
395 |
+
740,
|
396 |
+
742,
|
397 |
+
743,
|
398 |
+
744,
|
399 |
+
746,
|
400 |
+
747,
|
401 |
+
748,
|
402 |
+
750,
|
403 |
+
751,
|
404 |
+
753,
|
405 |
+
755,
|
406 |
+
757,
|
407 |
+
759,
|
408 |
+
761,
|
409 |
+
762,
|
410 |
+
763,
|
411 |
+
765,
|
412 |
+
766,
|
413 |
+
767,
|
414 |
+
769,
|
415 |
+
771,
|
416 |
+
772,
|
417 |
+
774,
|
418 |
+
776,
|
419 |
+
777,
|
420 |
+
778,
|
421 |
+
781,
|
422 |
+
783,
|
423 |
+
785,
|
424 |
+
787,
|
425 |
+
789,
|
426 |
+
790,
|
427 |
+
792,
|
428 |
+
794,
|
429 |
+
796,
|
430 |
+
798,
|
431 |
+
800,
|
432 |
+
801,
|
433 |
+
803,
|
434 |
+
805,
|
435 |
+
807,
|
436 |
+
808,
|
437 |
+
811,
|
438 |
+
813,
|
439 |
+
815,
|
440 |
+
817,
|
441 |
+
818,
|
442 |
+
821,
|
443 |
+
822,
|
444 |
+
824,
|
445 |
+
825,
|
446 |
+
827,
|
447 |
+
829,
|
448 |
+
832,
|
449 |
+
833,
|
450 |
+
835,
|
451 |
+
837,
|
452 |
+
838,
|
453 |
+
840,
|
454 |
+
841,
|
455 |
+
842,
|
456 |
+
843,
|
457 |
+
845,
|
458 |
+
847,
|
459 |
+
849,
|
460 |
+
851,
|
461 |
+
853,
|
462 |
+
855,
|
463 |
+
856,
|
464 |
+
858,
|
465 |
+
860,
|
466 |
+
861,
|
467 |
+
863,
|
468 |
+
865,
|
469 |
+
866,
|
470 |
+
867,
|
471 |
+
869,
|
472 |
+
872,
|
473 |
+
874,
|
474 |
+
876,
|
475 |
+
168,
|
476 |
+
877,
|
477 |
+
879,
|
478 |
+
881,
|
479 |
+
883,
|
480 |
+
884,
|
481 |
+
887,
|
482 |
+
889,
|
483 |
+
893,
|
484 |
+
894,
|
485 |
+
896,
|
486 |
+
898,
|
487 |
+
900,
|
488 |
+
902,
|
489 |
+
904,
|
490 |
+
906,
|
491 |
+
908,
|
492 |
+
910,
|
493 |
+
911,
|
494 |
+
913,
|
495 |
+
915,
|
496 |
+
917,
|
497 |
+
919,
|
498 |
+
921,
|
499 |
+
923,
|
500 |
+
925,
|
501 |
+
926,
|
502 |
+
927,
|
503 |
+
929,
|
504 |
+
931,
|
505 |
+
933,
|
506 |
+
934,
|
507 |
+
936,
|
508 |
+
938,
|
509 |
+
939,
|
510 |
+
941,
|
511 |
+
942,
|
512 |
+
944,
|
513 |
+
946,
|
514 |
+
948,
|
515 |
+
949,
|
516 |
+
950,
|
517 |
+
952,
|
518 |
+
953,
|
519 |
+
955,
|
520 |
+
956,
|
521 |
+
958,
|
522 |
+
960,
|
523 |
+
962,
|
524 |
+
964,
|
525 |
+
966,
|
526 |
+
968,
|
527 |
+
970,
|
528 |
+
972,
|
529 |
+
975,
|
530 |
+
976,
|
531 |
+
978,
|
532 |
+
980,
|
533 |
+
982,
|
534 |
+
984,
|
535 |
+
986,
|
536 |
+
988,
|
537 |
+
989,
|
538 |
+
990,
|
539 |
+
993,
|
540 |
+
994,
|
541 |
+
995,
|
542 |
+
997,
|
543 |
+
998,
|
544 |
+
1000,
|
545 |
+
1001,
|
546 |
+
1003,
|
547 |
+
1004,
|
548 |
+
1006,
|
549 |
+
1009,
|
550 |
+
1010,
|
551 |
+
1012,
|
552 |
+
1014,
|
553 |
+
1016,
|
554 |
+
1018,
|
555 |
+
1019,
|
556 |
+
1021,
|
557 |
+
1022,
|
558 |
+
1024,
|
559 |
+
1026,
|
560 |
+
1027,
|
561 |
+
1030,
|
562 |
+
1032,
|
563 |
+
1034,
|
564 |
+
1036,
|
565 |
+
1038,
|
566 |
+
1040,
|
567 |
+
1042,
|
568 |
+
1044,
|
569 |
+
1045,
|
570 |
+
1046,
|
571 |
+
1048,
|
572 |
+
1049,
|
573 |
+
1050,
|
574 |
+
1052,
|
575 |
+
1053,
|
576 |
+
1055,
|
577 |
+
1057,
|
578 |
+
1059,
|
579 |
+
1061,
|
580 |
+
1063,
|
581 |
+
1065,
|
582 |
+
1067,
|
583 |
+
1069,
|
584 |
+
1070,
|
585 |
+
1072,
|
586 |
+
1073,
|
587 |
+
1075,
|
588 |
+
1077,
|
589 |
+
1078,
|
590 |
+
1081,
|
591 |
+
1083,
|
592 |
+
1084,
|
593 |
+
1087,
|
594 |
+
1089,
|
595 |
+
1091,
|
596 |
+
1092,
|
597 |
+
1094,
|
598 |
+
1096,
|
599 |
+
1098,
|
600 |
+
1099,
|
601 |
+
1101,
|
602 |
+
1103,
|
603 |
+
1106,
|
604 |
+
1107,
|
605 |
+
1109,
|
606 |
+
1111,
|
607 |
+
1113,
|
608 |
+
1114,
|
609 |
+
1115,
|
610 |
+
1118,
|
611 |
+
1120,
|
612 |
+
1122,
|
613 |
+
1124,
|
614 |
+
1125,
|
615 |
+
1127,
|
616 |
+
1129,
|
617 |
+
1131,
|
618 |
+
1133,
|
619 |
+
1135,
|
620 |
+
1137,
|
621 |
+
1139,
|
622 |
+
1140,
|
623 |
+
1141,
|
624 |
+
1142,
|
625 |
+
1144,
|
626 |
+
1146,
|
627 |
+
1148,
|
628 |
+
1150,
|
629 |
+
1152,
|
630 |
+
1154,
|
631 |
+
1156,
|
632 |
+
1157,
|
633 |
+
1159,
|
634 |
+
1160,
|
635 |
+
1162,
|
636 |
+
1164,
|
637 |
+
1166,
|
638 |
+
1168,
|
639 |
+
1169,
|
640 |
+
1170,
|
641 |
+
1172,
|
642 |
+
1173,
|
643 |
+
1175,
|
644 |
+
1177,
|
645 |
+
1178,
|
646 |
+
1179,
|
647 |
+
1181,
|
648 |
+
1183,
|
649 |
+
1185,
|
650 |
+
1187,
|
651 |
+
1188,
|
652 |
+
1190,
|
653 |
+
1192,
|
654 |
+
1194,
|
655 |
+
1196,
|
656 |
+
1197,
|
657 |
+
1198,
|
658 |
+
1199,
|
659 |
+
1200,
|
660 |
+
1201,
|
661 |
+
1203,
|
662 |
+
1204,
|
663 |
+
1206,
|
664 |
+
1208,
|
665 |
+
1209,
|
666 |
+
1210,
|
667 |
+
1211,
|
668 |
+
1213,
|
669 |
+
1214,
|
670 |
+
1216,
|
671 |
+
1218,
|
672 |
+
1220,
|
673 |
+
1221,
|
674 |
+
1223,
|
675 |
+
1224,
|
676 |
+
1227,
|
677 |
+
1228,
|
678 |
+
1230,
|
679 |
+
1232,
|
680 |
+
1234,
|
681 |
+
1236,
|
682 |
+
1241,
|
683 |
+
1242,
|
684 |
+
1245,
|
685 |
+
1248,
|
686 |
+
1250,
|
687 |
+
1251,
|
688 |
+
1253,
|
689 |
+
1255,
|
690 |
+
1257,
|
691 |
+
1258,
|
692 |
+
1259,
|
693 |
+
1261,
|
694 |
+
1263,
|
695 |
+
1265,
|
696 |
+
1267,
|
697 |
+
1269,
|
698 |
+
1272,
|
699 |
+
1274,
|
700 |
+
1275,
|
701 |
+
1276,
|
702 |
+
1278,
|
703 |
+
1279,
|
704 |
+
1280,
|
705 |
+
1282,
|
706 |
+
1283,
|
707 |
+
1285,
|
708 |
+
1286,
|
709 |
+
1288,
|
710 |
+
1290,
|
711 |
+
1291,
|
712 |
+
1293,
|
713 |
+
1294,
|
714 |
+
1296,
|
715 |
+
1298,
|
716 |
+
1300,
|
717 |
+
1302,
|
718 |
+
1304,
|
719 |
+
1306,
|
720 |
+
1308,
|
721 |
+
1310,
|
722 |
+
1312,
|
723 |
+
1313,
|
724 |
+
1315,
|
725 |
+
1316,
|
726 |
+
1318,
|
727 |
+
1320,
|
728 |
+
1322,
|
729 |
+
1324,
|
730 |
+
1326,
|
731 |
+
1328,
|
732 |
+
1330,
|
733 |
+
1331,
|
734 |
+
1333,
|
735 |
+
1335,
|
736 |
+
1336,
|
737 |
+
1337,
|
738 |
+
1339,
|
739 |
+
1341,
|
740 |
+
1342,
|
741 |
+
1344,
|
742 |
+
1345,
|
743 |
+
1347,
|
744 |
+
1348,
|
745 |
+
1349,
|
746 |
+
1351,
|
747 |
+
1354,
|
748 |
+
1356,
|
749 |
+
1357,
|
750 |
+
1359,
|
751 |
+
1360,
|
752 |
+
1362,
|
753 |
+
1364,
|
754 |
+
1366,
|
755 |
+
1368,
|
756 |
+
1370,
|
757 |
+
1372,
|
758 |
+
1373,
|
759 |
+
1374,
|
760 |
+
1377,
|
761 |
+
1379,
|
762 |
+
1381,
|
763 |
+
1383,
|
764 |
+
1385,
|
765 |
+
1387,
|
766 |
+
1389,
|
767 |
+
1391,
|
768 |
+
1393,
|
769 |
+
1395,
|
770 |
+
1396,
|
771 |
+
1397,
|
772 |
+
1399,
|
773 |
+
1402,
|
774 |
+
1404,
|
775 |
+
1405,
|
776 |
+
1407,
|
777 |
+
1409,
|
778 |
+
1410,
|
779 |
+
1412,
|
780 |
+
1413,
|
781 |
+
1415,
|
782 |
+
1416,
|
783 |
+
1419,
|
784 |
+
1422,
|
785 |
+
1424,
|
786 |
+
1426,
|
787 |
+
1427,
|
788 |
+
1429,
|
789 |
+
1431,
|
790 |
+
1432,
|
791 |
+
1436,
|
792 |
+
1437,
|
793 |
+
1439,
|
794 |
+
1440,
|
795 |
+
1441,
|
796 |
+
1443,
|
797 |
+
1445,
|
798 |
+
1447,
|
799 |
+
1448,
|
800 |
+
1449,
|
801 |
+
1450,
|
802 |
+
1452,
|
803 |
+
1454,
|
804 |
+
1456,
|
805 |
+
1458,
|
806 |
+
1460,
|
807 |
+
1461,
|
808 |
+
1463,
|
809 |
+
1465,
|
810 |
+
1467,
|
811 |
+
1469,
|
812 |
+
1471,
|
813 |
+
1472,
|
814 |
+
1474,
|
815 |
+
1477,
|
816 |
+
1478,
|
817 |
+
1479,
|
818 |
+
1481,
|
819 |
+
1483,
|
820 |
+
1485,
|
821 |
+
1487,
|
822 |
+
1489,
|
823 |
+
1490,
|
824 |
+
1491,
|
825 |
+
1494,
|
826 |
+
1496,
|
827 |
+
1497,
|
828 |
+
1499,
|
829 |
+
1500,
|
830 |
+
1501,
|
831 |
+
1503,
|
832 |
+
1504,
|
833 |
+
1506,
|
834 |
+
1508,
|
835 |
+
1509,
|
836 |
+
1511,
|
837 |
+
1512,
|
838 |
+
1513,
|
839 |
+
1514,
|
840 |
+
1515,
|
841 |
+
1517,
|
842 |
+
1520,
|
843 |
+
1521,
|
844 |
+
1329,
|
845 |
+
1523,
|
846 |
+
1525,
|
847 |
+
1527,
|
848 |
+
1529,
|
849 |
+
1531,
|
850 |
+
1533,
|
851 |
+
1535,
|
852 |
+
1536,
|
853 |
+
1538,
|
854 |
+
1540,
|
855 |
+
1542,
|
856 |
+
1544,
|
857 |
+
1545,
|
858 |
+
1547,
|
859 |
+
1549,
|
860 |
+
1550,
|
861 |
+
1552,
|
862 |
+
1554,
|
863 |
+
1556,
|
864 |
+
1559,
|
865 |
+
1561,
|
866 |
+
1563,
|
867 |
+
1565,
|
868 |
+
1566,
|
869 |
+
1568,
|
870 |
+
1570,
|
871 |
+
1572,
|
872 |
+
1573,
|
873 |
+
1574,
|
874 |
+
1576,
|
875 |
+
1578,
|
876 |
+
1580,
|
877 |
+
1582,
|
878 |
+
1584,
|
879 |
+
1585,
|
880 |
+
1587,
|
881 |
+
1589,
|
882 |
+
1591,
|
883 |
+
419,
|
884 |
+
1592,
|
885 |
+
1594,
|
886 |
+
1596,
|
887 |
+
1598,
|
888 |
+
1600,
|
889 |
+
1601,
|
890 |
+
1603,
|
891 |
+
1604,
|
892 |
+
1606,
|
893 |
+
1607,
|
894 |
+
1608,
|
895 |
+
1610,
|
896 |
+
1612,
|
897 |
+
1613,
|
898 |
+
1614,
|
899 |
+
1615,
|
900 |
+
1617,
|
901 |
+
1618,
|
902 |
+
1619,
|
903 |
+
1622,
|
904 |
+
1624,
|
905 |
+
1626,
|
906 |
+
1629,
|
907 |
+
1631,
|
908 |
+
1633,
|
909 |
+
1635,
|
910 |
+
1637,
|
911 |
+
1639,
|
912 |
+
1640,
|
913 |
+
1641,
|
914 |
+
1642,
|
915 |
+
1644,
|
916 |
+
1646,
|
917 |
+
1647,
|
918 |
+
1648,
|
919 |
+
1650,
|
920 |
+
1651,
|
921 |
+
1653,
|
922 |
+
1655,
|
923 |
+
1656,
|
924 |
+
1657,
|
925 |
+
1658,
|
926 |
+
1660,
|
927 |
+
1662,
|
928 |
+
1664,
|
929 |
+
1666,
|
930 |
+
1668,
|
931 |
+
1669,
|
932 |
+
1671,
|
933 |
+
1672,
|
934 |
+
1674,
|
935 |
+
1676,
|
936 |
+
1678,
|
937 |
+
1679,
|
938 |
+
1681,
|
939 |
+
1683,
|
940 |
+
1685,
|
941 |
+
1687,
|
942 |
+
1689,
|
943 |
+
1691,
|
944 |
+
1692,
|
945 |
+
1693,
|
946 |
+
1694,
|
947 |
+
1697,
|
948 |
+
1699,
|
949 |
+
1701,
|
950 |
+
1702,
|
951 |
+
1704,
|
952 |
+
1706,
|
953 |
+
1708,
|
954 |
+
1709,
|
955 |
+
1713,
|
956 |
+
1715,
|
957 |
+
1716,
|
958 |
+
1717,
|
959 |
+
1718,
|
960 |
+
1719,
|
961 |
+
1721,
|
962 |
+
1723,
|
963 |
+
1724,
|
964 |
+
1725,
|
965 |
+
1727,
|
966 |
+
1728,
|
967 |
+
1730,
|
968 |
+
1732,
|
969 |
+
1734,
|
970 |
+
1736,
|
971 |
+
1738,
|
972 |
+
1739,
|
973 |
+
1741,
|
974 |
+
1742,
|
975 |
+
1744,
|
976 |
+
1746,
|
977 |
+
1748,
|
978 |
+
1750,
|
979 |
+
1751,
|
980 |
+
1753,
|
981 |
+
1754,
|
982 |
+
1756,
|
983 |
+
1758,
|
984 |
+
1761,
|
985 |
+
1763,
|
986 |
+
1765,
|
987 |
+
1767,
|
988 |
+
1769,
|
989 |
+
1771,
|
990 |
+
1772,
|
991 |
+
1774,
|
992 |
+
1778,
|
993 |
+
1781,
|
994 |
+
1782,
|
995 |
+
1783,
|
996 |
+
1785,
|
997 |
+
1786,
|
998 |
+
1788,
|
999 |
+
1790,
|
1000 |
+
1791,
|
1001 |
+
1793,
|
1002 |
+
1795,
|
1003 |
+
1797,
|
1004 |
+
1800,
|
1005 |
+
1801,
|
1006 |
+
1803,
|
1007 |
+
1807,
|
1008 |
+
1809,
|
1009 |
+
1810,
|
1010 |
+
1812,
|
1011 |
+
1813,
|
1012 |
+
1814,
|
1013 |
+
1815,
|
1014 |
+
1817,
|
1015 |
+
1818,
|
1016 |
+
1820,
|
1017 |
+
1822,
|
1018 |
+
1825,
|
1019 |
+
1827,
|
1020 |
+
1829,
|
1021 |
+
1831,
|
1022 |
+
1833,
|
1023 |
+
1835,
|
1024 |
+
1836,
|
1025 |
+
1837,
|
1026 |
+
1838,
|
1027 |
+
1840,
|
1028 |
+
1841,
|
1029 |
+
1843,
|
1030 |
+
1844,
|
1031 |
+
1845,
|
1032 |
+
1847,
|
1033 |
+
1849,
|
1034 |
+
1851,
|
1035 |
+
1853,
|
1036 |
+
1854,
|
1037 |
+
1856,
|
1038 |
+
1858,
|
1039 |
+
1859,
|
1040 |
+
1861,
|
1041 |
+
1863,
|
1042 |
+
1865,
|
1043 |
+
1866,
|
1044 |
+
1868,
|
1045 |
+
1870,
|
1046 |
+
1871,
|
1047 |
+
1872,
|
1048 |
+
1874,
|
1049 |
+
1876,
|
1050 |
+
1877,
|
1051 |
+
1879,
|
1052 |
+
1880,
|
1053 |
+
1881,
|
1054 |
+
1883,
|
1055 |
+
1885,
|
1056 |
+
1888,
|
1057 |
+
1889,
|
1058 |
+
1890,
|
1059 |
+
1892,
|
1060 |
+
1894,
|
1061 |
+
1896,
|
1062 |
+
1897,
|
1063 |
+
1898,
|
1064 |
+
1900,
|
1065 |
+
1901,
|
1066 |
+
1903,
|
1067 |
+
1904,
|
1068 |
+
1906,
|
1069 |
+
1907,
|
1070 |
+
1909,
|
1071 |
+
1911,
|
1072 |
+
1914,
|
1073 |
+
1916,
|
1074 |
+
1917,
|
1075 |
+
1918,
|
1076 |
+
1919,
|
1077 |
+
1921,
|
1078 |
+
1922,
|
1079 |
+
1924,
|
1080 |
+
1927,
|
1081 |
+
1929,
|
1082 |
+
1932,
|
1083 |
+
1933,
|
1084 |
+
1934,
|
1085 |
+
1936,
|
1086 |
+
1937,
|
1087 |
+
1939,
|
1088 |
+
1942,
|
1089 |
+
1943,
|
1090 |
+
1945,
|
1091 |
+
1946,
|
1092 |
+
1948,
|
1093 |
+
1950,
|
1094 |
+
1951,
|
1095 |
+
1953,
|
1096 |
+
1955,
|
1097 |
+
1956,
|
1098 |
+
1958,
|
1099 |
+
1959,
|
1100 |
+
1961,
|
1101 |
+
1963,
|
1102 |
+
1965,
|
1103 |
+
1967,
|
1104 |
+
1968,
|
1105 |
+
1970,
|
1106 |
+
1971,
|
1107 |
+
1972,
|
1108 |
+
1973,
|
1109 |
+
1974,
|
1110 |
+
1976,
|
1111 |
+
1977,
|
1112 |
+
1979,
|
1113 |
+
1981,
|
1114 |
+
1983,
|
1115 |
+
1985,
|
1116 |
+
1988,
|
1117 |
+
1990,
|
1118 |
+
1992,
|
1119 |
+
1994,
|
1120 |
+
1995,
|
1121 |
+
1997,
|
1122 |
+
1999,
|
1123 |
+
2001,
|
1124 |
+
2002,
|
1125 |
+
2004,
|
1126 |
+
2008,
|
1127 |
+
2009,
|
1128 |
+
2012,
|
1129 |
+
2014,
|
1130 |
+
2015,
|
1131 |
+
2016,
|
1132 |
+
2018,
|
1133 |
+
2021,
|
1134 |
+
2022,
|
1135 |
+
2024,
|
1136 |
+
2026,
|
1137 |
+
2028,
|
1138 |
+
2030,
|
1139 |
+
2031,
|
1140 |
+
2032,
|
1141 |
+
2034,
|
1142 |
+
2035,
|
1143 |
+
2036,
|
1144 |
+
2038,
|
1145 |
+
2040,
|
1146 |
+
2041,
|
1147 |
+
2042,
|
1148 |
+
2043,
|
1149 |
+
2045,
|
1150 |
+
2047,
|
1151 |
+
2048,
|
1152 |
+
2050,
|
1153 |
+
2052,
|
1154 |
+
2054,
|
1155 |
+
2055,
|
1156 |
+
2057,
|
1157 |
+
2058,
|
1158 |
+
2060,
|
1159 |
+
2062,
|
1160 |
+
2064,
|
1161 |
+
2066,
|
1162 |
+
2067,
|
1163 |
+
2068,
|
1164 |
+
2070,
|
1165 |
+
2071,
|
1166 |
+
2073,
|
1167 |
+
2075,
|
1168 |
+
2076,
|
1169 |
+
2078,
|
1170 |
+
2080,
|
1171 |
+
2081,
|
1172 |
+
2083,
|
1173 |
+
2085,
|
1174 |
+
2087,
|
1175 |
+
2089,
|
1176 |
+
2091,
|
1177 |
+
2092,
|
1178 |
+
2093,
|
1179 |
+
2094,
|
1180 |
+
2095,
|
1181 |
+
2096,
|
1182 |
+
2097,
|
1183 |
+
2099,
|
1184 |
+
2101,
|
1185 |
+
2103,
|
1186 |
+
2105,
|
1187 |
+
2106,
|
1188 |
+
2108,
|
1189 |
+
2109,
|
1190 |
+
2110,
|
1191 |
+
2111,
|
1192 |
+
2113,
|
1193 |
+
2114,
|
1194 |
+
2115,
|
1195 |
+
2116,
|
1196 |
+
2118,
|
1197 |
+
2119,
|
1198 |
+
2121,
|
1199 |
+
2123,
|
1200 |
+
2125,
|
1201 |
+
2127,
|
1202 |
+
2128,
|
1203 |
+
2130,
|
1204 |
+
2131,
|
1205 |
+
2132,
|
1206 |
+
2134,
|
1207 |
+
2135,
|
1208 |
+
1376,
|
1209 |
+
2136,
|
1210 |
+
2138,
|
1211 |
+
2140,
|
1212 |
+
2142,
|
1213 |
+
2144,
|
1214 |
+
2146,
|
1215 |
+
2147,
|
1216 |
+
2148,
|
1217 |
+
2150,
|
1218 |
+
2151,
|
1219 |
+
2152,
|
1220 |
+
2153,
|
1221 |
+
2155,
|
1222 |
+
2156,
|
1223 |
+
2158,
|
1224 |
+
2160,
|
1225 |
+
2161,
|
1226 |
+
2162,
|
1227 |
+
2164,
|
1228 |
+
2166,
|
1229 |
+
2168,
|
1230 |
+
2170,
|
1231 |
+
2171,
|
1232 |
+
2173,
|
1233 |
+
2174,
|
1234 |
+
2175,
|
1235 |
+
2176,
|
1236 |
+
2178,
|
1237 |
+
2180,
|
1238 |
+
2182,
|
1239 |
+
2184,
|
1240 |
+
2186,
|
1241 |
+
2188,
|
1242 |
+
2190,
|
1243 |
+
2191,
|
1244 |
+
2193,
|
1245 |
+
2194,
|
1246 |
+
2196,
|
1247 |
+
2197,
|
1248 |
+
2199,
|
1249 |
+
2200,
|
1250 |
+
2202,
|
1251 |
+
2203,
|
1252 |
+
2204,
|
1253 |
+
2205,
|
1254 |
+
2207,
|
1255 |
+
2209,
|
1256 |
+
2211,
|
1257 |
+
2213,
|
1258 |
+
2214,
|
1259 |
+
2215,
|
1260 |
+
2217,
|
1261 |
+
2219,
|
1262 |
+
2221,
|
1263 |
+
2223,
|
1264 |
+
2224,
|
1265 |
+
2225,
|
1266 |
+
2227,
|
1267 |
+
2228,
|
1268 |
+
2229,
|
1269 |
+
2231,
|
1270 |
+
2232,
|
1271 |
+
2234,
|
1272 |
+
2236,
|
1273 |
+
2239,
|
1274 |
+
2240,
|
1275 |
+
2242,
|
1276 |
+
2243,
|
1277 |
+
2244,
|
1278 |
+
2245,
|
1279 |
+
2247,
|
1280 |
+
2248,
|
1281 |
+
2249,
|
1282 |
+
2251,
|
1283 |
+
2253,
|
1284 |
+
2256,
|
1285 |
+
2258,
|
1286 |
+
2259,
|
1287 |
+
2260,
|
1288 |
+
2261,
|
1289 |
+
2263,
|
1290 |
+
2265,
|
1291 |
+
2267,
|
1292 |
+
2268,
|
1293 |
+
2271,
|
1294 |
+
2273,
|
1295 |
+
2275,
|
1296 |
+
2276,
|
1297 |
+
2277,
|
1298 |
+
2278,
|
1299 |
+
2279,
|
1300 |
+
2282,
|
1301 |
+
2283,
|
1302 |
+
2284,
|
1303 |
+
2285,
|
1304 |
+
2286,
|
1305 |
+
2288,
|
1306 |
+
2290,
|
1307 |
+
2294,
|
1308 |
+
2295,
|
1309 |
+
2296,
|
1310 |
+
2298,
|
1311 |
+
2299,
|
1312 |
+
2301,
|
1313 |
+
2303,
|
1314 |
+
2304,
|
1315 |
+
2306,
|
1316 |
+
2308,
|
1317 |
+
2310,
|
1318 |
+
2311,
|
1319 |
+
2312,
|
1320 |
+
2314,
|
1321 |
+
2315,
|
1322 |
+
2316,
|
1323 |
+
2317,
|
1324 |
+
2318,
|
1325 |
+
2320,
|
1326 |
+
2322,
|
1327 |
+
2324,
|
1328 |
+
2326,
|
1329 |
+
2327,
|
1330 |
+
2328,
|
1331 |
+
2329,
|
1332 |
+
2331,
|
1333 |
+
2332,
|
1334 |
+
2334,
|
1335 |
+
2336,
|
1336 |
+
2338,
|
1337 |
+
2340,
|
1338 |
+
2342,
|
1339 |
+
2343,
|
1340 |
+
2345,
|
1341 |
+
2347,
|
1342 |
+
2349,
|
1343 |
+
2351,
|
1344 |
+
2355,
|
1345 |
+
2356,
|
1346 |
+
2358,
|
1347 |
+
2360,
|
1348 |
+
2361,
|
1349 |
+
2363,
|
1350 |
+
2364,
|
1351 |
+
2365,
|
1352 |
+
2367,
|
1353 |
+
2369,
|
1354 |
+
2371,
|
1355 |
+
2374,
|
1356 |
+
2376,
|
1357 |
+
2377,
|
1358 |
+
2378,
|
1359 |
+
2379,
|
1360 |
+
2382,
|
1361 |
+
2385,
|
1362 |
+
2387,
|
1363 |
+
2389,
|
1364 |
+
2391,
|
1365 |
+
2393,
|
1366 |
+
2394,
|
1367 |
+
2395,
|
1368 |
+
2397,
|
1369 |
+
2399,
|
1370 |
+
2401,
|
1371 |
+
2402,
|
1372 |
+
2403,
|
1373 |
+
2404,
|
1374 |
+
2405,
|
1375 |
+
2406,
|
1376 |
+
2407,
|
1377 |
+
2408,
|
1378 |
+
2409,
|
1379 |
+
2410,
|
1380 |
+
2411,
|
1381 |
+
2413,
|
1382 |
+
2415,
|
1383 |
+
2417,
|
1384 |
+
2419,
|
1385 |
+
2421,
|
1386 |
+
2422,
|
1387 |
+
2424,
|
1388 |
+
2425,
|
1389 |
+
2427,
|
1390 |
+
2428,
|
1391 |
+
2429,
|
1392 |
+
2430,
|
1393 |
+
2432,
|
1394 |
+
2433,
|
1395 |
+
2434,
|
1396 |
+
2436,
|
1397 |
+
2437,
|
1398 |
+
2439,
|
1399 |
+
2440,
|
1400 |
+
2441,
|
1401 |
+
2443,
|
1402 |
+
2444,
|
1403 |
+
2446,
|
1404 |
+
2448,
|
1405 |
+
2449,
|
1406 |
+
2451,
|
1407 |
+
2453,
|
1408 |
+
2455,
|
1409 |
+
2456,
|
1410 |
+
2458,
|
1411 |
+
2459,
|
1412 |
+
2460,
|
1413 |
+
2462,
|
1414 |
+
2463,
|
1415 |
+
2464,
|
1416 |
+
2467,
|
1417 |
+
2470,
|
1418 |
+
2471,
|
1419 |
+
2473,
|
1420 |
+
2475,
|
1421 |
+
2476,
|
1422 |
+
2477,
|
1423 |
+
2479,
|
1424 |
+
2481,
|
1425 |
+
2483,
|
1426 |
+
2485,
|
1427 |
+
2487,
|
1428 |
+
2489,
|
1429 |
+
2490,
|
1430 |
+
2491,
|
1431 |
+
2493,
|
1432 |
+
2494,
|
1433 |
+
2496,
|
1434 |
+
2497,
|
1435 |
+
2498,
|
1436 |
+
2499,
|
1437 |
+
2502,
|
1438 |
+
2503,
|
1439 |
+
2505,
|
1440 |
+
2507,
|
1441 |
+
2509,
|
1442 |
+
2511,
|
1443 |
+
2513,
|
1444 |
+
2514,
|
1445 |
+
2516,
|
1446 |
+
2518,
|
1447 |
+
2519,
|
1448 |
+
126,
|
1449 |
+
2520,
|
1450 |
+
2522,
|
1451 |
+
2525,
|
1452 |
+
2527,
|
1453 |
+
2529,
|
1454 |
+
2531,
|
1455 |
+
2532,
|
1456 |
+
2533,
|
1457 |
+
2534,
|
1458 |
+
2536,
|
1459 |
+
2538,
|
1460 |
+
2540,
|
1461 |
+
2541,
|
1462 |
+
2542,
|
1463 |
+
2543,
|
1464 |
+
2544,
|
1465 |
+
2546,
|
1466 |
+
2548,
|
1467 |
+
2549,
|
1468 |
+
2551,
|
1469 |
+
2553,
|
1470 |
+
2555,
|
1471 |
+
2556,
|
1472 |
+
2557,
|
1473 |
+
2558,
|
1474 |
+
2560,
|
1475 |
+
2562,
|
1476 |
+
2564,
|
1477 |
+
2565,
|
1478 |
+
2566,
|
1479 |
+
2568,
|
1480 |
+
2570,
|
1481 |
+
2572,
|
1482 |
+
2574,
|
1483 |
+
2575,
|
1484 |
+
2576,
|
1485 |
+
2578,
|
1486 |
+
2579,
|
1487 |
+
2580,
|
1488 |
+
2582,
|
1489 |
+
2584,
|
1490 |
+
2586,
|
1491 |
+
2587,
|
1492 |
+
2589,
|
1493 |
+
2591,
|
1494 |
+
2593,
|
1495 |
+
2594,
|
1496 |
+
2596,
|
1497 |
+
2599,
|
1498 |
+
2601,
|
1499 |
+
2602,
|
1500 |
+
2603,
|
1501 |
+
2604,
|
1502 |
+
2606,
|
1503 |
+
2608,
|
1504 |
+
2610,
|
1505 |
+
2611,
|
1506 |
+
2613,
|
1507 |
+
2615,
|
1508 |
+
2617,
|
1509 |
+
2620,
|
1510 |
+
2622,
|
1511 |
+
2624,
|
1512 |
+
2626,
|
1513 |
+
2628,
|
1514 |
+
2629,
|
1515 |
+
2631,
|
1516 |
+
2633,
|
1517 |
+
2634,
|
1518 |
+
2637,
|
1519 |
+
2639,
|
1520 |
+
2641,
|
1521 |
+
2642,
|
1522 |
+
2644,
|
1523 |
+
2646,
|
1524 |
+
282,
|
1525 |
+
2648,
|
1526 |
+
2650,
|
1527 |
+
2652,
|
1528 |
+
2653,
|
1529 |
+
2655,
|
1530 |
+
2656,
|
1531 |
+
2658,
|
1532 |
+
2660,
|
1533 |
+
2663,
|
1534 |
+
2664,
|
1535 |
+
2665,
|
1536 |
+
2666,
|
1537 |
+
2667,
|
1538 |
+
2668,
|
1539 |
+
2669,
|
1540 |
+
2670,
|
1541 |
+
2672,
|
1542 |
+
2673,
|
1543 |
+
2675,
|
1544 |
+
2677,
|
1545 |
+
2679,
|
1546 |
+
2681,
|
1547 |
+
2682,
|
1548 |
+
2684,
|
1549 |
+
2687,
|
1550 |
+
2689,
|
1551 |
+
2690,
|
1552 |
+
2692,
|
1553 |
+
2693,
|
1554 |
+
2694,
|
1555 |
+
2695,
|
1556 |
+
2697,
|
1557 |
+
2698,
|
1558 |
+
2699,
|
1559 |
+
2701,
|
1560 |
+
2703,
|
1561 |
+
2704,
|
1562 |
+
2705,
|
1563 |
+
2706,
|
1564 |
+
2708,
|
1565 |
+
2709,
|
1566 |
+
2710,
|
1567 |
+
2711,
|
1568 |
+
2713,
|
1569 |
+
2715,
|
1570 |
+
2716,
|
1571 |
+
2718,
|
1572 |
+
2720,
|
1573 |
+
2721,
|
1574 |
+
2722,
|
1575 |
+
2723,
|
1576 |
+
2725,
|
1577 |
+
2727,
|
1578 |
+
2728,
|
1579 |
+
2729,
|
1580 |
+
2730,
|
1581 |
+
2731,
|
1582 |
+
2732,
|
1583 |
+
2734,
|
1584 |
+
2737,
|
1585 |
+
2739,
|
1586 |
+
2740,
|
1587 |
+
2742,
|
1588 |
+
2744,
|
1589 |
+
2746,
|
1590 |
+
2747,
|
1591 |
+
2749,
|
1592 |
+
2751,
|
1593 |
+
2753,
|
1594 |
+
2754,
|
1595 |
+
2755,
|
1596 |
+
2757,
|
1597 |
+
2759,
|
1598 |
+
2762,
|
1599 |
+
2764,
|
1600 |
+
2766,
|
1601 |
+
2768,
|
1602 |
+
2769,
|
1603 |
+
2771,
|
1604 |
+
2772,
|
1605 |
+
2773,
|
1606 |
+
2775,
|
1607 |
+
2777,
|
1608 |
+
2779,
|
1609 |
+
2781,
|
1610 |
+
2783,
|
1611 |
+
2784,
|
1612 |
+
2785,
|
1613 |
+
2787,
|
1614 |
+
2789,
|
1615 |
+
2791,
|
1616 |
+
2792,
|
1617 |
+
2794,
|
1618 |
+
2795,
|
1619 |
+
2797,
|
1620 |
+
2799,
|
1621 |
+
2800,
|
1622 |
+
2802,
|
1623 |
+
2803,
|
1624 |
+
2804,
|
1625 |
+
2805,
|
1626 |
+
2807,
|
1627 |
+
2808,
|
1628 |
+
2810,
|
1629 |
+
2812,
|
1630 |
+
2813,
|
1631 |
+
2814,
|
1632 |
+
2816,
|
1633 |
+
2818,
|
1634 |
+
2820,
|
1635 |
+
50,
|
1636 |
+
2822,
|
1637 |
+
2823
|
1638 |
+
]
|
1639 |
+
}
|
trainable_lemmatizer/model
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5a466a9b1ab4c8a722b84e5ad0e8b9588d40ce6a95e572a883f2aa4a0d6bbd5c
|
3 |
+
size 1681230
|
trainable_lemmatizer/trees
ADDED
Binary file (836 kB). View file
|
|
vocab/key2row
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
�
|
vocab/lookups.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:76be8b528d0075f7aae98d6fa57a6d3c83ae480a8469e668d7b0af968995ac71
|
3 |
+
size 1
|
vocab/strings.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
vocab/vectors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cb638720c6bfefc5f527af7ad731e02d638dda1eeb1b510943e4a830df7d6950
|
3 |
+
size 160000128
|
vocab/vectors.cfg
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"mode":"floret",
|
3 |
+
"minn":3,
|
4 |
+
"maxn":5,
|
5 |
+
"hash_count":2,
|
6 |
+
"hash_seed":2166136261,
|
7 |
+
"bow":"<",
|
8 |
+
"eow":">",
|
9 |
+
"attr":65
|
10 |
+
}
|