Upload folder using huggingface_hub
Browse files- README.md +23 -0
- config.json +124 -0
- log/train/events.out.tfevents.1719677914.aslin +3 -0
- log/train/events.out.tfevents.1719786736.aslin +3 -0
- log/validation/events.out.tfevents.1719677914.aslin +3 -0
- log/validation/events.out.tfevents.1719786736.aslin +3 -0
- meta.json +1 -0
- metrics.json +48 -0
- metrics_epoch_0.json +48 -0
- metrics_epoch_1.json +48 -0
- metrics_epoch_2.json +48 -0
- metrics_epoch_3.json +48 -0
- metrics_epoch_4.json +48 -0
- metrics_epoch_5.json +48 -0
- metrics_epoch_6.json +48 -0
- metrics_epoch_7.json +48 -0
- metrics_epoch_8.json +48 -0
- metrics_epoch_9.json +48 -0
- model.tar.gz +3 -0
- out.log +0 -0
- vocabulary/.lock +0 -0
- vocabulary/deprel_labels.txt +46 -0
- vocabulary/deps_labels.txt +248 -0
- vocabulary/lemma_rule_labels.txt +450 -0
- vocabulary/misc_labels.txt +22 -0
- vocabulary/non_padded_namespaces.txt +2 -0
- vocabulary/pos_feats_labels.txt +859 -0
- vocabulary/semclass_labels.txt +576 -0
- vocabulary/semslot_labels.txt +134 -0
README.md
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- ru
|
4 |
+
library_name: allennlp
|
5 |
+
pipeline_tag: token-classification
|
6 |
+
---
|
7 |
+
|
8 |
+
# XLM-RoBERTa Base CoBaLD parser
|
9 |
+
|
10 |
+
This version of parser is based on XLM-R Base encoder. The encoder weights were initialized from `xlm-roberta-base` model.
|
11 |
+
|
12 |
+
## Usage
|
13 |
+
|
14 |
+
1. Clone https://github.com/CobaldAnnotation/CobaldParser, go to the repo directory and install requirements.
|
15 |
+
2. Download the `model.tag.gz` file. You can do it manually of via:
|
16 |
+
```
|
17 |
+
git clone https://huggingface.co/CoBaLD/xlm-roberta-base-cobald-parser-ru
|
18 |
+
```
|
19 |
+
3. Run `predict.sh` script to inference the model against an input conllu file you want to annotate with CoBaLD:
|
20 |
+
```
|
21 |
+
./predict.sh PATH_TO_MODEL.tar.gz INPUT.conllu OUTPUT.conllu
|
22 |
+
```
|
23 |
+
4. Now see the results in OUTPUT.conllu.
|
config.json
ADDED
@@ -0,0 +1,124 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"dataset_reader": {
|
3 |
+
"type": "compreno_ud_dataset_reader",
|
4 |
+
"token_indexers": {
|
5 |
+
"tokens": {
|
6 |
+
"type": "pretrained_transformer_mismatched",
|
7 |
+
"model_name": "xlm-roberta-base"
|
8 |
+
}
|
9 |
+
}
|
10 |
+
},
|
11 |
+
"model": {
|
12 |
+
"type": "morpho_syntax_semantic_parser",
|
13 |
+
"depencency_classifier": {
|
14 |
+
"activation": "relu",
|
15 |
+
"dropout": 0.1,
|
16 |
+
"hid_dim": 128
|
17 |
+
},
|
18 |
+
"embedder": {
|
19 |
+
"type": "pretrained_transformer_mismatched",
|
20 |
+
"model_name": "xlm-roberta-base",
|
21 |
+
"train_parameters": true
|
22 |
+
},
|
23 |
+
"indexer": {
|
24 |
+
"type": "pretrained_transformer_mismatched",
|
25 |
+
"model_name": "xlm-roberta-base"
|
26 |
+
},
|
27 |
+
"lemma_rule_classifier": {
|
28 |
+
"activation": "relu",
|
29 |
+
"dropout": 0.1,
|
30 |
+
"hid_dim": 512
|
31 |
+
},
|
32 |
+
"misc_classifier": {
|
33 |
+
"activation": "relu",
|
34 |
+
"dropout": 0.1,
|
35 |
+
"hid_dim": 128
|
36 |
+
},
|
37 |
+
"null_classifier": {
|
38 |
+
"activation": "relu",
|
39 |
+
"dropout": 0.1,
|
40 |
+
"hid_dim": 512
|
41 |
+
},
|
42 |
+
"pos_feats_classifier": {
|
43 |
+
"activation": "relu",
|
44 |
+
"dropout": 0.1,
|
45 |
+
"hid_dim": 256
|
46 |
+
},
|
47 |
+
"semclass_classifier": {
|
48 |
+
"activation": "relu",
|
49 |
+
"dropout": 0.1,
|
50 |
+
"hid_dim": 1024
|
51 |
+
},
|
52 |
+
"semslot_classifier": {
|
53 |
+
"activation": "relu",
|
54 |
+
"dropout": 0.1,
|
55 |
+
"hid_dim": 1024
|
56 |
+
}
|
57 |
+
},
|
58 |
+
"train_data_path": "data/train.conllu",
|
59 |
+
"validation_data_path": "data/validation.conllu",
|
60 |
+
"trainer": {
|
61 |
+
"type": "gradient_descent",
|
62 |
+
"callbacks": [
|
63 |
+
{
|
64 |
+
"should_log_learning_rate": true,
|
65 |
+
"should_log_parameter_statistics": false,
|
66 |
+
"type": "tensorboard"
|
67 |
+
}
|
68 |
+
],
|
69 |
+
"cuda_device": 0,
|
70 |
+
"grad_clipping": 5,
|
71 |
+
"learning_rate_scheduler": {
|
72 |
+
"type": "slanted_triangular",
|
73 |
+
"cut_frac": 0,
|
74 |
+
"decay_factor": 0.001,
|
75 |
+
"discriminative_fine_tuning": true,
|
76 |
+
"gradual_unfreezing": true,
|
77 |
+
"ratio": 32
|
78 |
+
},
|
79 |
+
"num_epochs": 10,
|
80 |
+
"optimizer": {
|
81 |
+
"type": "adam",
|
82 |
+
"lr": 0.01,
|
83 |
+
"parameter_groups": [
|
84 |
+
[
|
85 |
+
[
|
86 |
+
"embedder"
|
87 |
+
],
|
88 |
+
{}
|
89 |
+
],
|
90 |
+
[
|
91 |
+
[
|
92 |
+
"lemma_rule_classifier",
|
93 |
+
"pos_feats_classifier",
|
94 |
+
"dependency_classifier",
|
95 |
+
"misc_classifier",
|
96 |
+
"semslot_classifier",
|
97 |
+
"semclass_classifier",
|
98 |
+
"null_classifier"
|
99 |
+
],
|
100 |
+
{}
|
101 |
+
]
|
102 |
+
]
|
103 |
+
},
|
104 |
+
"validation_metric": "+Avg"
|
105 |
+
},
|
106 |
+
"vocabulary": {
|
107 |
+
"min_count": {
|
108 |
+
"lemma_rule_labels": 2
|
109 |
+
},
|
110 |
+
"tokens_to_add": {
|
111 |
+
"lemma_rule_labels": [
|
112 |
+
"@@UNKNOWN@@"
|
113 |
+
]
|
114 |
+
}
|
115 |
+
},
|
116 |
+
"data_loader": {
|
117 |
+
"batch_size": 24,
|
118 |
+
"shuffle": true
|
119 |
+
},
|
120 |
+
"validation_data_loader": {
|
121 |
+
"batch_size": 24,
|
122 |
+
"shuffle": false
|
123 |
+
}
|
124 |
+
}
|
log/train/events.out.tfevents.1719677914.aslin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:01aaad4315e7c217f3f32bfbd30c67593ae24fe22c87bc8c7a84849902b17f32
|
3 |
+
size 3669389
|
log/train/events.out.tfevents.1719786736.aslin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4aa72f9841643083a8a2b38618b66082b9ca420560a09a4f8066202f4c7799e4
|
3 |
+
size 3669389
|
log/validation/events.out.tfevents.1719677914.aslin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2ec44c4c72c77b80abd55aea228023c64b2837c873a6a3aa4fc9c185ae507d49
|
3 |
+
size 7130
|
log/validation/events.out.tfevents.1719786736.aslin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:595cdbdbc260f109431edd4dbac13dac366bbd1453513ad567671611f4fe9aed
|
3 |
+
size 7130
|
meta.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"version": "2.10.1"}
|
metrics.json
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_epoch": 9,
|
3 |
+
"peak_worker_0_memory_MB": 5027.1953125,
|
4 |
+
"peak_gpu_0_memory_MB": 9519.13818359375,
|
5 |
+
"training_duration": "0:26:03.535227",
|
6 |
+
"epoch": 9,
|
7 |
+
"training_NullAccuracy": 0.9957235531706647,
|
8 |
+
"training_NullF1": 0.8256801962852478,
|
9 |
+
"training_Lemma": 0.9835520888448912,
|
10 |
+
"training_PosFeats": 0.9810301599142935,
|
11 |
+
"training_UD-UAS": 0.9254102606250432,
|
12 |
+
"training_UD-LAS": 0.9319205584029282,
|
13 |
+
"training_EUD-UAS": 0.8187803610763775,
|
14 |
+
"training_EUD-LAS": 0.8208646692034237,
|
15 |
+
"training_Misc": 0.9972908241391496,
|
16 |
+
"training_SS": 0.9338719900383099,
|
17 |
+
"training_SC": 0.9425099420584128,
|
18 |
+
"training_Avg": 0.9261367615892033,
|
19 |
+
"training_loss": 0.9827121988315632,
|
20 |
+
"training_worker_0_memory_MB": 5027.1953125,
|
21 |
+
"training_gpu_0_memory_MB": 9519.08251953125,
|
22 |
+
"validation_NullAccuracy": 0.9959020954963523,
|
23 |
+
"validation_NullF1": 0.8384523391723633,
|
24 |
+
"validation_Lemma": 0.985611901991278,
|
25 |
+
"validation_PosFeats": 0.9784465665627043,
|
26 |
+
"validation_UD-UAS": 0.9493275025730825,
|
27 |
+
"validation_UD-LAS": 0.957065463503782,
|
28 |
+
"validation_EUD-UAS": 0.8827050763621938,
|
29 |
+
"validation_EUD-LAS": 0.8889461539814618,
|
30 |
+
"validation_Misc": 0.9971597912178601,
|
31 |
+
"validation_SS": 0.9289733449085238,
|
32 |
+
"validation_SC": 0.93875866799567,
|
33 |
+
"validation_Avg": 0.9452216076773952,
|
34 |
+
"validation_loss": 1.1547149845532008,
|
35 |
+
"best_validation_NullAccuracy": 0.9959020954963523,
|
36 |
+
"best_validation_NullF1": 0.8384523391723633,
|
37 |
+
"best_validation_Lemma": 0.985611901991278,
|
38 |
+
"best_validation_PosFeats": 0.9784465665627043,
|
39 |
+
"best_validation_UD-UAS": 0.9493275025730825,
|
40 |
+
"best_validation_UD-LAS": 0.957065463503782,
|
41 |
+
"best_validation_EUD-UAS": 0.8827050763621938,
|
42 |
+
"best_validation_EUD-LAS": 0.8889461539814618,
|
43 |
+
"best_validation_Misc": 0.9971597912178601,
|
44 |
+
"best_validation_SS": 0.9289733449085238,
|
45 |
+
"best_validation_SC": 0.93875866799567,
|
46 |
+
"best_validation_Avg": 0.9452216076773952,
|
47 |
+
"best_validation_loss": 1.1547149845532008
|
48 |
+
}
|
metrics_epoch_0.json
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_epoch": 0,
|
3 |
+
"peak_worker_0_memory_MB": 4585.2890625,
|
4 |
+
"peak_gpu_0_memory_MB": 1096.93115234375,
|
5 |
+
"training_duration": "0:01:24.718779",
|
6 |
+
"epoch": 0,
|
7 |
+
"training_NullAccuracy": 0.9873790736387787,
|
8 |
+
"training_NullF1": 0.2374880462884903,
|
9 |
+
"training_Lemma": 0.8490672310501971,
|
10 |
+
"training_PosFeats": 0.8302053476775688,
|
11 |
+
"training_UD-UAS": 0.5993270914192718,
|
12 |
+
"training_UD-LAS": 0.5919466104833434,
|
13 |
+
"training_EUD-UAS": 0.29752213637529773,
|
14 |
+
"training_EUD-LAS": 0.2792208718234781,
|
15 |
+
"training_Misc": 0.9304532681186652,
|
16 |
+
"training_SS": 0.7535631552082924,
|
17 |
+
"training_SC": 0.7825928439615667,
|
18 |
+
"training_Avg": 0.6570998395686313,
|
19 |
+
"training_loss": 6.28460033748497,
|
20 |
+
"training_worker_0_memory_MB": 4585.2890625,
|
21 |
+
"training_gpu_0_memory_MB": 1096.93115234375,
|
22 |
+
"validation_NullAccuracy": 0.9896388784895428,
|
23 |
+
"validation_NullF1": 0.39408284425735474,
|
24 |
+
"validation_Lemma": 0.9336494437254624,
|
25 |
+
"validation_PosFeats": 0.9295628222029302,
|
26 |
+
"validation_UD-UAS": 0.7722027150840535,
|
27 |
+
"validation_UD-LAS": 0.772901084000616,
|
28 |
+
"validation_EUD-UAS": 0.42361915743857215,
|
29 |
+
"validation_EUD-LAS": 0.40977633929070656,
|
30 |
+
"validation_Misc": 0.9609122964963613,
|
31 |
+
"validation_SS": 0.8172941920409847,
|
32 |
+
"validation_SC": 0.8810113286818216,
|
33 |
+
"validation_Avg": 0.7667699309957231,
|
34 |
+
"validation_loss": 3.283145405274235,
|
35 |
+
"best_validation_NullAccuracy": 0.9896388784895428,
|
36 |
+
"best_validation_NullF1": 0.39408284425735474,
|
37 |
+
"best_validation_Lemma": 0.9336494437254624,
|
38 |
+
"best_validation_PosFeats": 0.9295628222029302,
|
39 |
+
"best_validation_UD-UAS": 0.7722027150840535,
|
40 |
+
"best_validation_UD-LAS": 0.772901084000616,
|
41 |
+
"best_validation_EUD-UAS": 0.42361915743857215,
|
42 |
+
"best_validation_EUD-LAS": 0.40977633929070656,
|
43 |
+
"best_validation_Misc": 0.9609122964963613,
|
44 |
+
"best_validation_SS": 0.8172941920409847,
|
45 |
+
"best_validation_SC": 0.8810113286818216,
|
46 |
+
"best_validation_Avg": 0.7667699309957231,
|
47 |
+
"best_validation_loss": 3.283145405274235
|
48 |
+
}
|
metrics_epoch_1.json
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_epoch": 1,
|
3 |
+
"peak_worker_0_memory_MB": 4998.8828125,
|
4 |
+
"peak_gpu_0_memory_MB": 3067.13720703125,
|
5 |
+
"training_duration": "0:04:07.017649",
|
6 |
+
"epoch": 1,
|
7 |
+
"training_NullAccuracy": 0.9906345550622209,
|
8 |
+
"training_NullF1": 0.5201405882835388,
|
9 |
+
"training_Lemma": 0.922855257243965,
|
10 |
+
"training_PosFeats": 0.9248610355446116,
|
11 |
+
"training_UD-UAS": 0.7775177594769885,
|
12 |
+
"training_UD-LAS": 0.7783932377346194,
|
13 |
+
"training_EUD-UAS": 0.5407003067294542,
|
14 |
+
"training_EUD-LAS": 0.532447573439183,
|
15 |
+
"training_Misc": 0.9852621954981686,
|
16 |
+
"training_SS": 0.831380445695888,
|
17 |
+
"training_SC": 0.8508551011593927,
|
18 |
+
"training_Avg": 0.7938081013913636,
|
19 |
+
"training_loss": 3.3577215597748027,
|
20 |
+
"training_worker_0_memory_MB": 4998.8828125,
|
21 |
+
"training_gpu_0_memory_MB": 3067.13720703125,
|
22 |
+
"validation_NullAccuracy": 0.993665955014115,
|
23 |
+
"validation_NullF1": 0.7324786186218262,
|
24 |
+
"validation_Lemma": 0.961261976487477,
|
25 |
+
"validation_PosFeats": 0.9590795579992069,
|
26 |
+
"validation_UD-UAS": 0.8888406227280219,
|
27 |
+
"validation_UD-LAS": 0.8954056381233886,
|
28 |
+
"validation_EUD-UAS": 0.6955854363294899,
|
29 |
+
"validation_EUD-LAS": 0.6867310944168318,
|
30 |
+
"validation_Misc": 0.9941909692078497,
|
31 |
+
"validation_SS": 0.8734231482374629,
|
32 |
+
"validation_SC": 0.8990493338906573,
|
33 |
+
"validation_Avg": 0.8726186419355985,
|
34 |
+
"validation_loss": 2.004650010464499,
|
35 |
+
"best_validation_NullAccuracy": 0.993665955014115,
|
36 |
+
"best_validation_NullF1": 0.7324786186218262,
|
37 |
+
"best_validation_Lemma": 0.961261976487477,
|
38 |
+
"best_validation_PosFeats": 0.9590795579992069,
|
39 |
+
"best_validation_UD-UAS": 0.8888406227280219,
|
40 |
+
"best_validation_UD-LAS": 0.8954056381233886,
|
41 |
+
"best_validation_EUD-UAS": 0.6955854363294899,
|
42 |
+
"best_validation_EUD-LAS": 0.6867310944168318,
|
43 |
+
"best_validation_Misc": 0.9941909692078497,
|
44 |
+
"best_validation_SS": 0.8734231482374629,
|
45 |
+
"best_validation_SC": 0.8990493338906573,
|
46 |
+
"best_validation_Avg": 0.8726186419355985,
|
47 |
+
"best_validation_loss": 2.004650010464499
|
48 |
+
}
|
metrics_epoch_2.json
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_epoch": 2,
|
3 |
+
"peak_worker_0_memory_MB": 5007.5703125,
|
4 |
+
"peak_gpu_0_memory_MB": 9519.072265625,
|
5 |
+
"training_duration": "0:06:49.858678",
|
6 |
+
"epoch": 2,
|
7 |
+
"training_NullAccuracy": 0.9928769855402807,
|
8 |
+
"training_NullF1": 0.6822034120559692,
|
9 |
+
"training_Lemma": 0.9486280132220496,
|
10 |
+
"training_PosFeats": 0.9504551751989814,
|
11 |
+
"training_UD-UAS": 0.844616201388006,
|
12 |
+
"training_UD-LAS": 0.8488503687740565,
|
13 |
+
"training_EUD-UAS": 0.6572098883418599,
|
14 |
+
"training_EUD-LAS": 0.6537832058878454,
|
15 |
+
"training_Misc": 0.9927138313804457,
|
16 |
+
"training_SS": 0.8717825030990055,
|
17 |
+
"training_SC": 0.8810767151102461,
|
18 |
+
"training_Avg": 0.8499017669336105,
|
19 |
+
"training_loss": 2.3761901062472344,
|
20 |
+
"training_worker_0_memory_MB": 5007.5703125,
|
21 |
+
"training_gpu_0_memory_MB": 9519.072265625,
|
22 |
+
"validation_NullAccuracy": 0.9944147079357691,
|
23 |
+
"validation_NullF1": 0.760831892490387,
|
24 |
+
"validation_Lemma": 0.9688856021141695,
|
25 |
+
"validation_PosFeats": 0.9670321425891987,
|
26 |
+
"validation_UD-UAS": 0.9124442005770824,
|
27 |
+
"validation_UD-LAS": 0.9202013639395834,
|
28 |
+
"validation_EUD-UAS": 0.7918899930190617,
|
29 |
+
"validation_EUD-LAS": 0.7913415546274423,
|
30 |
+
"validation_Misc": 0.9951019795719324,
|
31 |
+
"validation_SS": 0.8967342957889886,
|
32 |
+
"validation_SC": 0.9110746706965478,
|
33 |
+
"validation_Avg": 0.9060784225471118,
|
34 |
+
"validation_loss": 1.6523614754244842,
|
35 |
+
"best_validation_NullAccuracy": 0.9944147079357691,
|
36 |
+
"best_validation_NullF1": 0.760831892490387,
|
37 |
+
"best_validation_Lemma": 0.9688856021141695,
|
38 |
+
"best_validation_PosFeats": 0.9670321425891987,
|
39 |
+
"best_validation_UD-UAS": 0.9124442005770824,
|
40 |
+
"best_validation_UD-LAS": 0.9202013639395834,
|
41 |
+
"best_validation_EUD-UAS": 0.7918899930190617,
|
42 |
+
"best_validation_EUD-LAS": 0.7913415546274423,
|
43 |
+
"best_validation_Misc": 0.9951019795719324,
|
44 |
+
"best_validation_SS": 0.8967342957889886,
|
45 |
+
"best_validation_SC": 0.9110746706965478,
|
46 |
+
"best_validation_Avg": 0.9060784225471118,
|
47 |
+
"best_validation_loss": 1.6523614754244842
|
48 |
+
}
|
metrics_epoch_3.json
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_epoch": 3,
|
3 |
+
"peak_worker_0_memory_MB": 5007.5703125,
|
4 |
+
"peak_gpu_0_memory_MB": 9519.09326171875,
|
5 |
+
"training_duration": "0:09:32.450771",
|
6 |
+
"epoch": 3,
|
7 |
+
"training_NullAccuracy": 0.993758128810483,
|
8 |
+
"training_NullF1": 0.7305238842964172,
|
9 |
+
"training_Lemma": 0.9589228922380196,
|
10 |
+
"training_PosFeats": 0.9586359888491892,
|
11 |
+
"training_UD-UAS": 0.8698224430420106,
|
12 |
+
"training_UD-LAS": 0.874985328276283,
|
13 |
+
"training_EUD-UAS": 0.7054674131120687,
|
14 |
+
"training_EUD-LAS": 0.7047201335451267,
|
15 |
+
"training_Misc": 0.9941974276851971,
|
16 |
+
"training_SS": 0.8909374421565713,
|
17 |
+
"training_SC": 0.8967372099414975,
|
18 |
+
"training_Avg": 0.8727140309828849,
|
19 |
+
"training_loss": 1.9789089089179932,
|
20 |
+
"training_worker_0_memory_MB": 5007.5703125,
|
21 |
+
"training_gpu_0_memory_MB": 9519.09326171875,
|
22 |
+
"validation_NullAccuracy": 0.9949813317683722,
|
23 |
+
"validation_NullF1": 0.8008031845092773,
|
24 |
+
"validation_Lemma": 0.9744537851681874,
|
25 |
+
"validation_PosFeats": 0.9702474732859608,
|
26 |
+
"validation_UD-UAS": 0.9256079241414603,
|
27 |
+
"validation_UD-LAS": 0.9349807975677433,
|
28 |
+
"validation_EUD-UAS": 0.820943670034904,
|
29 |
+
"validation_EUD-LAS": 0.8241217464970249,
|
30 |
+
"validation_Misc": 0.9956378680213926,
|
31 |
+
"validation_SS": 0.905597890743063,
|
32 |
+
"validation_SC": 0.9172481056343311,
|
33 |
+
"validation_Avg": 0.9187599178993408,
|
34 |
+
"validation_loss": 1.527829959625151,
|
35 |
+
"best_validation_NullAccuracy": 0.9949813317683722,
|
36 |
+
"best_validation_NullF1": 0.8008031845092773,
|
37 |
+
"best_validation_Lemma": 0.9744537851681874,
|
38 |
+
"best_validation_PosFeats": 0.9702474732859608,
|
39 |
+
"best_validation_UD-UAS": 0.9256079241414603,
|
40 |
+
"best_validation_UD-LAS": 0.9349807975677433,
|
41 |
+
"best_validation_EUD-UAS": 0.820943670034904,
|
42 |
+
"best_validation_EUD-LAS": 0.8241217464970249,
|
43 |
+
"best_validation_Misc": 0.9956378680213926,
|
44 |
+
"best_validation_SS": 0.905597890743063,
|
45 |
+
"best_validation_SC": 0.9172481056343311,
|
46 |
+
"best_validation_Avg": 0.9187599178993408,
|
47 |
+
"best_validation_loss": 1.527829959625151
|
48 |
+
}
|
metrics_epoch_4.json
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_epoch": 4,
|
3 |
+
"peak_worker_0_memory_MB": 5027.1953125,
|
4 |
+
"peak_gpu_0_memory_MB": 9519.09326171875,
|
5 |
+
"training_duration": "0:12:18.132863",
|
6 |
+
"epoch": 4,
|
7 |
+
"training_NullAccuracy": 0.9942646542831741,
|
8 |
+
"training_NullF1": 0.7562780380249023,
|
9 |
+
"training_Lemma": 0.9657529570397173,
|
10 |
+
"training_PosFeats": 0.9648536315857373,
|
11 |
+
"training_UD-UAS": 0.8878277707813284,
|
12 |
+
"training_UD-LAS": 0.8936011164975907,
|
13 |
+
"training_EUD-UAS": 0.7379891026048733,
|
14 |
+
"training_EUD-LAS": 0.7385957444664984,
|
15 |
+
"training_Misc": 0.994901364684238,
|
16 |
+
"training_SS": 0.9021359299540618,
|
17 |
+
"training_SC": 0.9070270300589512,
|
18 |
+
"training_Avg": 0.8880760719636662,
|
19 |
+
"training_loss": 1.7114072780351381,
|
20 |
+
"training_worker_0_memory_MB": 5027.1953125,
|
21 |
+
"training_gpu_0_memory_MB": 9518.763671875,
|
22 |
+
"validation_NullAccuracy": 0.9951938157055984,
|
23 |
+
"validation_NullF1": 0.8103792071342468,
|
24 |
+
"validation_Lemma": 0.9776076388511272,
|
25 |
+
"validation_PosFeats": 0.9722945671628994,
|
26 |
+
"validation_UD-UAS": 0.9329085409575285,
|
27 |
+
"validation_UD-LAS": 0.9407159713009224,
|
28 |
+
"validation_EUD-UAS": 0.8425968752806801,
|
29 |
+
"validation_EUD-LAS": 0.851003896527942,
|
30 |
+
"validation_Misc": 0.995970118860058,
|
31 |
+
"validation_SS": 0.9143543080072453,
|
32 |
+
"validation_SC": 0.9235823071069527,
|
33 |
+
"validation_Avg": 0.9278926915617062,
|
34 |
+
"validation_loss": 1.3916027977906869,
|
35 |
+
"best_validation_NullAccuracy": 0.9951938157055984,
|
36 |
+
"best_validation_NullF1": 0.8103792071342468,
|
37 |
+
"best_validation_Lemma": 0.9776076388511272,
|
38 |
+
"best_validation_PosFeats": 0.9722945671628994,
|
39 |
+
"best_validation_UD-UAS": 0.9329085409575285,
|
40 |
+
"best_validation_UD-LAS": 0.9407159713009224,
|
41 |
+
"best_validation_EUD-UAS": 0.8425968752806801,
|
42 |
+
"best_validation_EUD-LAS": 0.851003896527942,
|
43 |
+
"best_validation_Misc": 0.995970118860058,
|
44 |
+
"best_validation_SS": 0.9143543080072453,
|
45 |
+
"best_validation_SC": 0.9235823071069527,
|
46 |
+
"best_validation_Avg": 0.9278926915617062,
|
47 |
+
"best_validation_loss": 1.3916027977906869
|
48 |
+
}
|
metrics_epoch_5.json
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_epoch": 4,
|
3 |
+
"peak_worker_0_memory_MB": 5027.1953125,
|
4 |
+
"peak_gpu_0_memory_MB": 9519.09326171875,
|
5 |
+
"training_duration": "0:15:05.964656",
|
6 |
+
"epoch": 5,
|
7 |
+
"training_NullAccuracy": 0.9946155286991529,
|
8 |
+
"training_NullF1": 0.772843599319458,
|
9 |
+
"training_Lemma": 0.9708506147342789,
|
10 |
+
"training_PosFeats": 0.9693436839182648,
|
11 |
+
"training_UD-UAS": 0.898080789382599,
|
12 |
+
"training_UD-LAS": 0.9039214942185034,
|
13 |
+
"training_EUD-UAS": 0.7611008362892434,
|
14 |
+
"training_EUD-LAS": 0.7615755593105455,
|
15 |
+
"training_Misc": 0.9955295793766091,
|
16 |
+
"training_SS": 0.9113964876067825,
|
17 |
+
"training_SC": 0.9151545576415026,
|
18 |
+
"training_Avg": 0.8985504002753699,
|
19 |
+
"training_loss": 1.5065134753324514,
|
20 |
+
"training_worker_0_memory_MB": 5027.1953125,
|
21 |
+
"training_gpu_0_memory_MB": 9519.0869140625,
|
22 |
+
"validation_NullAccuracy": 0.9953759447946494,
|
23 |
+
"validation_NullF1": 0.8195815086364746,
|
24 |
+
"validation_Lemma": 0.9805331100259921,
|
25 |
+
"validation_PosFeats": 0.9752526714039206,
|
26 |
+
"validation_UD-UAS": 0.9378790471378283,
|
27 |
+
"validation_UD-LAS": 0.9462564744252794,
|
28 |
+
"validation_EUD-UAS": 0.8021388123399105,
|
29 |
+
"validation_EUD-LAS": 0.8055390556204103,
|
30 |
+
"validation_Misc": 0.9966239027683997,
|
31 |
+
"validation_SS": 0.9189736664415935,
|
32 |
+
"validation_SC": 0.9266583068068551,
|
33 |
+
"validation_Avg": 0.9210950052189099,
|
34 |
+
"validation_loss": 1.2984009040357345,
|
35 |
+
"best_validation_NullAccuracy": 0.9951938157055984,
|
36 |
+
"best_validation_NullF1": 0.8103792071342468,
|
37 |
+
"best_validation_Lemma": 0.9776076388511272,
|
38 |
+
"best_validation_PosFeats": 0.9722945671628994,
|
39 |
+
"best_validation_UD-UAS": 0.9329085409575285,
|
40 |
+
"best_validation_UD-LAS": 0.9407159713009224,
|
41 |
+
"best_validation_EUD-UAS": 0.8425968752806801,
|
42 |
+
"best_validation_EUD-LAS": 0.851003896527942,
|
43 |
+
"best_validation_Misc": 0.995970118860058,
|
44 |
+
"best_validation_SS": 0.9143543080072453,
|
45 |
+
"best_validation_SC": 0.9235823071069527,
|
46 |
+
"best_validation_Avg": 0.9278926915617062,
|
47 |
+
"best_validation_loss": 1.3916027977906869
|
48 |
+
}
|
metrics_epoch_6.json
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_epoch": 6,
|
3 |
+
"peak_worker_0_memory_MB": 5027.1953125,
|
4 |
+
"peak_gpu_0_memory_MB": 9519.09326171875,
|
5 |
+
"training_duration": "0:17:51.116048",
|
6 |
+
"epoch": 6,
|
7 |
+
"training_NullAccuracy": 0.995108863404326,
|
8 |
+
"training_NullF1": 0.7973771095275879,
|
9 |
+
"training_Lemma": 0.9751745208144874,
|
10 |
+
"training_PosFeats": 0.9731774762596546,
|
11 |
+
"training_UD-UAS": 0.9068835866657664,
|
12 |
+
"training_UD-LAS": 0.9129886730365514,
|
13 |
+
"training_EUD-UAS": 0.776946208179582,
|
14 |
+
"training_EUD-LAS": 0.7777877928165008,
|
15 |
+
"training_Misc": 0.9960063494556407,
|
16 |
+
"training_SS": 0.9181638181991553,
|
17 |
+
"training_SC": 0.9231895357381242,
|
18 |
+
"training_Avg": 0.9067019956850514,
|
19 |
+
"training_loss": 1.3392483117066993,
|
20 |
+
"training_worker_0_memory_MB": 5027.1953125,
|
21 |
+
"training_gpu_0_memory_MB": 9519.09130859375,
|
22 |
+
"validation_NullAccuracy": 0.9954568910564499,
|
23 |
+
"validation_NullF1": 0.8129945993423462,
|
24 |
+
"validation_Lemma": 0.9818381529292776,
|
25 |
+
"validation_PosFeats": 0.9753705668628019,
|
26 |
+
"validation_UD-UAS": 0.9428139837322795,
|
27 |
+
"validation_UD-LAS": 0.9499843284687144,
|
28 |
+
"validation_EUD-UAS": 0.8683532423186454,
|
29 |
+
"validation_EUD-LAS": 0.8739898804869519,
|
30 |
+
"validation_Misc": 0.9966560560753673,
|
31 |
+
"validation_SS": 0.9209993247805537,
|
32 |
+
"validation_SC": 0.930945414402538,
|
33 |
+
"validation_Avg": 0.9378834388952365,
|
34 |
+
"validation_loss": 1.258003266430898,
|
35 |
+
"best_validation_NullAccuracy": 0.9954568910564499,
|
36 |
+
"best_validation_NullF1": 0.8129945993423462,
|
37 |
+
"best_validation_Lemma": 0.9818381529292776,
|
38 |
+
"best_validation_PosFeats": 0.9753705668628019,
|
39 |
+
"best_validation_UD-UAS": 0.9428139837322795,
|
40 |
+
"best_validation_UD-LAS": 0.9499843284687144,
|
41 |
+
"best_validation_EUD-UAS": 0.8683532423186454,
|
42 |
+
"best_validation_EUD-LAS": 0.8739898804869519,
|
43 |
+
"best_validation_Misc": 0.9966560560753673,
|
44 |
+
"best_validation_SS": 0.9209993247805537,
|
45 |
+
"best_validation_SC": 0.930945414402538,
|
46 |
+
"best_validation_Avg": 0.9378834388952365,
|
47 |
+
"best_validation_loss": 1.258003266430898
|
48 |
+
}
|
metrics_epoch_7.json
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_epoch": 6,
|
3 |
+
"peak_worker_0_memory_MB": 5027.1953125,
|
4 |
+
"peak_gpu_0_memory_MB": 9519.09326171875,
|
5 |
+
"training_duration": "0:20:36.743010",
|
6 |
+
"epoch": 7,
|
7 |
+
"training_NullAccuracy": 0.9954069747502328,
|
8 |
+
"training_NullF1": 0.8105754852294922,
|
9 |
+
"training_Lemma": 0.9782979740224275,
|
10 |
+
"training_PosFeats": 0.9761194281002675,
|
11 |
+
"training_UD-UAS": 0.9134964643510327,
|
12 |
+
"training_UD-LAS": 0.919357298484433,
|
13 |
+
"training_EUD-UAS": 0.7921211272405693,
|
14 |
+
"training_EUD-LAS": 0.7931848552427248,
|
15 |
+
"training_Misc": 0.9965364056023289,
|
16 |
+
"training_SS": 0.9242917159796503,
|
17 |
+
"training_SC": 0.9304196137601454,
|
18 |
+
"training_Avg": 0.9137583203092865,
|
19 |
+
"training_loss": 1.2089829769670808,
|
20 |
+
"training_worker_0_memory_MB": 5027.1953125,
|
21 |
+
"training_gpu_0_memory_MB": 9518.76416015625,
|
22 |
+
"validation_NullAccuracy": 0.9956794932764012,
|
23 |
+
"validation_NullF1": 0.8295408487319946,
|
24 |
+
"validation_Lemma": 0.9837522158540962,
|
25 |
+
"validation_PosFeats": 0.9767853123693772,
|
26 |
+
"validation_UD-UAS": 0.9456879482032782,
|
27 |
+
"validation_UD-LAS": 0.9535366996558764,
|
28 |
+
"validation_EUD-UAS": 0.8534956940798143,
|
29 |
+
"validation_EUD-LAS": 0.8622828247192837,
|
30 |
+
"validation_Misc": 0.9967846693032378,
|
31 |
+
"validation_SS": 0.9250077703825171,
|
32 |
+
"validation_SC": 0.9357684104476812,
|
33 |
+
"validation_Avg": 0.9370112827794626,
|
34 |
+
"validation_loss": 1.2147318976266044,
|
35 |
+
"best_validation_NullAccuracy": 0.9954568910564499,
|
36 |
+
"best_validation_NullF1": 0.8129945993423462,
|
37 |
+
"best_validation_Lemma": 0.9818381529292776,
|
38 |
+
"best_validation_PosFeats": 0.9753705668628019,
|
39 |
+
"best_validation_UD-UAS": 0.9428139837322795,
|
40 |
+
"best_validation_UD-LAS": 0.9499843284687144,
|
41 |
+
"best_validation_EUD-UAS": 0.8683532423186454,
|
42 |
+
"best_validation_EUD-LAS": 0.8739898804869519,
|
43 |
+
"best_validation_Misc": 0.9966560560753673,
|
44 |
+
"best_validation_SS": 0.9209993247805537,
|
45 |
+
"best_validation_SC": 0.930945414402538,
|
46 |
+
"best_validation_Avg": 0.9378834388952365,
|
47 |
+
"best_validation_loss": 1.258003266430898
|
48 |
+
}
|
metrics_epoch_8.json
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_epoch": 8,
|
3 |
+
"peak_worker_0_memory_MB": 5027.1953125,
|
4 |
+
"peak_gpu_0_memory_MB": 9519.13818359375,
|
5 |
+
"training_duration": "0:23:20.232026",
|
6 |
+
"epoch": 8,
|
7 |
+
"training_NullAccuracy": 0.9955388824254128,
|
8 |
+
"training_NullF1": 0.8168526291847229,
|
9 |
+
"training_Lemma": 0.9816404672094307,
|
10 |
+
"training_PosFeats": 0.9789155443872943,
|
11 |
+
"training_UD-UAS": 0.9212987950549077,
|
12 |
+
"training_UD-LAS": 0.927211597256006,
|
13 |
+
"training_EUD-UAS": 0.8093451963291749,
|
14 |
+
"training_EUD-LAS": 0.811721323452343,
|
15 |
+
"training_Misc": 0.9970468300398804,
|
16 |
+
"training_SS": 0.9295642321477651,
|
17 |
+
"training_SC": 0.9366232338473102,
|
18 |
+
"training_Avg": 0.9214852466360125,
|
19 |
+
"training_loss": 1.0780786219221048,
|
20 |
+
"training_worker_0_memory_MB": 5027.1953125,
|
21 |
+
"training_gpu_0_memory_MB": 9519.13818359375,
|
22 |
+
"validation_NullAccuracy": 0.9957199664073013,
|
23 |
+
"validation_NullF1": 0.8320762515068054,
|
24 |
+
"validation_Lemma": 0.9847962501767246,
|
25 |
+
"validation_PosFeats": 0.9779213958822331,
|
26 |
+
"validation_UD-UAS": 0.9488807523939419,
|
27 |
+
"validation_UD-LAS": 0.9562604860143961,
|
28 |
+
"validation_EUD-UAS": 0.8749964754879294,
|
29 |
+
"validation_EUD-LAS": 0.8808624264640749,
|
30 |
+
"validation_Misc": 0.9968061048412162,
|
31 |
+
"validation_SS": 0.9278158258576895,
|
32 |
+
"validation_SC": 0.9368187518086235,
|
33 |
+
"validation_Avg": 0.9427953854363142,
|
34 |
+
"validation_loss": 1.1731802472254125,
|
35 |
+
"best_validation_NullAccuracy": 0.9957199664073013,
|
36 |
+
"best_validation_NullF1": 0.8320762515068054,
|
37 |
+
"best_validation_Lemma": 0.9847962501767246,
|
38 |
+
"best_validation_PosFeats": 0.9779213958822331,
|
39 |
+
"best_validation_UD-UAS": 0.9488807523939419,
|
40 |
+
"best_validation_UD-LAS": 0.9562604860143961,
|
41 |
+
"best_validation_EUD-UAS": 0.8749964754879294,
|
42 |
+
"best_validation_EUD-LAS": 0.8808624264640749,
|
43 |
+
"best_validation_Misc": 0.9968061048412162,
|
44 |
+
"best_validation_SS": 0.9278158258576895,
|
45 |
+
"best_validation_SC": 0.9368187518086235,
|
46 |
+
"best_validation_Avg": 0.9427953854363142,
|
47 |
+
"best_validation_loss": 1.1731802472254125
|
48 |
+
}
|
metrics_epoch_9.json
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_epoch": 9,
|
3 |
+
"peak_worker_0_memory_MB": 5027.1953125,
|
4 |
+
"peak_gpu_0_memory_MB": 9519.13818359375,
|
5 |
+
"training_duration": "0:26:03.535227",
|
6 |
+
"epoch": 9,
|
7 |
+
"training_NullAccuracy": 0.9957235531706647,
|
8 |
+
"training_NullF1": 0.8256801962852478,
|
9 |
+
"training_Lemma": 0.9835520888448912,
|
10 |
+
"training_PosFeats": 0.9810301599142935,
|
11 |
+
"training_UD-UAS": 0.9254102606250432,
|
12 |
+
"training_UD-LAS": 0.9319205584029282,
|
13 |
+
"training_EUD-UAS": 0.8187803610763775,
|
14 |
+
"training_EUD-LAS": 0.8208646692034237,
|
15 |
+
"training_Misc": 0.9972908241391496,
|
16 |
+
"training_SS": 0.9338719900383099,
|
17 |
+
"training_SC": 0.9425099420584128,
|
18 |
+
"training_Avg": 0.9261367615892033,
|
19 |
+
"training_loss": 0.9827121988315632,
|
20 |
+
"training_worker_0_memory_MB": 5027.1953125,
|
21 |
+
"training_gpu_0_memory_MB": 9519.08251953125,
|
22 |
+
"validation_NullAccuracy": 0.9959020954963523,
|
23 |
+
"validation_NullF1": 0.8384523391723633,
|
24 |
+
"validation_Lemma": 0.985611901991278,
|
25 |
+
"validation_PosFeats": 0.9784465665627043,
|
26 |
+
"validation_UD-UAS": 0.9493275025730825,
|
27 |
+
"validation_UD-LAS": 0.957065463503782,
|
28 |
+
"validation_EUD-UAS": 0.8827050763621938,
|
29 |
+
"validation_EUD-LAS": 0.8889461539814618,
|
30 |
+
"validation_Misc": 0.9971597912178601,
|
31 |
+
"validation_SS": 0.9289733449085238,
|
32 |
+
"validation_SC": 0.93875866799567,
|
33 |
+
"validation_Avg": 0.9452216076773952,
|
34 |
+
"validation_loss": 1.1547149845532008,
|
35 |
+
"best_validation_NullAccuracy": 0.9959020954963523,
|
36 |
+
"best_validation_NullF1": 0.8384523391723633,
|
37 |
+
"best_validation_Lemma": 0.985611901991278,
|
38 |
+
"best_validation_PosFeats": 0.9784465665627043,
|
39 |
+
"best_validation_UD-UAS": 0.9493275025730825,
|
40 |
+
"best_validation_UD-LAS": 0.957065463503782,
|
41 |
+
"best_validation_EUD-UAS": 0.8827050763621938,
|
42 |
+
"best_validation_EUD-LAS": 0.8889461539814618,
|
43 |
+
"best_validation_Misc": 0.9971597912178601,
|
44 |
+
"best_validation_SS": 0.9289733449085238,
|
45 |
+
"best_validation_SC": 0.93875866799567,
|
46 |
+
"best_validation_Avg": 0.9452216076773952,
|
47 |
+
"best_validation_loss": 1.1547149845532008
|
48 |
+
}
|
model.tar.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:402a8206e518862c42e9105110daf5a91e90377a7997057bb9ca4ebe853aeddf
|
3 |
+
size 207
|
out.log
ADDED
The diff for this file is too large to render.
See raw diff
|
|
vocabulary/.lock
ADDED
File without changes
|
vocabulary/deprel_labels.txt
ADDED
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
punct
|
2 |
+
nmod
|
3 |
+
case
|
4 |
+
nsubj
|
5 |
+
obl
|
6 |
+
root
|
7 |
+
amod
|
8 |
+
advmod
|
9 |
+
obj
|
10 |
+
conj
|
11 |
+
det
|
12 |
+
cc
|
13 |
+
appos
|
14 |
+
advcl
|
15 |
+
parataxis
|
16 |
+
xcomp
|
17 |
+
ccomp
|
18 |
+
acl
|
19 |
+
nsubj:pass
|
20 |
+
nummod:gov
|
21 |
+
flat:name
|
22 |
+
iobj
|
23 |
+
nummod
|
24 |
+
aux:pass
|
25 |
+
acl:relcl
|
26 |
+
fixed
|
27 |
+
flat
|
28 |
+
aux
|
29 |
+
obl:agent
|
30 |
+
flat:foreign
|
31 |
+
cop
|
32 |
+
expl
|
33 |
+
compound
|
34 |
+
nummod:entity
|
35 |
+
mark
|
36 |
+
csubj
|
37 |
+
advcl:relcl
|
38 |
+
orphan
|
39 |
+
list
|
40 |
+
nmod:tmod
|
41 |
+
discourse
|
42 |
+
vocative
|
43 |
+
dep
|
44 |
+
0
|
45 |
+
nsubj:outer
|
46 |
+
csubj:pass
|
vocabulary/deps_labels.txt
ADDED
@@ -0,0 +1,248 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
punct
|
2 |
+
case
|
3 |
+
root
|
4 |
+
nsubj
|
5 |
+
nmod:gen
|
6 |
+
amod
|
7 |
+
advmod
|
8 |
+
obj
|
9 |
+
conj
|
10 |
+
det
|
11 |
+
obl:в:loc
|
12 |
+
cc
|
13 |
+
appos
|
14 |
+
parataxis
|
15 |
+
advcl
|
16 |
+
xcomp
|
17 |
+
ccomp
|
18 |
+
acl
|
19 |
+
nsubj:pass
|
20 |
+
nummod:gov
|
21 |
+
flat:name
|
22 |
+
cop
|
23 |
+
obl:в:acc
|
24 |
+
nummod
|
25 |
+
iobj
|
26 |
+
obl:gen
|
27 |
+
nmod:в:loc
|
28 |
+
aux:pass
|
29 |
+
obl:на:loc
|
30 |
+
nsubj:xsubj
|
31 |
+
obl:ins
|
32 |
+
obl:на:acc
|
33 |
+
acl:relcl
|
34 |
+
fixed
|
35 |
+
obl:с:ins
|
36 |
+
flat
|
37 |
+
nmod:с:ins
|
38 |
+
obl:по:dat
|
39 |
+
nmod:по:dat
|
40 |
+
nmod:из:gen
|
41 |
+
nmod:на:acc
|
42 |
+
obl:к:dat
|
43 |
+
obl:agent
|
44 |
+
aux
|
45 |
+
flat:foreign
|
46 |
+
obl:для:gen
|
47 |
+
nmod:о:loc
|
48 |
+
obl:от:gen
|
49 |
+
obl:об:loc
|
50 |
+
nmod:на:loc
|
51 |
+
obl
|
52 |
+
nmod:в:acc
|
53 |
+
obl:о:loc
|
54 |
+
expl
|
55 |
+
obl:до:gen
|
56 |
+
obl:после:gen
|
57 |
+
obl:с:gen
|
58 |
+
obl:за:acc
|
59 |
+
obl:из:gen
|
60 |
+
obl:у:gen
|
61 |
+
nmod:nom
|
62 |
+
compound
|
63 |
+
nmod:ins
|
64 |
+
nmod:для:gen
|
65 |
+
nmod
|
66 |
+
nmod:к:dat
|
67 |
+
nmod:dat
|
68 |
+
nmod:от:gen
|
69 |
+
obl:на:gen
|
70 |
+
nummod:entity
|
71 |
+
obl:со:ins
|
72 |
+
nmod:до:gen
|
73 |
+
obl:acc
|
74 |
+
nmod:за:acc
|
75 |
+
obl:при:loc
|
76 |
+
mark
|
77 |
+
obl:за:ins
|
78 |
+
obl:в:gen
|
79 |
+
csubj
|
80 |
+
obl:без:gen
|
81 |
+
nmod:между:ins
|
82 |
+
nmod:об:loc
|
83 |
+
nmod:с:gen
|
84 |
+
obl:во:acc
|
85 |
+
obl:nom
|
86 |
+
advcl:relcl
|
87 |
+
nummod:gov:minus
|
88 |
+
obl:во:loc
|
89 |
+
obl:во_время:gen
|
90 |
+
obl:в_течение:gen
|
91 |
+
nmod:у:gen
|
92 |
+
obl:среди:gen
|
93 |
+
obl:за:gen
|
94 |
+
obl:перед:ins
|
95 |
+
obl:под:acc
|
96 |
+
obl:через:acc
|
97 |
+
obl:около:gen
|
98 |
+
obl:под:ins
|
99 |
+
nmod:со:ins
|
100 |
+
obl:через:gen
|
101 |
+
obl:против:gen
|
102 |
+
list
|
103 |
+
nmod:над:ins
|
104 |
+
nmod:на:gen
|
105 |
+
obl:между:ins
|
106 |
+
nmod:в:gen
|
107 |
+
nmod:против:gen
|
108 |
+
nmod:acc
|
109 |
+
nmod:при:loc
|
110 |
+
nmod:tmod
|
111 |
+
nmod:со:gen
|
112 |
+
obl:со:gen
|
113 |
+
nmod:после:gen
|
114 |
+
nmod:под:ins
|
115 |
+
obl:несмотря:acc
|
116 |
+
nmod:во:loc
|
117 |
+
nmod:за:ins
|
118 |
+
obl:над:ins
|
119 |
+
nmod:среди:gen
|
120 |
+
amod:minus
|
121 |
+
obl:по:acc
|
122 |
+
obl:в:nom
|
123 |
+
discourse
|
124 |
+
nmod:без:gen
|
125 |
+
obl:в
|
126 |
+
nmod:во:acc
|
127 |
+
obl:помимо:gen
|
128 |
+
obl:вместо:gen
|
129 |
+
nmod:перед:ins
|
130 |
+
obl:кроме:gen
|
131 |
+
obl:возле:gen
|
132 |
+
obl:minus
|
133 |
+
nmod:вокруг:gen
|
134 |
+
obl:по:loc
|
135 |
+
obl:про:acc
|
136 |
+
vocative
|
137 |
+
nmod:за:gen
|
138 |
+
nmod:около:gen
|
139 |
+
nummod:minus
|
140 |
+
advcl:чем
|
141 |
+
nmod:в:nom
|
142 |
+
nmod:через:acc
|
143 |
+
nmod:в_том_числе:nom
|
144 |
+
obl:более:gen
|
145 |
+
obl:спустя:gen
|
146 |
+
obl:на
|
147 |
+
obl:вокруг:gen
|
148 |
+
nmod:во_время:gen
|
149 |
+
nmod:по:acc
|
150 |
+
nmod:loc
|
151 |
+
nmod:более:gen
|
152 |
+
nmod:на
|
153 |
+
obl:из-под:gen
|
154 |
+
obl:ко:dat
|
155 |
+
dep
|
156 |
+
nmod:в_том_числе:gen
|
157 |
+
nmod:про:acc
|
158 |
+
obl:во:gen
|
159 |
+
obl:согласно:gen
|
160 |
+
obl:спустя:acc
|
161 |
+
obl:dat
|
162 |
+
nmod:кроме:gen
|
163 |
+
nmod:включая:acc
|
164 |
+
nmod:в_течение:gen
|
165 |
+
obl:начиная:gen
|
166 |
+
obl:близ:gen
|
167 |
+
nmod:под:acc
|
168 |
+
nmod:в
|
169 |
+
obl:больше:gen
|
170 |
+
conj:or
|
171 |
+
nmod:minus
|
172 |
+
obl:на:nom
|
173 |
+
obl:ради:gen
|
174 |
+
nummod:entity:minus
|
175 |
+
nmod:возле:gen
|
176 |
+
obl:за:nom
|
177 |
+
obl:во
|
178 |
+
obl:по:gen
|
179 |
+
nmod:в_том_числе:acc
|
180 |
+
nmod:близ:gen
|
181 |
+
obl:в_том_числе:nom
|
182 |
+
obl:с:nom
|
183 |
+
obl:ниже:gen
|
184 |
+
nmod:в_том_числе:ins
|
185 |
+
obl:сквозь:acc
|
186 |
+
nmod:из-за:gen
|
187 |
+
ccomp:whether
|
188 |
+
nmod:ко:dat
|
189 |
+
obl:о:acc
|
190 |
+
nmod:ради:gen
|
191 |
+
obl:по_мере:gen
|
192 |
+
nmod:начиная:gen
|
193 |
+
conj:minus
|
194 |
+
obl:мимо:gen
|
195 |
+
obl:о:gen
|
196 |
+
obl:в_том_числе:acc
|
197 |
+
obl:у:nom
|
198 |
+
obl:менее:gen
|
199 |
+
0
|
200 |
+
obl:об:acc
|
201 |
+
nmod:во
|
202 |
+
nmod:через:gen
|
203 |
+
nmod:помимо:gen
|
204 |
+
obl:меньше:gen
|
205 |
+
obl:о:nom
|
206 |
+
obl:порядка:gen
|
207 |
+
nsubj:minus
|
208 |
+
obl:несмотря:gen
|
209 |
+
appos:minus
|
210 |
+
nmod:несмотря:acc
|
211 |
+
xcomp:minus
|
212 |
+
nmod:в_том_числе:loc
|
213 |
+
obl:включая:gen
|
214 |
+
nmod:из-под:gen
|
215 |
+
obl:между:gen
|
216 |
+
obl:свыше:gen
|
217 |
+
nmod:вместо:gen
|
218 |
+
obl:из:nom
|
219 |
+
obl:от:nom
|
220 |
+
nsubj:outer
|
221 |
+
advmod:whether
|
222 |
+
obl:посреди:gen
|
223 |
+
nmod:плюс:gen
|
224 |
+
nmod:плюс:nom
|
225 |
+
obl:loc
|
226 |
+
nmod:надо:ins
|
227 |
+
obl:перед:gen
|
228 |
+
obl:благодаря:dat
|
229 |
+
nmod:ко:gen
|
230 |
+
obl:о
|
231 |
+
csubj:pass
|
232 |
+
obl:для:nom
|
233 |
+
obl:включая:acc
|
234 |
+
obl:из-за:gen
|
235 |
+
acl:whether
|
236 |
+
obl:в_том_числе:gen
|
237 |
+
obl:через:nom
|
238 |
+
obl:посередине:gen
|
239 |
+
nmod:ниже:gen
|
240 |
+
nmod:с:acc
|
241 |
+
obl:до:nom
|
242 |
+
obl:плюс
|
243 |
+
obl:навстречу:dat
|
244 |
+
nmod:об:acc
|
245 |
+
obj:minus
|
246 |
+
nmod:в_пределах:gen
|
247 |
+
nmod:менее:gen
|
248 |
+
nmod:свыше:gen
|
vocabulary/lemma_rule_labels.txt
ADDED
@@ -0,0 +1,450 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
cut_prefix=0|cut_suffix=0|append_suffix=
|
2 |
+
cut_prefix=0|cut_suffix=1|append_suffix=
|
3 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ть
|
4 |
+
cut_prefix=0|cut_suffix=1|append_suffix=а
|
5 |
+
cut_prefix=0|cut_suffix=2|append_suffix=
|
6 |
+
cut_prefix=0|cut_suffix=1|append_suffix=й
|
7 |
+
cut_prefix=0|cut_suffix=1|append_suffix=е
|
8 |
+
cut_prefix=0|cut_suffix=1|append_suffix=я
|
9 |
+
cut_prefix=0|cut_suffix=1|append_suffix=ть
|
10 |
+
cut_prefix=0|cut_suffix=1|append_suffix=ь
|
11 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ый
|
12 |
+
cut_prefix=0|cut_suffix=4|append_suffix=ть
|
13 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ий
|
14 |
+
cut_prefix=0|cut_suffix=5|append_suffix=быть
|
15 |
+
cut_prefix=0|cut_suffix=1|append_suffix=о
|
16 |
+
cut_prefix=0|cut_suffix=3|append_suffix=ый
|
17 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ь
|
18 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ой
|
19 |
+
cut_prefix=0|cut_suffix=0|append_suffix=а
|
20 |
+
cut_prefix=0|cut_suffix=3|append_suffix=ий
|
21 |
+
cut_prefix=0|cut_suffix=2|append_suffix=й
|
22 |
+
cut_prefix=0|cut_suffix=4|append_suffix=ться
|
23 |
+
cut_prefix=0|cut_suffix=2|append_suffix=а
|
24 |
+
cut_prefix=0|cut_suffix=2|append_suffix=о
|
25 |
+
cut_prefix=0|cut_suffix=4|append_suffix=ыть
|
26 |
+
cut_prefix=0|cut_suffix=3|append_suffix=ть
|
27 |
+
cut_prefix=0|cut_suffix=0|append_suffix=ь
|
28 |
+
cut_prefix=0|cut_suffix=3|append_suffix=
|
29 |
+
cut_prefix=0|cut_suffix=3|append_suffix=ить
|
30 |
+
cut_prefix=0|cut_suffix=3|append_suffix=чь
|
31 |
+
cut_prefix=0|cut_suffix=3|append_suffix=овать
|
32 |
+
cut_prefix=0|cut_suffix=3|append_suffix=йти
|
33 |
+
cut_prefix=0|cut_suffix=2|append_suffix=есь
|
34 |
+
cut_prefix=0|cut_suffix=1|append_suffix=т
|
35 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ить
|
36 |
+
cut_prefix=0|cut_suffix=1|append_suffix=от
|
37 |
+
cut_prefix=0|cut_suffix=4|append_suffix=ить
|
38 |
+
cut_prefix=0|cut_suffix=2|append_suffix=он
|
39 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ок
|
40 |
+
cut_prefix=0|cut_suffix=2|append_suffix=т
|
41 |
+
cut_prefix=0|cut_suffix=0|append_suffix=о
|
42 |
+
cut_prefix=0|cut_suffix=2|append_suffix=е
|
43 |
+
cut_prefix=0|cut_suffix=3|append_suffix=ться
|
44 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ец
|
45 |
+
cut_prefix=0|cut_suffix=2|append_suffix=вать
|
46 |
+
cut_prefix=0|cut_suffix=2|append_suffix=я
|
47 |
+
cut_prefix=0|cut_suffix=5|append_suffix=овать
|
48 |
+
cut_prefix=2|cut_suffix=0|append_suffix=
|
49 |
+
cut_prefix=0|cut_suffix=5|append_suffix=ить
|
50 |
+
cut_prefix=0|cut_suffix=2|append_suffix=от
|
51 |
+
cut_prefix=0|cut_suffix=0|append_suffix=т
|
52 |
+
cut_prefix=0|cut_suffix=3|append_suffix=я
|
53 |
+
cut_prefix=2|cut_suffix=0|append_suffix=н
|
54 |
+
cut_prefix=0|cut_suffix=3|append_suffix=ец
|
55 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ься
|
56 |
+
cut_prefix=0|cut_suffix=1|append_suffix=ый
|
57 |
+
cut_prefix=0|cut_suffix=5|append_suffix=ть
|
58 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ти
|
59 |
+
cut_prefix=0|cut_suffix=3|append_suffix=год
|
60 |
+
cut_prefix=0|cut_suffix=3|append_suffix=есь
|
61 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ы
|
62 |
+
cut_prefix=0|cut_suffix=2|append_suffix=нуть
|
63 |
+
cut_prefix=0|cut_suffix=0|append_suffix=й
|
64 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ка
|
65 |
+
cut_prefix=0|cut_suffix=3|append_suffix=ти
|
66 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ен
|
67 |
+
cut_prefix=0|cut_suffix=3|append_suffix=ин
|
68 |
+
cut_prefix=0|cut_suffix=3|append_suffix=ь
|
69 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ень
|
70 |
+
cut_prefix=0|cut_suffix=2|append_suffix=иллион
|
71 |
+
cut_prefix=0|cut_suffix=3|append_suffix=он
|
72 |
+
cut_prefix=0|cut_suffix=6|append_suffix=ить
|
73 |
+
cut_prefix=0|cut_suffix=3|append_suffix=то
|
74 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ин
|
75 |
+
cut_prefix=0|cut_suffix=3|append_suffix=ок
|
76 |
+
cut_prefix=0|cut_suffix=2|append_suffix=и
|
77 |
+
cut_prefix=0|cut_suffix=3|append_suffix=й
|
78 |
+
cut_prefix=0|cut_suffix=2|append_suffix=сти
|
79 |
+
cut_prefix=0|cut_suffix=6|append_suffix=ть
|
80 |
+
cut_prefix=0|cut_suffix=0|append_suffix=ин
|
81 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ая
|
82 |
+
cut_prefix=0|cut_suffix=2|append_suffix=еть
|
83 |
+
cut_prefix=0|cut_suffix=4|append_suffix=овек
|
84 |
+
cut_prefix=0|cut_suffix=5|append_suffix=дить
|
85 |
+
cut_prefix=0|cut_suffix=3|append_suffix=ень
|
86 |
+
cut_prefix=0|cut_suffix=5|append_suffix=йтись
|
87 |
+
cut_prefix=0|cut_suffix=3|append_suffix=сти
|
88 |
+
cut_prefix=0|cut_suffix=3|append_suffix=сать
|
89 |
+
cut_prefix=0|cut_suffix=4|append_suffix=иться
|
90 |
+
cut_prefix=0|cut_suffix=6|append_suffix=ться
|
91 |
+
cut_prefix=0|cut_suffix=3|append_suffix=нуть
|
92 |
+
cut_prefix=0|cut_suffix=4|append_suffix=тить
|
93 |
+
cut_prefix=0|cut_suffix=3|append_suffix=е
|
94 |
+
cut_prefix=0|cut_suffix=3|append_suffix=о
|
95 |
+
cut_prefix=0|cut_suffix=3|append_suffix=мы
|
96 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ный
|
97 |
+
cut_prefix=0|cut_suffix=3|append_suffix=овек
|
98 |
+
cut_prefix=0|cut_suffix=6|append_suffix=зкий
|
99 |
+
cut_prefix=0|cut_suffix=0|append_suffix=нуть
|
100 |
+
cut_prefix=0|cut_suffix=4|append_suffix=ец
|
101 |
+
cut_prefix=0|cut_suffix=4|append_suffix=ин
|
102 |
+
cut_prefix=0|cut_suffix=5|append_suffix=ый
|
103 |
+
cut_prefix=0|cut_suffix=4|append_suffix=яться
|
104 |
+
cut_prefix=3|cut_suffix=0|append_suffix=
|
105 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ать
|
106 |
+
cut_prefix=0|cut_suffix=2|append_suffix=сть
|
107 |
+
cut_prefix=0|cut_suffix=4|append_suffix=сти
|
108 |
+
cut_prefix=0|cut_suffix=4|append_suffix=ваться
|
109 |
+
cut_prefix=1|cut_suffix=3|append_suffix=бенок
|
110 |
+
cut_prefix=1|cut_suffix=4|append_suffix=го
|
111 |
+
cut_prefix=0|cut_suffix=1|append_suffix=яча
|
112 |
+
cut_prefix=0|cut_suffix=1|append_suffix=чь
|
113 |
+
cut_prefix=0|cut_suffix=3|append_suffix=ой
|
114 |
+
cut_prefix=0|cut_suffix=6|append_suffix=тить
|
115 |
+
cut_prefix=0|cut_suffix=1|append_suffix=ин
|
116 |
+
cut_prefix=2|cut_suffix=0|append_suffix=ы
|
117 |
+
cut_prefix=0|cut_suffix=1|append_suffix=сти
|
118 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ей
|
119 |
+
cut_prefix=0|cut_suffix=6|append_suffix=сить
|
120 |
+
cut_prefix=0|cut_suffix=1|append_suffix=сть
|
121 |
+
cut_prefix=0|cut_suffix=0|append_suffix=ый
|
122 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ять
|
123 |
+
cut_prefix=0|cut_suffix=4|append_suffix=есь
|
124 |
+
cut_prefix=0|cut_suffix=4|append_suffix=стить
|
125 |
+
cut_prefix=0|cut_suffix=3|append_suffix=а
|
126 |
+
cut_prefix=0|cut_suffix=5|append_suffix=год
|
127 |
+
cut_prefix=0|cut_suffix=2|append_suffix=овать
|
128 |
+
cut_prefix=0|cut_suffix=5|append_suffix=сти
|
129 |
+
cut_prefix=0|cut_suffix=4|append_suffix=дить
|
130 |
+
cut_prefix=0|cut_suffix=1|append_suffix=ить
|
131 |
+
cut_prefix=0|cut_suffix=5|append_suffix=там
|
132 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ое
|
133 |
+
cut_prefix=0|cut_suffix=0|append_suffix=ти
|
134 |
+
cut_prefix=0|cut_suffix=4|append_suffix=вать
|
135 |
+
cut_prefix=0|cut_suffix=3|append_suffix=тить
|
136 |
+
cut_prefix=0|cut_suffix=2|append_suffix=то
|
137 |
+
cut_prefix=0|cut_suffix=4|append_suffix=я
|
138 |
+
cut_prefix=0|cut_suffix=5|append_suffix=ать
|
139 |
+
cut_prefix=0|cut_suffix=4|append_suffix=ти
|
140 |
+
cut_prefix=0|cut_suffix=5|append_suffix=ться
|
141 |
+
cut_prefix=0|cut_suffix=6|append_suffix=йти
|
142 |
+
cut_prefix=0|cut_suffix=4|append_suffix=ебя
|
143 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ьги
|
144 |
+
cut_prefix=3|cut_suffix=1|append_suffix=й
|
145 |
+
cut_prefix=0|cut_suffix=4|append_suffix=асти
|
146 |
+
cut_prefix=0|cut_suffix=1|append_suffix=илометр
|
147 |
+
cut_prefix=0|cut_suffix=4|append_suffix=нуть
|
148 |
+
cut_prefix=0|cut_suffix=2|append_suffix=дно
|
149 |
+
cut_prefix=5|cut_suffix=0|append_suffix=
|
150 |
+
cut_prefix=0|cut_suffix=6|append_suffix=сти
|
151 |
+
cut_prefix=0|cut_suffix=7|append_suffix=йти
|
152 |
+
cut_prefix=0|cut_suffix=3|append_suffix=ы
|
153 |
+
cut_prefix=0|cut_suffix=7|append_suffix=ть
|
154 |
+
cut_prefix=0|cut_suffix=7|append_suffix=дить
|
155 |
+
cut_prefix=0|cut_suffix=4|append_suffix=сть
|
156 |
+
cut_prefix=0|cut_suffix=0|append_suffix=.
|
157 |
+
cut_prefix=0|cut_suffix=6|append_suffix=овать
|
158 |
+
cut_prefix=0|cut_suffix=0|append_suffix=ный
|
159 |
+
cut_prefix=0|cut_suffix=3|append_suffix=стить
|
160 |
+
cut_prefix=1|cut_suffix=2|append_suffix=бенок
|
161 |
+
cut_prefix=0|cut_suffix=4|append_suffix=сить
|
162 |
+
cut_prefix=0|cut_suffix=5|append_suffix=оваться
|
163 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ья
|
164 |
+
cut_prefix=0|cut_suffix=1|append_suffix=ий
|
165 |
+
cut_prefix=0|cut_suffix=2|append_suffix=уть
|
166 |
+
cut_prefix=0|cut_suffix=4|append_suffix=ий
|
167 |
+
cut_prefix=0|cut_suffix=3|append_suffix=еко
|
168 |
+
cut_prefix=0|cut_suffix=3|append_suffix=нять
|
169 |
+
cut_prefix=0|cut_suffix=3|append_suffix=ыть
|
170 |
+
cut_prefix=0|cut_suffix=4|append_suffix=ать
|
171 |
+
cut_prefix=0|cut_suffix=3|append_suffix=зать
|
172 |
+
cut_prefix=0|cut_suffix=1|append_suffix=ный
|
173 |
+
cut_prefix=0|cut_suffix=2|append_suffix=сто
|
174 |
+
cut_prefix=0|cut_suffix=5|append_suffix=ало
|
175 |
+
cut_prefix=0|cut_suffix=1|append_suffix=ой
|
176 |
+
cut_prefix=0|cut_suffix=5|append_suffix=ыть
|
177 |
+
cut_prefix=0|cut_suffix=4|append_suffix=чь
|
178 |
+
cut_prefix=0|cut_suffix=0|append_suffix=еть
|
179 |
+
cut_prefix=0|cut_suffix=3|append_suffix=еть
|
180 |
+
cut_prefix=0|cut_suffix=3|append_suffix=емь
|
181 |
+
cut_prefix=0|cut_suffix=7|append_suffix=аться
|
182 |
+
cut_prefix=0|cut_suffix=3|append_suffix=ать
|
183 |
+
cut_prefix=0|cut_suffix=3|append_suffix=ввс
|
184 |
+
cut_prefix=0|cut_suffix=3|append_suffix=идти
|
185 |
+
cut_prefix=0|cut_suffix=0|append_suffix=ы
|
186 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ки
|
187 |
+
cut_prefix=0|cut_suffix=5|append_suffix=ти
|
188 |
+
cut_prefix=0|cut_suffix=4|append_suffix=зить
|
189 |
+
cut_prefix=0|cut_suffix=3|append_suffix=г
|
190 |
+
cut_prefix=0|cut_suffix=1|append_suffix=илограмм
|
191 |
+
cut_prefix=0|cut_suffix=5|append_suffix=ой-то
|
192 |
+
cut_prefix=3|cut_suffix=1|append_suffix=о
|
193 |
+
cut_prefix=0|cut_suffix=5|append_suffix=заться
|
194 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ет
|
195 |
+
cut_prefix=0|cut_suffix=7|append_suffix=ться
|
196 |
+
cut_prefix=0|cut_suffix=2|append_suffix=асти
|
197 |
+
cut_prefix=0|cut_suffix=2|append_suffix=чь
|
198 |
+
cut_prefix=0|cut_suffix=6|append_suffix=ый
|
199 |
+
cut_prefix=0|cut_suffix=4|append_suffix=нять
|
200 |
+
cut_prefix=0|cut_suffix=3|append_suffix=теть
|
201 |
+
cut_prefix=0|cut_suffix=4|append_suffix=ок
|
202 |
+
cut_prefix=0|cut_suffix=7|append_suffix=ить
|
203 |
+
cut_prefix=0|cut_suffix=2|append_suffix=зко
|
204 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ел
|
205 |
+
cut_prefix=0|cut_suffix=3|append_suffix=хать
|
206 |
+
cut_prefix=1|cut_suffix=3|append_suffix=го
|
207 |
+
cut_prefix=0|cut_suffix=2|append_suffix=онь
|
208 |
+
cut_prefix=3|cut_suffix=2|append_suffix=ой
|
209 |
+
cut_prefix=3|cut_suffix=2|append_suffix=ий
|
210 |
+
cut_prefix=0|cut_suffix=6|append_suffix=иться
|
211 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ер
|
212 |
+
cut_prefix=0|cut_suffix=2|append_suffix=но
|
213 |
+
cut_prefix=0|cut_suffix=6|append_suffix=стить
|
214 |
+
cut_prefix=0|cut_suffix=3|append_suffix=от
|
215 |
+
cut_prefix=0|cut_suffix=0|append_suffix=етр
|
216 |
+
cut_prefix=0|cut_suffix=6|append_suffix=зи��ь
|
217 |
+
cut_prefix=0|cut_suffix=5|append_suffix=сть
|
218 |
+
cut_prefix=0|cut_suffix=3|append_suffix=скать
|
219 |
+
cut_prefix=0|cut_suffix=1|append_suffix=адратный
|
220 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ол
|
221 |
+
cut_prefix=0|cut_suffix=2|append_suffix=кий
|
222 |
+
cut_prefix=0|cut_suffix=2|append_suffix=овь
|
223 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ня
|
224 |
+
cut_prefix=0|cut_suffix=3|append_suffix=йся
|
225 |
+
cut_prefix=0|cut_suffix=4|append_suffix=ь
|
226 |
+
cut_prefix=0|cut_suffix=5|append_suffix=ивать
|
227 |
+
cut_prefix=0|cut_suffix=2|append_suffix=йка
|
228 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ьный
|
229 |
+
cut_prefix=0|cut_suffix=3|append_suffix=онь
|
230 |
+
cut_prefix=0|cut_suffix=3|append_suffix=яться
|
231 |
+
cut_prefix=0|cut_suffix=4|append_suffix=уть
|
232 |
+
cut_prefix=0|cut_suffix=2|append_suffix=теть
|
233 |
+
cut_prefix=0|cut_suffix=4|append_suffix=рать
|
234 |
+
cut_prefix=0|cut_suffix=3|append_suffix=сить
|
235 |
+
cut_prefix=0|cut_suffix=3|append_suffix=и
|
236 |
+
cut_prefix=0|cut_suffix=6|append_suffix=ти
|
237 |
+
cut_prefix=0|cut_suffix=5|append_suffix=тись
|
238 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ывать
|
239 |
+
cut_prefix=4|cut_suffix=0|append_suffix=
|
240 |
+
cut_prefix=0|cut_suffix=7|append_suffix=сти
|
241 |
+
cut_prefix=0|cut_suffix=5|append_suffix=алый
|
242 |
+
cut_prefix=0|cut_suffix=4|append_suffix=еть
|
243 |
+
cut_prefix=0|cut_suffix=1|append_suffix=ко
|
244 |
+
cut_prefix=0|cut_suffix=3|append_suffix=ывать
|
245 |
+
cut_prefix=2|cut_suffix=0|append_suffix=дти
|
246 |
+
cut_prefix=0|cut_suffix=2|append_suffix=зкий
|
247 |
+
cut_prefix=0|cut_suffix=5|append_suffix=чь
|
248 |
+
cut_prefix=0|cut_suffix=5|append_suffix=ец
|
249 |
+
cut_prefix=0|cut_suffix=4|append_suffix=овать
|
250 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ко
|
251 |
+
cut_prefix=0|cut_suffix=3|append_suffix=зить
|
252 |
+
cut_prefix=0|cut_suffix=2|append_suffix=сокий
|
253 |
+
cut_prefix=1|cut_suffix=4|append_suffix=бенок
|
254 |
+
cut_prefix=2|cut_suffix=1|append_suffix=ы
|
255 |
+
cut_prefix=0|cut_suffix=3|append_suffix=ивать
|
256 |
+
cut_prefix=0|cut_suffix=3|append_suffix=сть
|
257 |
+
cut_prefix=0|cut_suffix=4|append_suffix=
|
258 |
+
cut_prefix=0|cut_suffix=0|append_suffix=ть
|
259 |
+
cut_prefix=0|cut_suffix=5|append_suffix=язык
|
260 |
+
cut_prefix=0|cut_suffix=7|append_suffix=тить
|
261 |
+
cut_prefix=0|cut_suffix=4|append_suffix=ень
|
262 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ьмо
|
263 |
+
cut_prefix=0|cut_suffix=4|append_suffix=аивать
|
264 |
+
cut_prefix=0|cut_suffix=0|append_suffix=ой
|
265 |
+
cut_prefix=0|cut_suffix=3|append_suffix=евать
|
266 |
+
cut_prefix=0|cut_suffix=6|append_suffix=чь
|
267 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ич
|
268 |
+
cut_prefix=0|cut_suffix=5|append_suffix=жечь
|
269 |
+
cut_prefix=0|cut_suffix=7|append_suffix=овать
|
270 |
+
cut_prefix=0|cut_suffix=6|append_suffix=зять
|
271 |
+
cut_prefix=0|cut_suffix=3|append_suffix=иллион
|
272 |
+
cut_prefix=0|cut_suffix=0|append_suffix=ар
|
273 |
+
cut_prefix=0|cut_suffix=5|append_suffix=г
|
274 |
+
cut_prefix=0|cut_suffix=6|append_suffix=кий
|
275 |
+
cut_prefix=0|cut_suffix=5|append_suffix=ь
|
276 |
+
cut_prefix=0|cut_suffix=6|append_suffix=няться
|
277 |
+
cut_prefix=0|cut_suffix=2|append_suffix=сить
|
278 |
+
cut_prefix=3|cut_suffix=3|append_suffix=ий
|
279 |
+
cut_prefix=0|cut_suffix=1|append_suffix=ия
|
280 |
+
cut_prefix=0|cut_suffix=4|append_suffix=й-то
|
281 |
+
cut_prefix=1|cut_suffix=0|append_suffix=
|
282 |
+
cut_prefix=0|cut_suffix=2|append_suffix=на
|
283 |
+
cut_prefix=0|cut_suffix=6|append_suffix=рать
|
284 |
+
cut_prefix=0|cut_suffix=4|append_suffix=уться
|
285 |
+
cut_prefix=0|cut_suffix=8|append_suffix=дить
|
286 |
+
cut_prefix=0|cut_suffix=3|append_suffix=ел
|
287 |
+
cut_prefix=0|cut_suffix=2|append_suffix=го
|
288 |
+
cut_prefix=0|cut_suffix=3|append_suffix=аивать
|
289 |
+
cut_prefix=0|cut_suffix=4|append_suffix=оть
|
290 |
+
cut_prefix=0|cut_suffix=3|append_suffix=ля
|
291 |
+
cut_prefix=0|cut_suffix=5|append_suffix=йти
|
292 |
+
cut_prefix=0|cut_suffix=3|append_suffix=ед
|
293 |
+
cut_prefix=0|cut_suffix=5|append_suffix=зать
|
294 |
+
cut_prefix=0|cut_suffix=3|append_suffix=аживать
|
295 |
+
cut_prefix=0|cut_suffix=2|append_suffix=зать
|
296 |
+
cut_prefix=0|cut_suffix=5|append_suffix=я
|
297 |
+
cut_prefix=0|cut_suffix=4|append_suffix=аживать
|
298 |
+
cut_prefix=4|cut_suffix=1|append_suffix=
|
299 |
+
cut_prefix=0|cut_suffix=4|append_suffix=честь
|
300 |
+
cut_prefix=0|cut_suffix=4|append_suffix=и
|
301 |
+
cut_prefix=0|cut_suffix=3|append_suffix=иться
|
302 |
+
cut_prefix=0|cut_suffix=3|append_suffix=ев
|
303 |
+
cut_prefix=0|cut_suffix=1|append_suffix=вать
|
304 |
+
cut_prefix=0|cut_suffix=0|append_suffix=е
|
305 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ьма
|
306 |
+
cut_prefix=0|cut_suffix=3|append_suffix=ер
|
307 |
+
cut_prefix=0|cut_suffix=5|append_suffix=овек
|
308 |
+
cut_prefix=0|cut_suffix=2|append_suffix=деть
|
309 |
+
cut_prefix=0|cut_suffix=1|append_suffix=но
|
310 |
+
cut_prefix=0|cut_suffix=3|append_suffix=ол
|
311 |
+
cut_prefix=0|cut_suffix=5|append_suffix=гать
|
312 |
+
cut_prefix=0|cut_suffix=5|append_suffix=нуть
|
313 |
+
cut_prefix=0|cut_suffix=1|append_suffix=ти
|
314 |
+
cut_prefix=2|cut_suffix=1|append_suffix=
|
315 |
+
cut_prefix=0|cut_suffix=2|append_suffix=дить
|
316 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ьной
|
317 |
+
cut_prefix=0|cut_suffix=6|append_suffix=сть
|
318 |
+
cut_prefix=0|cut_suffix=4|append_suffix=есть
|
319 |
+
cut_prefix=0|cut_suffix=7|append_suffix=сить
|
320 |
+
cut_prefix=0|cut_suffix=2|append_suffix=дко
|
321 |
+
cut_prefix=0|cut_suffix=5|append_suffix=ой
|
322 |
+
cut_prefix=6|cut_suffix=0|append_suffix=
|
323 |
+
cut_prefix=0|cut_suffix=5|append_suffix=й-то
|
324 |
+
cut_prefix=0|cut_suffix=1|append_suffix=ать
|
325 |
+
cut_prefix=0|cut_suffix=2|append_suffix= о.
|
326 |
+
cut_prefix=3|cut_suffix=1|append_suffix=ий
|
327 |
+
cut_prefix=3|cut_suffix=1|append_suffix=
|
328 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ивать
|
329 |
+
cut_prefix=0|cut_suffix=7|append_suffix=зойти
|
330 |
+
cut_prefix=0|cut_suffix=4|append_suffix=йся
|
331 |
+
cut_prefix=0|cut_suffix=1|append_suffix=ар
|
332 |
+
cut_prefix=0|cut_suffix=7|append_suffix=зкий
|
333 |
+
cut_prefix=0|cut_suffix=4|append_suffix=г
|
334 |
+
cut_prefix=0|cut_suffix=6|append_suffix=дить
|
335 |
+
cut_prefix=0|cut_suffix=6|append_suffix=ваться
|
336 |
+
cut_prefix=1|cut_suffix=8|append_suffix=лый
|
337 |
+
cut_prefix=0|cut_suffix=7|append_suffix=аивать
|
338 |
+
cut_prefix=0|cut_suffix=5|append_suffix=ночь
|
339 |
+
cut_prefix=0|cut_suffix=1|append_suffix=с
|
340 |
+
cut_prefix=0|cut_suffix=2|append_suffix=соко
|
341 |
+
cut_prefix=0|cut_suffix=2|append_suffix=есть
|
342 |
+
cut_prefix=0|cut_suffix=1|append_suffix=антиметр
|
343 |
+
cut_prefix=0|cut_suffix=4|append_suffix=ийся
|
344 |
+
cut_prefix=0|cut_suffix=3|append_suffix=ая
|
345 |
+
cut_prefix=0|cut_suffix=1|append_suffix=ок
|
346 |
+
cut_prefix=0|cut_suffix=5|append_suffix=евать
|
347 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ьня
|
348 |
+
cut_prefix=0|cut_suffix=7|append_suffix=ти
|
349 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ее
|
350 |
+
cut_prefix=0|cut_suffix=8|append_suffix=зойти
|
351 |
+
cut_prefix=0|cut_suffix=4|append_suffix=зать
|
352 |
+
cut_prefix=0|cut_suffix=5|append_suffix=теть
|
353 |
+
cut_prefix=0|cut_suffix=5|append_suffix=ести
|
354 |
+
cut_prefix=0|cut_suffix=3|append_suffix=го
|
355 |
+
cut_prefix=0|cut_suffix=0|append_suffix=ий
|
356 |
+
cut_prefix=0|cut_suffix=4|append_suffix=ало
|
357 |
+
cut_prefix=0|cut_suffix=7|append_suffix=обрать
|
358 |
+
cut_prefix=0|cut_suffix=11|append_suffix=ертывать
|
359 |
+
cut_prefix=0|cut_suffix=4|append_suffix=день
|
360 |
+
cut_prefix=0|cut_suffix=5|append_suffix=аживать
|
361 |
+
cut_prefix=0|cut_suffix=3|append_suffix=ем
|
362 |
+
cut_prefix=0|cut_suffix=7|append_suffix=иться
|
363 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ье
|
364 |
+
cut_prefix=0|cut_suffix=7|append_suffix=ать
|
365 |
+
cut_prefix=0|cut_suffix=3|append_suffix=дить
|
366 |
+
cut_prefix=0|cut_suffix=4|append_suffix=ем
|
367 |
+
cut_prefix=0|cut_suffix=4|append_suffix=оваться
|
368 |
+
cut_prefix=0|cut_suffix=8|append_suffix=аивать
|
369 |
+
cut_prefix=0|cut_suffix=4|append_suffix=сться
|
370 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ожь
|
371 |
+
cut_prefix=0|cut_suffix=9|append_suffix=ертывать
|
372 |
+
cut_prefix=0|cut_suffix=3|append_suffix=ет
|
373 |
+
cut_prefix=0|cut_suffix=5|append_suffix=аивать
|
374 |
+
cut_prefix=0|cut_suffix=2|append_suffix=дой
|
375 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ткий
|
376 |
+
cut_prefix=0|cut_suffix=4|append_suffix=ьсот
|
377 |
+
cut_prefix=0|cut_suffix=1|append_suffix=го
|
378 |
+
cut_prefix=0|cut_suffix=4|append_suffix=оться
|
379 |
+
cut_prefix=0|cut_suffix=4|append_suffix=ять
|
380 |
+
cut_prefix=0|cut_suffix=4|append_suffix=диться
|
381 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ться
|
382 |
+
cut_prefix=0|cut_suffix=5|append_suffix=час
|
383 |
+
cut_prefix=0|cut_suffix=6|append_suffix=дать
|
384 |
+
cut_prefix=0|cut_suffix=5|append_suffix=жать
|
385 |
+
cut_prefix=0|cut_suffix=6|append_suffix=аживать
|
386 |
+
cut_prefix=0|cut_suffix=4|append_suffix=нать
|
387 |
+
cut_prefix=0|cut_suffix=4|append_suffix=стись
|
388 |
+
cut_prefix=0|cut_suffix=5|append_suffix=асти
|
389 |
+
cut_prefix=0|cut_suffix=4|append_suffix=а
|
390 |
+
cut_prefix=0|cut_suffix=5|append_suffix=еть
|
391 |
+
cut_prefix=2|cut_suffix=0|append_suffix=ь
|
392 |
+
cut_prefix=0|cut_suffix=3|append_suffix=ня
|
393 |
+
cut_prefix=0|cut_suffix=3|append_suffix=вать
|
394 |
+
cut_prefix=0|cut_suffix=4|append_suffix=сать
|
395 |
+
cut_prefix=0|cut_suffix=1|append_suffix=ос
|
396 |
+
cut_prefix=3|cut_suffix=1|append_suffix=чь
|
397 |
+
cut_prefix=0|cut_suffix=3|append_suffix=ее
|
398 |
+
cut_prefix=0|cut_suffix=7|append_suffix=сть
|
399 |
+
cut_prefix=0|cut_suffix=2|append_suffix=яя
|
400 |
+
cut_prefix=0|cut_suffix=7|append_suffix=зить
|
401 |
+
cut_prefix=0|cut_suffix=0|append_suffix=яча
|
402 |
+
cut_prefix=0|cut_suffix=9|append_suffix=аться
|
403 |
+
cut_prefix=0|cut_suffix=2|append_suffix=оль
|
404 |
+
cut_prefix=0|cut_suffix=2|append_suffix=оть
|
405 |
+
cut_prefix=0|cut_suffix=3|append_suffix=хо
|
406 |
+
cut_prefix=0|cut_suffix=1|append_suffix= д.
|
407 |
+
cut_prefix=0|cut_suffix=2|append_suffix='s
|
408 |
+
cut_prefix=0|cut_suffix=5|append_suffix=иться
|
409 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ие
|
410 |
+
cut_prefix=0|cut_suffix=5|append_suffix=ывать
|
411 |
+
cut_prefix=0|cut_suffix=6|append_suffix=вать
|
412 |
+
cut_prefix=0|cut_suffix=3|append_suffix=ься
|
413 |
+
cut_prefix=0|cut_suffix=2|append_suffix=онок
|
414 |
+
cut_prefix=4|cut_suffix=2|append_suffix=
|
415 |
+
cut_prefix=0|cut_suffix=3|append_suffix=ек
|
416 |
+
cut_prefix=0|cut_suffix=2|append_suffix=гой
|
417 |
+
cut_prefix=0|cut_suffix=2|append_suffix=сать
|
418 |
+
cut_prefix=0|cut_suffix=3|append_suffix=гать
|
419 |
+
cut_prefix=2|cut_suffix=2|append_suffix=ть
|
420 |
+
cut_prefix=0|cut_suffix=7|append_suffix=чь
|
421 |
+
cut_prefix=0|cut_suffix=5|append_suffix=ин
|
422 |
+
cut_prefix=0|cut_suffix=2|append_suffix=ек
|
423 |
+
cut_prefix=0|cut_suffix=0|append_suffix=ица
|
424 |
+
cut_prefix=0|cut_suffix=9|append_suffix=есться
|
425 |
+
cut_prefix=0|cut_suffix=3|append_suffix=есть
|
426 |
+
cut_prefix=2|cut_suffix=1|append_suffix=й
|
427 |
+
cut_prefix=0|cut_suffix=3|append_suffix=ечь
|
428 |
+
cut_prefix=2|cut_suffix=1|append_suffix=ть
|
429 |
+
cut_prefix=0|cut_suffix=2|append_suffix=с.
|
430 |
+
cut_prefix=0|cut_suffix=6|append_suffix=оваться
|
431 |
+
cut_prefix=3|cut_suffix=2|append_suffix=й
|
432 |
+
cut_prefix=0|cut_suffix=2|append_suffix=енок
|
433 |
+
cut_prefix=0|cut_suffix=5|append_suffix=сать
|
434 |
+
cut_prefix=0|cut_suffix=2|append_suffix=кать
|
435 |
+
cut_prefix=0|cut_suffix=8|append_suffix=кладывать
|
436 |
+
cut_prefix=0|cut_suffix=6|append_suffix=хороший
|
437 |
+
cut_prefix=0|cut_suffix=0|append_suffix=и
|
438 |
+
cut_prefix=0|cut_suffix=1|append_suffix=ре
|
439 |
+
cut_prefix=0|cut_suffix=0|append_suffix=онна
|
440 |
+
cut_prefix=0|cut_suffix=2|append_suffix=стой
|
441 |
+
cut_prefix=0|cut_suffix=2|append_suffix=нять
|
442 |
+
cut_prefix=0|cut_suffix=2|append_suffix=йти
|
443 |
+
cut_prefix=0|cut_suffix=4|append_suffix=нуться
|
444 |
+
cut_prefix=1|cut_suffix=2|append_suffix=ый
|
445 |
+
cut_prefix=0|cut_suffix=2|append_suffix=тить
|
446 |
+
cut_prefix=0|cut_suffix=2|append_suffix=дкий
|
447 |
+
cut_prefix=0|cut_suffix=2|append_suffix=хать
|
448 |
+
cut_prefix=0|cut_suffix=6|append_suffix=аивать
|
449 |
+
cut_prefix=0|cut_suffix=7|append_suffix=пост
|
450 |
+
@@UNKNOWN@@
|
vocabulary/misc_labels.txt
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
_
|
2 |
+
SpaceAfter=No
|
3 |
+
ellipsis
|
4 |
+
nmod
|
5 |
+
amod
|
6 |
+
obl
|
7 |
+
nsubj
|
8 |
+
obj
|
9 |
+
conj
|
10 |
+
acl
|
11 |
+
nsubj:pass
|
12 |
+
appos
|
13 |
+
flat:name
|
14 |
+
xcomp
|
15 |
+
root
|
16 |
+
parataxis
|
17 |
+
advmod
|
18 |
+
iobj
|
19 |
+
obl:agent
|
20 |
+
nummod
|
21 |
+
ccomp
|
22 |
+
compound
|
vocabulary/non_padded_namespaces.txt
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
*labels
|
2 |
+
*tags
|
vocabulary/pos_feats_labels.txt
ADDED
@@ -0,0 +1,859 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
PUNCT#PUNCT#_
|
2 |
+
ADP#Preposition#_
|
3 |
+
ADV#Adverb#Degree=Pos
|
4 |
+
NOUN#Noun#Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing
|
5 |
+
NUM#Numeral#_
|
6 |
+
VERB#Verb#Aspect=Perf|Mood=Ind|Number=Sing|Tense=Past|VerbForm=Fin|Voice=Act
|
7 |
+
NOUN#Noun#Animacy=Inan|Case=Gen|Gender=Fem|Number=Sing
|
8 |
+
CCONJ#Conjunction#_
|
9 |
+
NOUN#Noun#Animacy=Inan|Case=Nom|Gender=Fem|Number=Sing
|
10 |
+
NOUN#Noun#Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing
|
11 |
+
PROPN#Noun#Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing
|
12 |
+
VERB#Verb#Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act
|
13 |
+
NOUN#Noun#Animacy=Inan|Case=Nom|Gender=Masc|Number=Sing
|
14 |
+
NOUN#Noun#Animacy=Inan|Case=Gen|Gender=Neut|Number=Sing
|
15 |
+
SCONJ#Conjunction#_
|
16 |
+
NOUN#Noun#Animacy=Inan|Case=Acc|Gender=Fem|Number=Sing
|
17 |
+
NOUN#Noun#Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing
|
18 |
+
NOUN#Noun#Animacy=Inan|Case=Gen|Gender=Masc|Number=Plur
|
19 |
+
NOUN#Noun#Animacy=Anim|Case=Gen|Gender=Masc|Number=Plur
|
20 |
+
NOUN#Noun#Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing
|
21 |
+
VERB#Verb#Aspect=Perf|Mood=Ind|Number=Plur|Tense=Past|VerbForm=Fin|Voice=Act
|
22 |
+
PART#Particle#Polarity=Neg
|
23 |
+
NOUN#Noun#Animacy=Inan|Case=Acc|Gender=Neut|Number=Sing
|
24 |
+
PROPN#Noun#Abbr=Yes
|
25 |
+
VERB#Verb#Foreign=Yes
|
26 |
+
VERB#Verb#Aspect=Perf|Case=Acc|Number=Sing|Tense=Past|VerbForm=Part|Voice=Pass
|
27 |
+
NOUN#Noun#Animacy=Anim|Case=Nom|Gender=Masc|Number=Plur
|
28 |
+
NOUN#Noun#Animacy=Inan|Case=Nom|Gender=Neut|Number=Sing
|
29 |
+
ADJ#Adjective#Case=Gen|Degree=Pos|Number=Plur
|
30 |
+
NOUN#Noun#Animacy=Inan|Case=Gen|Gender=Fem|Number=Plur
|
31 |
+
VERB#Verb#Aspect=Perf|VerbForm=Inf|Voice=Act
|
32 |
+
NOUN#Noun#Animacy=Inan|Case=Loc|Gender=Fem|Number=Sing
|
33 |
+
VERB#Verb#Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act
|
34 |
+
VERB#Verb#Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Mid
|
35 |
+
ADJ#Adjective#Case=Nom|Degree=Pos|Gender=Masc|Number=Sing
|
36 |
+
ADJ#Adjective#Case=Gen|Degree=Pos|Gender=Masc|Number=Sing
|
37 |
+
NOUN#Noun#Animacy=Inan|Case=Loc|Gender=Neut|Number=Sing
|
38 |
+
PROPN#Noun#Animacy=Inan|Case=Gen|Gender=Fem|Number=Sing
|
39 |
+
NOUN#Noun#Foreign=Yes
|
40 |
+
ADJ#Adjective#Case=Gen|Degree=Pos|Gender=Fem|Number=Sing
|
41 |
+
VERB#Verb#Aspect=Imp|VerbForm=Inf|Voice=Act
|
42 |
+
VERB#Verb#Aspect=Imp|Mood=Ind|Number=Sing|Tense=Past|VerbForm=Fin|Voice=Act
|
43 |
+
VERB#Verb#Aspect=Perf|Mood=Ind|Number=Sing|Tense=Past|VerbForm=Fin|Voice=Mid
|
44 |
+
PART#Particle#_
|
45 |
+
ADJ#Adjective#Case=Nom|Degree=Pos|Number=Plur
|
46 |
+
NOUN#Noun#Animacy=Anim|Case=Gen|Gender=Masc|Number=Sing
|
47 |
+
ADJ#Adjective#Case=Nom|Degree=Pos|Gender=Fem|Number=Sing
|
48 |
+
PROPN#Noun#Animacy=Anim|Case=Gen|Gender=Masc|Number=Sing
|
49 |
+
ADP#_#_
|
50 |
+
PROPN#Noun#Animacy=Anim|Case=Nom|Gender=Fem|Number=Sing
|
51 |
+
NOUN#Noun#Animacy=Inan|Case=Ins|Gender=Fem|Number=Sing
|
52 |
+
PROPN#Noun#Animacy=Inan|Case=Nom|Gender=Masc|Number=Sing
|
53 |
+
NOUN#Noun#Animacy=Inan|Case=Nom|Gender=Fem|Number=Plur
|
54 |
+
NOUN#Noun#Animacy=Inan|Case=Ins|Gender=Masc|Number=Sing
|
55 |
+
PROPN#Noun#Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing
|
56 |
+
PROPN#Noun#Foreign=Yes
|
57 |
+
NOUN#Noun#Animacy=Inan|Case=Gen|Gender=Neut|Number=Plur
|
58 |
+
VERB#Verb#Aspect=Perf|Case=Acc|Number=Plur|Tense=Past|VerbForm=Part|Voice=Pass
|
59 |
+
NOUN#Noun#Animacy=Inan|Case=Nom|Gender=Masc|Number=Plur
|
60 |
+
AUX#Verb#Aspect=Imp|Number=Sing|Tense=Past|VerbForm=Fin|Voice=Act
|
61 |
+
NOUN#Noun#Animacy=Inan|Case=Acc|Gender=Masc|Number=Plur
|
62 |
+
PRON#Pronoun#Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Person=3
|
63 |
+
NOUN#Noun#Animacy=Inan|Case=Dat|Gender=Neut|Number=Sing
|
64 |
+
PROPN#Noun#Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing
|
65 |
+
VERB#Verb#Aspect=Imp|Mood=Ind|Number=Plur|Tense=Past|VerbForm=Fin|Voice=Act
|
66 |
+
NOUN#Noun#Animacy=Inan|Case=Acc|Gender=Fem|Number=Plur
|
67 |
+
ADJ#Adjective#Case=Gen|Degree=Pos|Gender=Neut|Number=Sing
|
68 |
+
ADJ#Adjective#Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Number=Sing
|
69 |
+
ADJ#Adjective#Case=Loc|Degree=Pos|Gender=Masc|Number=Sing
|
70 |
+
PROPN#Noun#Animacy=Inan|Case=Loc|Gender=Fem|Number=Sing
|
71 |
+
PROPN#Noun#Animacy=Inan|Case=Nom|Gender=Fem|Number=Sing
|
72 |
+
NOUN#Noun#Animacy=Inan|Case=Dat|Gender=Fem|Number=Sing
|
73 |
+
ADJ#Adjective#Case=Acc|Degree=Pos|Gender=Fem|Number=Sing
|
74 |
+
NOUN#Noun#Animacy=Inan|Case=Ins|Gender=Neut|Number=Sing
|
75 |
+
X#Noun#Foreign=Yes
|
76 |
+
NOUN#Noun#Animacy=Inan|Case=Acc|Gender=Neut|Number=Plur
|
77 |
+
NOUN#Noun#Animacy=Inan|Case=Dat|Gender=Masc|Number=Sing
|
78 |
+
PRON#Pronoun#Animacy=Inan|Case=Nom|Gender=Neut|Number=Sing|Person=3
|
79 |
+
ADJ#Adjective#Case=Acc|Degree=Pos|Gender=Neut|Number=Sing
|
80 |
+
ADV#Adverb#Degree=Cmp
|
81 |
+
VERB#Verb#Aspect=Perf|Mood=Ind|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act
|
82 |
+
VERB#Verb#Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Mid
|
83 |
+
ADJ#Adjective#Case=Nom|Degree=Pos|Gender=Neut|Number=Sing
|
84 |
+
NOUN#Noun#Animacy=Inan|Case=Nom|Gender=Neut|Number=Plur
|
85 |
+
VERB#Verb#Aspect=Imp|Mood=Ind|Number=Sing|Tense=Past|VerbForm=Fin|Voice=Mid
|
86 |
+
NOUN#Noun#Animacy=Anim|Case=Ins|Gender=Masc|Number=Sing
|
87 |
+
ADJ#Adjective#Case=Ins|Degree=Pos|Gender=Masc|Number=Sing
|
88 |
+
PRON#Pronoun#Case=Nom|Number=Plur
|
89 |
+
ADJ#Adjective#Case=Loc|Degree=Pos|Gender=Fem|Number=Sing
|
90 |
+
PRON#Pronoun#Animacy=Inan|Case=Loc|Gender=Neut|Number=Sing|Person=3
|
91 |
+
VERB#Verb#Aspect=Perf|Mood=Ind|Number=Plur|Tense=Past|VerbForm=Fin|Voice=Mid
|
92 |
+
X#_#Foreign=Yes
|
93 |
+
SYM#Noun#_
|
94 |
+
NOUN#Noun#Animacy=Inan|Case=Loc|Gender=Masc|Number=Plur
|
95 |
+
NOUN#Noun#Animacy=Inan|Case=Dat|Gender=Neut|Number=Plur
|
96 |
+
DET#Pronoun#Case=Nom|Number=Plur
|
97 |
+
ADJ#Adjective#Case=Ins|Degree=Pos|Number=Plur
|
98 |
+
ADJ#Adjective#Case=Acc|Degree=Pos|Number=Plur
|
99 |
+
NOUN#Noun#Animacy=Inan|Case=Loc|Gender=Fem|Number=Plur
|
100 |
+
AUX#Verb#Aspect=Imp|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act
|
101 |
+
PROPN#Noun#Animacy=Anim|Case=Nom|Number=Sing
|
102 |
+
NOUN#Noun#Animacy=Anim|Case=Ins|Gender=Masc|Number=Plur
|
103 |
+
NOUN#Noun#Animacy=Anim|Case=Dat|Gender=Masc|Number=Plur
|
104 |
+
ADJ#Adjective#Case=Ins|Degree=Pos|Gender=Fem|Number=Sing
|
105 |
+
NOUN#Noun#Animacy=Anim|Case=Acc|Gender=Masc|Number=Plur
|
106 |
+
NOUN#Noun#Animacy=Anim|Case=Nom|Gender=Fem|Number=Sing
|
107 |
+
ADV#Invariable#_
|
108 |
+
ADJ#Adjective#Case=Loc|Degree=Pos|Number=Plur
|
109 |
+
PRON#Pronoun#Case=Nom|Number=Plur|Person=3
|
110 |
+
NUM#Numeral#Case=Nom|Number=Sing
|
111 |
+
NOUN#Noun#Animacy=Anim|Case=Acc|Gender=Masc|Number=Sing
|
112 |
+
VERB#Verb#Aspect=Imp|VerbForm=Inf|Voice=Mid
|
113 |
+
AUX#Verb#Aspect=Imp|Number=Plur|Tense=Past|VerbForm=Fin|Voice=Act
|
114 |
+
PROPN#Noun#Animacy=Anim|Case=Gen|Gender=Fem|Number=Sing
|
115 |
+
DET#Pronoun#Case=Gen|Number=Plur
|
116 |
+
ADV#Conjunction#_
|
117 |
+
ADJ#Adjective#Degree=Pos|Number=Plur
|
118 |
+
VERB#Verb#Aspect=Perf|VerbForm=Inf|Voice=Mid
|
119 |
+
DET#Pronoun#Animacy=Inan|Case=Acc|Gender=Fem|Number=Sing
|
120 |
+
VERB#Verb#Aspect=Perf|Mood=Ind|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin|Voice=Mid
|
121 |
+
PRON#Pronoun#Case=Nom|Number=Plur|Person=1
|
122 |
+
ADJ#Adjective#Animacy=Inan|Case=Acc|Degree=Pos|Number=Plur
|
123 |
+
VERB#Verb#Aspect=Perf|Mood=Ind|Number=Plur|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act
|
124 |
+
DET#Pronoun#Animacy=Inan|Case=Acc|Number=Plur
|
125 |
+
ADJ#Adjective#Case=Dat|Degree=Pos|Number=Plur
|
126 |
+
NUM#Numeral#Animacy=Inan|Case=Acc|Number=Sing
|
127 |
+
PROPN#Noun#Animacy=Anim|Case=Acc|Gender=Masc|Number=Sing
|
128 |
+
DET#Pronoun#Case=Dat|Number=Plur
|
129 |
+
ADJ#Adjective#Degree=Pos|Gender=Masc|Number=Sing
|
130 |
+
PRON#Pronoun#Case=Gen|Number=Plur
|
131 |
+
NOUN#Noun#Animacy=Inan|Case=Ins|Gender=Masc|Number=Plur
|
132 |
+
PRON#_#Animacy=Inan|Case=Gen|Gender=Neut|Number=Sing
|
133 |
+
CCONJ#_#_
|
134 |
+
PRON#Pronoun#Animacy=Inan|Case=Gen|Gender=Neut|Number=Sing|Person=3
|
135 |
+
ADV#Predicative#Degree=Cmp
|
136 |
+
NUM#Numeral#Case=Gen|Number=Sing
|
137 |
+
PROPN#Noun#Animacy=Inan|Case=Acc|Gender=Fem|Number=Sing
|
138 |
+
NOUN#Noun#Animacy=Inan|Case=Dat|Gender=Masc|Number=Plur
|
139 |
+
ADJ#Adjective#Case=Loc|Degree=Pos|Gender=Neut|Number=Sing
|
140 |
+
NOUN#Noun#Animacy=Inan|Case=Dat|Number=Plur
|
141 |
+
NOUN#Noun#Animacy=Inan|Case=Ins|Gender=Fem|Number=Plur
|
142 |
+
DET#Pronoun#Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing
|
143 |
+
DET#Pronoun#Animacy=Inan|Case=Nom|Gender=Fem|Number=Sing
|
144 |
+
PRON#Pronoun#Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Person=1
|
145 |
+
VERB#Verb#Aspect=Imp|Mood=Ind|Number=Plur|Tense=Past|VerbForm=Fin|Voice=Mid
|
146 |
+
ADJ#Adjective#Case=Ins|Degree=Pos|Gender=Neut|Number=Sing
|
147 |
+
DET#Pronoun#Animacy=Inan|Case=Acc|Gender=Neut|Number=Sing
|
148 |
+
NOUN#Noun#Animacy=Anim|Case=Dat|Gender=Masc|Number=Sing
|
149 |
+
PRON#Pronoun#Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing
|
150 |
+
PROPN#Noun#Animacy=Anim|Case=Ins|Gender=Masc|Number=Sing
|
151 |
+
PROPN#Noun#Animacy=Anim|Case=Dat|Gender=Masc|Number=Sing
|
152 |
+
ADV#Adverb#_
|
153 |
+
PRON#Pronoun#Animacy=Inan|Case=Nom|Gender=Neut|Number=Sing
|
154 |
+
PROPN#Noun#Animacy=Inan|Case=Nom|Gender=Neut|Number=Sing
|
155 |
+
VERB#Verb#Aspect=Perf|Case=Gen|Number=Plur|Tense=Past|VerbForm=Part|Voice=Pass
|
156 |
+
PROPN#Noun#Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing
|
157 |
+
AUX#Verb#Aspect=Imp|Number=Plur|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act
|
158 |
+
NOUN#Noun#Animacy=Inan|Case=Loc|Gender=Neut|Number=Plur
|
159 |
+
VERB#Verb#Aspect=Perf|Mood=Ind|Number=Plur|Person=1|Tense=Fut|VerbForm=Fin|Voice=Act
|
160 |
+
VERB#Verb#Aspect=Imp|Tense=Pres|VerbForm=Conv|Voice=Act
|
161 |
+
NOUN#Noun#Animacy=Inan|Case=Dat|Gender=Fem|Number=Plur
|
162 |
+
NOUN#Noun#Animacy=Inan|Case=Gen|Number=Plur
|
163 |
+
NUM#Numeral#Case=Nom|Gender=Masc|Number=Sing
|
164 |
+
ADJ#Adjective#Degree=Pos|Gender=Fem|Number=Sing
|
165 |
+
ADJ#Adjective#Case=Dat|Degree=Pos|Gender=Fem|Number=Sing
|
166 |
+
VERB#Verb#Aspect=Perf|Case=Nom|Number=Sing|Tense=Past|VerbForm=Part|Voice=Pass
|
167 |
+
PRON#Pronoun#Animacy=Inan|Case=Acc|Gender=Neut|Number=Sing|Person=3
|
168 |
+
DET#Pronoun#Animacy=Inan|Case=Nom|Gender=Masc|Number=Sing
|
169 |
+
DET#Pronoun#Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing
|
170 |
+
DET#Pronoun#Animacy=Inan|Case=Gen|Gender=Fem|Number=Sing
|
171 |
+
PART#_#_
|
172 |
+
ADJ#Adjective#Case=Dat|Degree=Pos|Gender=Masc|Number=Sing
|
173 |
+
PRON#Pronoun#Case=Gen|Number=Plur|Person=3
|
174 |
+
DET#Pronoun#Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing
|
175 |
+
NOUN#_#Animacy=Inan|Case=Acc|Gender=Neut|Number=Sing
|
176 |
+
PROPN#Noun#Animacy=Inan|Case=Dat|Gender=Masc|Number=Sing
|
177 |
+
VERB#Verb#Aspect=Perf|Case=Gen|Number=Sing|Tense=Past|VerbForm=Part|Voice=Pass
|
178 |
+
ADJ#Adjective#Degree=Pos|Gender=Neut|Number=Sing
|
179 |
+
PRON#Pronoun#Animacy=Inan|Case=Acc|Number=Plur
|
180 |
+
ADV#_#Degree=Pos
|
181 |
+
NUM#Numeral#Case=Nom|Number=Plur
|
182 |
+
NOUN#Noun#Animacy=Inan|Case=Acc|Number=Plur
|
183 |
+
PROPN#Noun#Animacy=Inan|Case=Nom|Gender=Fem|Number=Plur
|
184 |
+
VERB#Verb#Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act
|
185 |
+
PROPN#Noun#Animacy=Anim|Case=Gen|Number=Sing
|
186 |
+
DET#Pronoun#Animacy=Inan|Case=Nom|Gender=Neut|Number=Sing
|
187 |
+
VERB#Verb#Aspect=Perf|Tense=Past|VerbForm=Conv|Voice=Act
|
188 |
+
PRON#Pronoun#Animacy=Anim|Case=Nom|Gender=Fem|Number=Sing|Person=3
|
189 |
+
PRON#_#Animacy=Inan|Case=Loc|Gender=Neut|Number=Sing
|
190 |
+
VERB#Verb#Aspect=Imp|Mood=Ind|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act
|
191 |
+
SCONJ#_#_
|
192 |
+
ADJ#Adjective#Case=Dat|Degree=Pos|Gender=Neut|Number=Sing
|
193 |
+
PRON#Pronoun#Case=Nom|Gender=Masc|Number=Sing
|
194 |
+
_#_#_
|
195 |
+
NOUN#Noun#Animacy=Anim|Case=Gen|Gender=Fem|Number=Sing
|
196 |
+
_#Numeral#_
|
197 |
+
PRON#Pronoun#Animacy=Anim|Case=Acc|Gender=Masc|Number=Sing|Person=3
|
198 |
+
NOUN#Noun#Animacy=Inan|Case=Nom|Number=Plur
|
199 |
+
NOUN#Noun#Animacy=Inan|Case=Ins|Gender=Neut|Number=Plur
|
200 |
+
ADJ#Numeral#Case=Nom|Degree=Pos|Gender=Masc|Number=Sing
|
201 |
+
PRON#_#Animacy=Inan|Case=Ins|Gender=Neut|Number=Sing
|
202 |
+
PROPN#Noun#Animacy=Inan|Case=Gen|Gender=Neut|Number=Sing
|
203 |
+
DET#Pronoun#Animacy=Inan|Case=Loc|Gender=Fem|Number=Sing
|
204 |
+
VERB#Verb#Aspect=Imp|Mood=Ind|Number=Plur|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act
|
205 |
+
VERB#Verb#Aspect=Perf|Case=Nom|Number=Plur|Tense=Past|VerbForm=Part|Voice=Pass
|
206 |
+
PRON#Pronoun#Animacy=Anim|Case=Dat|Gender=Masc|Number=Sing|Person=3
|
207 |
+
DET#Pronoun#Animacy=Inan|Case=Gen|Gender=Neut|Number=Sing
|
208 |
+
NOUN#_#Animacy=Inan|Case=Loc|Gender=Neut|Number=Sing
|
209 |
+
VERB#Verb#Aspect=Perf|Case=Gen|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act
|
210 |
+
PRON#Pronoun#Animacy=Inan|Case=Acc|Gender=Neut|Number=Sing
|
211 |
+
VERB#Verb#Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act
|
212 |
+
PROPN#Noun#Animacy=Inan|Case=Ins|Gender=Fem|Number=Sing
|
213 |
+
NOUN#_#Animacy=Inan|Case=Loc|Gender=Fem|Number=Sing
|
214 |
+
NOUN#Noun#Animacy=Anim|Case=Gen|Gender=Fem|Number=Plur
|
215 |
+
DET#Pronoun#Case=Loc|Number=Plur
|
216 |
+
PROPN#Noun#Animacy=Inan|Case=Ins|Gender=Masc|Number=Sing
|
217 |
+
ADV#_#Degree=Cmp
|
218 |
+
PROPN#Noun#Animacy=Inan|Case=Dat|Gender=Fem|Number=Sing
|
219 |
+
NOUN#Noun#Abbr=Yes
|
220 |
+
VERB#Verb#Aspect=Imp|Case=Gen|Number=Plur|Tense=Pres|VerbForm=Part|Voice=Act
|
221 |
+
PRON#Pronoun#Case=Nom|Gender=Fem|Number=Sing
|
222 |
+
VERB#Verb#Aspect=Perf|Mood=Ind|Number=Plur|Person=3|Tense=Fut|VerbForm=Fin|Voice=Mid
|
223 |
+
PRON#Pronoun#Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Person=3
|
224 |
+
VERB#Verb#Aspect=Perf|Case=Gen|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act
|
225 |
+
PRON#Pronoun#Animacy=Inan|Case=Nom|Gender=Masc|Number=Sing|Person=3
|
226 |
+
AUX#Particle#VerbForm=Fin
|
227 |
+
NUM#Numeral#Animacy=Anim|Number=Plur
|
228 |
+
DET#Pronoun#Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing
|
229 |
+
ADJ#Adjective#Degree=Cmp|Number=Plur
|
230 |
+
PRON#Pronoun#Case=Dat|Number=Plur|Person=3
|
231 |
+
VERB#Verb#Aspect=Imp|Case=Nom|Number=Sing|Tense=Pres|VerbForm=Part|Voice=Act
|
232 |
+
NOUN#Noun#Animacy=Anim|Case=Nom|Gender=Fem|Number=Plur
|
233 |
+
PROPN#Noun#Animacy=Anim|Case=Acc|Gender=Fem|Number=Sing
|
234 |
+
PRON#Pronoun#Animacy=Anim|Case=Acc|Number=Plur|Person=3
|
235 |
+
PRON#Pronoun#Case=Loc|Number=Plur
|
236 |
+
ADJ#Numeral#Case=Gen|Degree=Pos|Gender=Masc|Number=Sing
|
237 |
+
VERB#Verb#Aspect=Perf|Case=Nom|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act
|
238 |
+
NOUN#Noun#Animacy=Anim|Case=Acc|Gender=Fem|Number=Sing
|
239 |
+
VERB#Verb#Aspect=Perf|Case=Loc|Number=Sing|Tense=Past|VerbForm=Part|Voice=Pass
|
240 |
+
ADV#Invariable#Degree=Cmp
|
241 |
+
PRON#Pronoun#Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Neg
|
242 |
+
AUX#Verb#Aspect=Imp|VerbForm=Inf|Voice=Act
|
243 |
+
PRON#Pronoun#Animacy=Inan|Case=Acc|Number=Plur|Person=3
|
244 |
+
PRON#Pronoun#Animacy=Anim|Case=Dat|Gender=Masc|Number=Sing|Person=1
|
245 |
+
PRON#Pronoun#Animacy=Inan|Case=Nom|Gender=Fem|Number=Sing|Person=3
|
246 |
+
PRON#Pronoun#Animacy=Inan|Case=Ins|Gender=Neut|Number=Sing|Person=3
|
247 |
+
PRON#Pronoun#Animacy=Inan|Case=Gen|Gender=Neut|Number=Sing
|
248 |
+
ADJ#Numeral#Case=Loc|Degree=Pos|Gender=Masc|Number=Sing
|
249 |
+
DET#Pronoun#Case=Ins|Number=Plur
|
250 |
+
VERB#Verb#Aspect=Perf|Case=Ins|Number=Sing|Tense=Past|VerbForm=Part|Voice=Pass
|
251 |
+
NOUN#_#Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing
|
252 |
+
ADJ#Adjective#Animacy=Anim|Case=Acc|Degree=Pos|Gender=Masc|Number=Sing
|
253 |
+
VERB#Verb#Aspect=Imp|Case=Nom|Number=Plur|Tense=Pres|VerbForm=Part|Voice=Act
|
254 |
+
PRON#Pronoun#Animacy=Inan|Case=Acc|Gender=Fem|Number=Sing|Person=3
|
255 |
+
PRON#Pronoun#Case=Acc|Gender=Masc
|
256 |
+
PRON#Pronoun#Animacy=Anim|Case=Gen|Gender=Masc|Number=Sing|Person=3
|
257 |
+
PRON#Pronoun#Case=Dat|Number=Plur
|
258 |
+
NUM#Numeral#Case=Nom|Gender=Fem|Number=Sing
|
259 |
+
PRON#Pronoun#Animacy=Inan|Case=Nom|Gender=Fem|Number=Sing
|
260 |
+
PROPN#Noun#Animacy=Inan|Case=Loc|Gender=Neut|Number=Sing
|
261 |
+
ADJ#Numeral#Case=Acc|Degree=Pos|Gender=Neut|Number=Sing
|
262 |
+
NOUN#Noun#Animacy=Anim|Case=Ins|Gender=Fem|Number=Sing
|
263 |
+
PRON#Pronoun#Animacy=Anim|Case=Ins|Gender=Masc|Number=Sing|Person=3
|
264 |
+
DET#_#Case=Loc|Gender=Neut|Number=Sing
|
265 |
+
ADJ#Adjective#Animacy=Anim|Case=Acc|Degree=Pos|Number=Plur
|
266 |
+
PROPN#Noun#Animacy=Anim|Case=Ins|Gender=Fem|Number=Sing
|
267 |
+
PRON#Pronoun#Case=Gen|Number=Plur|Person=1
|
268 |
+
DET#Pronoun#Animacy=Inan|Case=Dat|Gender=Masc|Number=Sing
|
269 |
+
DET#Pronoun#Animacy=Inan|Case=Loc|Gender=Neut|Number=Sing
|
270 |
+
DET#Pronoun#Case=Gen|Number=Plur|Polarity=Neg
|
271 |
+
PRON#Pronoun#Animacy=Inan|Case=Nom|Gender=Masc|Number=Sing
|
272 |
+
PRON#Pronoun#Case=Dat|Number=Plur|Person=1
|
273 |
+
ADJ#Numeral#Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Number=Sing
|
274 |
+
DET#Pronoun#Animacy=Anim|Case=Acc|Number=Plur
|
275 |
+
NUM#Numeral#Case=Loc|Number=Sing
|
276 |
+
VERB#Verb#Aspect=Imp|Case=Acc|Number=Sing|Tense=Pres|VerbForm=Part|Voice=Act
|
277 |
+
DET#Pronoun#Animacy=Inan|Case=Dat|Gender=Neut|Number=Sing
|
278 |
+
DET#Pronoun#Animacy=Inan|Case=Dat|Gender=Fem|Number=Sing
|
279 |
+
VERB#Verb#Aspect=Imp|Case=Gen|Number=Sing|Tense=Pres|VerbForm=Part|Voice=Act
|
280 |
+
PRON#Pronoun#Case=Ins|Number=Plur
|
281 |
+
PRON#Pronoun#Animacy=Inan|Case=Gen|Gender=Neut|Number=Sing|Polarity=Neg
|
282 |
+
NOUN#Noun#Animacy=Inan|Case=Loc|Number=Plur
|
283 |
+
PROPN#Noun#Animacy=Inan|Case=Dat|Gender=Neut|Number=Sing
|
284 |
+
PRON#Pronoun#Case=Gen|Gender=Masc|Number=Sing
|
285 |
+
ADJ#Numeral#Case=Nom|Degree=Pos|Gender=Fem|Number=Sing
|
286 |
+
DET#Pronoun#Animacy=Inan|Case=Ins|Gender=Fem|Number=Sing
|
287 |
+
PROPN#Prefixoid#_
|
288 |
+
VERB#Verb#Aspect=Perf|Case=Acc|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act
|
289 |
+
NUM#Numeral#Case=Gen|Gender=Masc|Number=Sing
|
290 |
+
VERB#Verb#Aspect=Perf|Case=Ins|Number=Plur|Tense=Past|VerbForm=Part|Voice=Pass
|
291 |
+
VERB#Verb#Aspect=Imp|Case=Nom|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act
|
292 |
+
NOUN#_#Animacy=Inan|Case=Ins|Gender=Masc|Number=Sing
|
293 |
+
PRON#Pronoun#Case=Acc|Number=Plur
|
294 |
+
PRON#Pronoun#Case=Acc|Gender=Masc|Number=Sing
|
295 |
+
PRON#Pronoun#Case=Nom|Number=Plur|Person=2
|
296 |
+
ADJ#Numeral#Case=Ins|Degree=Pos|Gender=Masc|Number=Sing
|
297 |
+
PROPN#Noun#Animacy=Anim|Case=Dat|Gender=Fem|Number=Sing
|
298 |
+
ADV#Adverb#Foreign=Yes
|
299 |
+
ADJ#Adjective#Case=Acc|Degree=Sup|Gender=Neut|Number=Sing
|
300 |
+
ADJ#_#Case=Loc|Degree=Pos|Gender=Neut|Number=Sing
|
301 |
+
NOUN#Noun#Animacy=Anim|Case=Loc|Gender=Masc|Number=Plur
|
302 |
+
VERB#Verb#Aspect=Imp|Tense=Pres|VerbForm=Conv|Voice=Mid
|
303 |
+
NUM#Numeral#Case=Ins|Gender=Masc|Number=Sing
|
304 |
+
PRON#Pronoun#Animacy=Anim|Case=Dat|Gender=Fem|Number=Sing|Person=3
|
305 |
+
PRON#Pronoun#Animacy=Anim|Case=Acc|Number=Plur
|
306 |
+
VERB#Verb#Aspect=Perf|Case=Dat|Number=Sing|Tense=Past|VerbForm=Part|Voice=Pass
|
307 |
+
ADJ#Adjective#Case=Gen|Degree=Sup|Number=Plur
|
308 |
+
VERB#Verb#Aspect=Perf|Case=Nom|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act
|
309 |
+
DET#_#Case=Ins|Gender=Masc|Number=Sing
|
310 |
+
PRON#Pronoun#Animacy=Anim|Case=Acc|Gender=Fem|Number=Sing|Person=3
|
311 |
+
NOUN#Noun#Animacy=Anim|Case=Nom|Number=Sing
|
312 |
+
PRON#Pronoun#Animacy=Inan|Case=Acc|Gender=Fem|Number=Sing
|
313 |
+
PRON#Pronoun#Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing
|
314 |
+
ADJ#Numeral#Case=Loc|Degree=Pos|Gender=Fem|Number=Sing
|
315 |
+
ADP#Preposition#Polarity=Neg
|
316 |
+
PRON#Pronoun#Animacy=Inan|Case=Gen|Gender=Fem|Number=Sing
|
317 |
+
NOUN#_#Animacy=Inan|Case=Dat|Gender=Fem|Number=Sing
|
318 |
+
NUM#Numeral#Case=Gen|Gender=Fem|Number=Sing
|
319 |
+
ADJ#Numeral#Case=Gen|Degree=Pos|Number=Plur
|
320 |
+
DET#Pronoun#Animacy=Anim|Case=Gen|Gender=Masc|Number=Sing
|
321 |
+
NUM#Numeral#Animacy=Anim|Case=Acc|Number=Plur
|
322 |
+
PRON#Pronoun#Case=Acc|Gender=Fem|Number=Sing
|
323 |
+
NOUN#Noun#Animacy=Inan|Gender=Masc|Number=Sing
|
324 |
+
PRON#Pronoun#Animacy=Inan|Case=Ins|Gender=Masc|Number=Sing
|
325 |
+
ADJ#Numeral#Case=Acc|Degree=Pos|Gender=Fem|Number=Sing
|
326 |
+
CCONJ#Conjunction#Polarity=Neg
|
327 |
+
PROPN#Noun#Animacy=Anim|Case=Acc|Number=Sing
|
328 |
+
ADJ#Numeral#Case=Loc|Degree=Pos|Gender=Neut|Number=Sing
|
329 |
+
PRON#Pronoun#Animacy=Inan|Case=Dat|Gender=Neut|Number=Sing|Person=3
|
330 |
+
PRON#Pronoun#Case=Ins|Number=Plur|Person=3
|
331 |
+
PROPN#Noun#Animacy=Anim|Case=Ins|Number=Sing
|
332 |
+
NOUN#Noun#Animacy=Anim|Case=Dat|Gender=Fem|Number=Sing
|
333 |
+
VERB#Verb#Aspect=Imp|Case=Ins|Number=Sing|Tense=Pres|VerbForm=Part|Voice=Act
|
334 |
+
VERB#Verb#Aspect=Perf|Tense=Past|VerbForm=Conv|Voice=Mid
|
335 |
+
VERB#Verb#Aspect=Imp|Mood=Cnd|Number=Sing|Tense=Past|VerbForm=Fin|Voice=Act
|
336 |
+
ADJ#Numeral#Case=Gen|Degree=Pos|Gender=Fem|Number=Sing
|
337 |
+
NOUN#_#Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing
|
338 |
+
PROPN#Noun#Animacy=Anim|Case=Dat|Number=Sing
|
339 |
+
ADJ#Numeral#Case=Nom|Degree=Pos|Gender=Neut|Number=Sing
|
340 |
+
PRON#Pronoun#Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing
|
341 |
+
ADV#Adverb#Polarity=Neg
|
342 |
+
DET#Pronoun#Animacy=Inan|Case=Ins|Gender=Masc|Number=Sing
|
343 |
+
PRON#Pronoun#Case=Loc|Gender=Masc|Number=Sing
|
344 |
+
PRON#Pronoun#Animacy=Anim|Case=Ins|Gender=Masc|Number=Sing
|
345 |
+
PRON#Pronoun#Case=Gen|Gender=Fem|Number=Sing
|
346 |
+
PRON#Pronoun#Animacy=Anim|Case=Acc|Number=Plur|Person=1
|
347 |
+
PRON#Pronoun#Animacy=Anim|Case=Dat|Gender=Masc|Number=Sing
|
348 |
+
VERB#Verb#Aspect=Imp|Case=Acc|Number=Plur|Tense=Pres|VerbForm=Part|Voice=Act
|
349 |
+
DET#Pronoun#Case=Acc|Number=Plur
|
350 |
+
DET#Pronoun#Animacy=Inan|Case=Ins|Gender=Neut|Number=Sing
|
351 |
+
PRON#Pronoun#Animacy=Anim|Case=Nom|Gender=Fem|Number=Sing|Person=1
|
352 |
+
PRON#Pronoun#Animacy=Inan|Case=Loc|Gender=Neut|Number=Sing
|
353 |
+
PROPN#Noun#Animacy=Inan|Case=Nom|Number=Sing
|
354 |
+
VERB#Verb#Aspect=Perf|Case=Gen|Number=Sing|Tense=Past|VerbForm=Part|Voice=Mid
|
355 |
+
NUM#Numeral#Case=Loc|Gender=Masc|Number=Sing
|
356 |
+
NUM#Numeral#Case=Dat|Number=Sing
|
357 |
+
PRON#Pronoun#Case=Nom|Gender=Neut|Number=Sing
|
358 |
+
PRON#Pronoun#Case=Loc|Gender=Fem|Number=Sing
|
359 |
+
DET#Pronoun#Animacy=Anim|Case=Acc|Gender=Masc|Number=Sing
|
360 |
+
PRON#Pronoun#Animacy=Anim|Case=Gen|Gender=Masc|Number=Sing
|
361 |
+
PRON#Pronoun#Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Person=3
|
362 |
+
PROPN#Noun#Animacy=Anim|Case=Loc|Gender=Fem|Number=Sing
|
363 |
+
VERB#Verb#Aspect=Imp|Mood=Ind|Number=Plur|Person=2|Tense=Pres|VerbForm=Fin|Voice=Act
|
364 |
+
PART#_#Polarity=Neg
|
365 |
+
VERB#Verb#Aspect=Imp|Mood=Ind|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin|Voice=Mid
|
366 |
+
NUM#Numeral#Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing
|
367 |
+
DET#Pronoun#Animacy=Anim|Case=Ins|Gender=Masc|Number=Sing
|
368 |
+
PRON#Pronoun#Animacy=Anim|Case=Acc|Gender=Masc|Number=Sing
|
369 |
+
PRON#Pronoun#Animacy=Anim|Case=Gen|Gender=Masc|Number=Sing|Person=1
|
370 |
+
VERB#Verb#Aspect=Imp|Case=Gen|Number=Plur|Tense=Pres|VerbForm=Part|Voice=Pass
|
371 |
+
ADJ#Numeral#Foreign=Yes
|
372 |
+
PROPN#Noun#Animacy=Anim|Case=Loc|Gender=Masc|Number=Sing
|
373 |
+
NUM#Numeral#Animacy=Anim|Case=Acc|Number=Sing
|
374 |
+
PRON#Pronoun#Animacy=Anim|Case=Acc|Gender=Masc|Number=Sing|Person=1
|
375 |
+
AUX#Verb#Aspect=Imp|Number=Plur|Person=1|Tense=Fut|VerbForm=Fin|Voice=Act
|
376 |
+
NUM#Numeral#Animacy=Inan|Case=Acc|Gender=Fem|Number=Sing
|
377 |
+
ADJ#Adjective#Case=Ins|Degree=Sup|Gender=Masc|Number=Sing
|
378 |
+
NUM#Numeral#Case=Ins|Number=Sing
|
379 |
+
NOUN#_#Animacy=Inan|Case=Acc|Gender=Fem|Number=Sing
|
380 |
+
PART#Invariable#_
|
381 |
+
PRON#Pronoun#Animacy=Inan|Case=Ins|Gender=Neut|Number=Sing
|
382 |
+
VERB#_#Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act
|
383 |
+
VERB#Verb#Aspect=Perf|Case=Loc|Number=Plur|Tense=Past|VerbForm=Part|Voice=Pass
|
384 |
+
ADJ#Adjective#Case=Nom|Degree=Sup|Gender=Masc|Number=Sing
|
385 |
+
ADV#Adjective#Degree=Pos
|
386 |
+
VERB#Verb#Aspect=Imp|Case=Gen|Number=Sing|Tense=Pres|VerbForm=Part|Voice=Pass
|
387 |
+
VERB#Verb#Aspect=Imp|Case=Nom|Number=Sing|Tense=Pres|VerbForm=Part|Voice=Mid
|
388 |
+
VERB#Verb#Aspect=Perf|Case=Acc|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act
|
389 |
+
ADJ#Numeral#Case=Nom|Degree=Pos|Number=Plur
|
390 |
+
PROPN#Noun#Animacy=Inan|Case=Loc|Gender=Fem|Number=Plur
|
391 |
+
DET#Pronoun#Animacy=Anim|Case=Nom|Gender=Fem|Number=Sing
|
392 |
+
VERB#Verb#Aspect=Imp|Mood=Ind|Number=Plur|Person=1|Tense=Pres|VerbForm=Fin|Voice=Mid
|
393 |
+
NOUN#Noun#Animacy=Anim|Case=Nom|Number=Plur
|
394 |
+
NOUN#Noun#Animacy=Inan|Case=Ins|Number=Plur
|
395 |
+
PROPN#Noun#Animacy=Inan|Case=Loc|Number=Plur
|
396 |
+
VERB#Verb#Aspect=Imp|Case=Nom|Number=Sing|Tense=Pres|VerbForm=Part|Voice=Pass
|
397 |
+
VERB#Verb#Aspect=Imp|Case=Nom|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act
|
398 |
+
PRON#Pronoun#Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing
|
399 |
+
INTJ#Interjection#_
|
400 |
+
VERB#Verb#Aspect=Imp|Case=Gen|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act
|
401 |
+
NOUN#Noun#Animacy=Anim|Case=Gen|Gender=Neut|Number=Plur
|
402 |
+
VERB#Verb#Aspect=Perf|Case=Dat|Number=Plur|Tense=Past|VerbForm=Part|Voice=Pass
|
403 |
+
VERB#Verb#Aspect=Perf|Case=Ins|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act
|
404 |
+
PRON#Pronoun#Case=Acc|Gender=Fem
|
405 |
+
NOUN#Noun#Animacy=Anim|Case=Acc|Gender=Fem|Number=Plur
|
406 |
+
NUM#Numeral#Case=Loc|Gender=Fem|Number=Sing
|
407 |
+
ADJ#_#Case=Dat|Degree=Pos|Gender=Fem|Number=Sing
|
408 |
+
VERB#Verb#Aspect=Imp|Case=Gen|Number=Plur|Tense=Pres|VerbForm=Part|Voice=Mid
|
409 |
+
VERB#Verb#Aspect=Perf|Mood=Ind|Number=Sing|Person=1|Tense=Fut|VerbForm=Fin|Voice=Act
|
410 |
+
NUM#Numeral#Case=Nom|Gender=Neut|Number=Sing
|
411 |
+
VERB#Verb#Aspect=Perf|Case=Nom|Number=Sing|Tense=Past|VerbForm=Part|Voice=Mid
|
412 |
+
ADJ#_#Case=Ins|Degree=Pos|Gender=Fem|Number=Sing
|
413 |
+
PRON#Pronoun#Animacy=Inan|Case=Loc|Gender=Fem|Number=Sing|Person=3
|
414 |
+
NOUN#Noun#Animacy=Anim|Case=Loc|Gender=Masc|Number=Sing
|
415 |
+
VERB#Verb#Aspect=Perf|Mood=Imp|Number=Plur|Person=2|Tense=Fut|VerbForm=['GTImperative']|Voice=Act
|
416 |
+
ADJ#_#Animacy=Inan|Case=Acc|Gender=Fem|Number=Sing
|
417 |
+
PRON#Pronoun#Animacy=Anim|Case=Nom|Gender=Fem|Number=Sing
|
418 |
+
PRON#Pronoun#Case=Loc|Number=Plur|Person=3
|
419 |
+
PRON#Pronoun#Case=Dat|Gender=Masc
|
420 |
+
DET#Pronoun#Case=Acc|Gender=Neut|Number=Sing
|
421 |
+
NOUN#Noun#Animacy=Anim|Case=Ins|Gender=Fem|Number=Plur
|
422 |
+
ADJ#Numeral#Case=Ins|Degree=Pos|Gender=Fem|Number=Sing
|
423 |
+
NOUN#Noun#Animacy=Anim|Case=Gen|Number=Plur
|
424 |
+
NUM#Numeral#Animacy=Anim|Case=Acc|Gender=Masc|Number=Sing
|
425 |
+
PRON#Pronoun#Case=Ins|Gender=Masc
|
426 |
+
ADJ#_#Case=Loc|Degree=Pos|Gender=Masc|Number=Sing
|
427 |
+
PRON#_#Animacy=Inan|Case=Dat|Gender=Neut|Number=Sing
|
428 |
+
ADV#Predicative#Degree=Pos
|
429 |
+
PROPN#Noun#Animacy=Inan|Case=Gen|Number=Plur
|
430 |
+
VERB#Verb#Aspect=Perf|Case=Nom|Number=Plur|Tense=Past|VerbForm=Part|Voice=Mid
|
431 |
+
PROPN#Noun#Animacy=Anim|Case=Gen|Gender=Masc|Number=Plur
|
432 |
+
ADJ#Adjective#Animacy=Inan|Case=Acc|Degree=Sup|Number=Plur
|
433 |
+
PROPN#Noun#Animacy=Inan|Case=Nom|Number=Plur
|
434 |
+
ADJ#Numeral#Case=Gen|Degree=Pos|Gender=Neut|Number=Sing
|
435 |
+
VERB#Verb#Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act
|
436 |
+
VERB#Verb#Aspect=Perf|Case=Loc|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act
|
437 |
+
DET#_#Case=Ins|Gender=Neut|Number=Sing
|
438 |
+
NOUN#_#Animacy=Inan|Case=Ins|Gender=Neut|Number=Sing
|
439 |
+
PROPN#Noun#Animacy=Inan|Case=Acc|Gender=Neut|Number=Sing
|
440 |
+
PROPN#Noun#Animacy=Inan|Case=Ins|Gender=Neut|Number=Sing
|
441 |
+
VERB#Verb#Aspect=Imp|Case=Ins|Number=Plur|Tense=Pres|VerbForm=Part|Voice=Act
|
442 |
+
NOUN#_#Animacy=Inan|Case=Loc|Gender=Masc|Number=Plur
|
443 |
+
VERB#Verb#Aspect=Perf|Case=Ins|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act
|
444 |
+
PRON#Pronoun#Animacy=Inan|Case=Ins|Gender=Fem|Number=Sing
|
445 |
+
PROPN#Noun#Animacy=Inan|Case=Gen|Gender=Fem|Number=Plur
|
446 |
+
PRON#Pronoun#Animacy=Inan|Case=Loc|Gender=Fem|Number=Sing
|
447 |
+
VERB#Verb#Aspect=Perf|Case=Loc|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act
|
448 |
+
NUM#Numeral#Case=Dat|Gender=Masc|Number=Sing
|
449 |
+
ADV#Adverb#Degree=Pos|Polarity=Neg
|
450 |
+
PRON#Pronoun#Case=Ins|Gender=Masc|Number=Sing
|
451 |
+
PRON#Pronoun#Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Person=3
|
452 |
+
ADJ#Numeral#Animacy=Inan|Case=Acc|Degree=Pos|Number=Plur
|
453 |
+
VERB#Verb#Aspect=Imp|Mood=Cnd|Number=Plur|Tense=Past|VerbForm=Fin|Voice=Act
|
454 |
+
NUM#Numeral#Case=Gen|Number=Plur
|
455 |
+
VERB#Verb#Aspect=Perf|Mood=Cnd|Number=Sing|Tense=Past|VerbForm=Fin|Voice=Act
|
456 |
+
VERB#Verb#Aspect=Imp|Case=Gen|Number=Sing|Tense=Pres|VerbForm=Part|Voice=Mid
|
457 |
+
PROPN#Noun#Animacy=Anim|Case=Gen|Gender=Fem|Number=Plur
|
458 |
+
VERB#Verb#Aspect=Imp|Case=Nom|Number=Plur|Tense=Pres|VerbForm=Part|Voice=Pass
|
459 |
+
VERB#Verb#Aspect=Perf|Case=Gen|Number=Plur|Tense=Past|VerbForm=Part|Voice=Mid
|
460 |
+
VERB#Verb#Aspect=Imp|Case=Dat|Number=Sing|Tense=Pres|VerbForm=Part|Voice=Act
|
461 |
+
VERB#Verb#Aspect=Imp|Case=Gen|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act
|
462 |
+
VERB#Verb#Aspect=Perf|Case=Acc|Number=Sing|Tense=Past|VerbForm=Part|Voice=Mid
|
463 |
+
PRON#_#Animacy=Inan|Case=Nom|Gender=Neut|Number=Sing
|
464 |
+
NOUN#Noun#Animacy=Anim|Case=Gen|Number=Sing
|
465 |
+
VERB#Verb#Aspect=Imp|Case=Loc|Number=Sing|Tense=Pres|VerbForm=Part|Voice=Act
|
466 |
+
PRON#Pronoun#Case=Loc|Gender=Neut|Number=Sing
|
467 |
+
NUM#Numeral#Case=Ins|Gender=Fem|Number=Sing
|
468 |
+
PRON#Pronoun#Case=Nom|Gender=Masc
|
469 |
+
PRON#Pronoun#Case=Gen|Gender=Masc
|
470 |
+
VERB#Verb#Aspect=Imp|Case=Nom|Number=Plur|Tense=Past|VerbForm=Part|Voice=Mid
|
471 |
+
PRON#Pronoun#Animacy=Anim|Case=Acc|Number=Plur|Person=2
|
472 |
+
PRON#Pronoun#Animacy=Inan|Case=Dat|Gender=Masc|Number=Sing|Person=3
|
473 |
+
PRON#Pronoun#Case=Dat|Gender=Masc|Number=Sing
|
474 |
+
ADJ#Adjective#Case=Nom|Degree=Sup|Gender=Fem|Number=Sing
|
475 |
+
ADJ#Numeral#Case=Ins|Degree=Pos|Number=Plur
|
476 |
+
ADJ#Adjective#Case=Gen|Degree=Sup|Gender=Masc|Number=Sing
|
477 |
+
DET#Pronoun#Case=Acc|Gender=Masc|Number=Sing
|
478 |
+
ADJ#Adjective#Animacy=Inan|Case=Acc|Degree=Sup|Gender=Masc|Number=Sing
|
479 |
+
ADJ#Numeral#Case=Loc|Degree=Pos|Number=Plur
|
480 |
+
PRON#Pronoun#Case=Dat|Number=Plur|Person=2
|
481 |
+
PRON#Pronoun#Animacy=Inan|Case=Ins|Gender=Masc|Number=Sing|Person=3
|
482 |
+
VERB#Verb#Aspect=Perf|Case=Loc|Number=Sing|Tense=Past|VerbForm=Part|Voice=Mid
|
483 |
+
VERB#Verb#Aspect=Imp|Case=Dat|Number=Plur|Tense=Pres|VerbForm=Part|Voice=Act
|
484 |
+
VERB#Verb#Aspect=Perf|Case=Dat|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act
|
485 |
+
PROPN#Noun#Animacy=Anim|Case=Nom|Gender=Masc|Number=Plur
|
486 |
+
ADV#Noun#_
|
487 |
+
NUM#Numeral#Case=Dat|Number=Plur
|
488 |
+
VERB#Verb#Aspect=Imp|Case=Acc|Number=Sing|Tense=Pres|VerbForm=Part|Voice=Pass
|
489 |
+
NOUN#_#Animacy=Inan|Case=Dat|Gender=Masc|Number=Sing
|
490 |
+
PROPN#Noun#Animacy=Inan|Case=Nom|Gender=Masc|Number=Plur
|
491 |
+
VERB#Verb#Aspect=Imp|Mood=Imp|Number=Plur|Person=2|Tense=Fut|VerbForm=['GTImperative']|Voice=Act
|
492 |
+
VERB#Verb#Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act
|
493 |
+
AUX#_#Aspect=Imp|VerbForm=Inf|Voice=Act
|
494 |
+
DET#Pronoun#Case=Nom|Gender=Fem|Number=Sing
|
495 |
+
ADJ#Adjective#Case=Ins|Degree=Sup|Gender=Fem|Number=Sing
|
496 |
+
PRON#Pronoun#Animacy=Anim|Case=Acc|Gender=Masc|Number=Sing|Polarity=Neg
|
497 |
+
NOUN#Noun#Animacy=Inan|Gender=Neut|Number=Sing
|
498 |
+
DET#Pronoun#Animacy=Anim|Case=Dat|Gender=Masc|Number=Sing
|
499 |
+
PROPN#Noun#Animacy=Inan|Case=Gen|Number=Sing
|
500 |
+
VERB#Verb#Aspect=Imp|Case=Gen|Number=Plur|Tense=Past|VerbForm=Part|Voice=Mid
|
501 |
+
ADJ#Numeral#Animacy=Anim|Case=Acc|Degree=Pos|Gender=Masc|Number=Sing
|
502 |
+
NOUN#Noun#Animacy=Inan|Gender=Fem|Number=Sing
|
503 |
+
VERB#Verb#Aspect=Perf|Case=Acc|Number=Plur|Tense=Past|VerbForm=Part|Voice=Mid
|
504 |
+
PRON#Pronoun#Case=Gen|Gender=Neut|Number=Sing
|
505 |
+
VERB#Verb#Aspect=Imp|Case=Nom|Number=Plur|Tense=Pres|VerbForm=Part|Voice=Mid
|
506 |
+
VERB#Verb#Aspect=Imp|Case=Acc|Number=Plur|Tense=Pres|VerbForm=Part|Voice=Pass
|
507 |
+
PRON#Pronoun#Case=Acc|Gender=Neut|Number=Sing
|
508 |
+
VERB#Verb#Aspect=Imp|Case=Acc|Number=Plur|Tense=Pres|VerbForm=Part|Voice=Mid
|
509 |
+
PRON#Pronoun#Animacy=Anim|Case=Gen|Gender=Fem|Number=Sing|Person=3
|
510 |
+
PRON#Pronoun#Animacy=Inan|Case=Gen|Gender=Fem|Number=Sing|Person=3
|
511 |
+
PRON#Pronoun#Animacy=Inan|Case=Dat|Gender=Fem|Number=Sing|Person=3
|
512 |
+
VERB#Verb#Aspect=Imp|Case=Acc|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act
|
513 |
+
VERB#Verb#Aspect=Imp|Case=Acc|Number=Sing|Tense=Pres|VerbForm=Part|Voice=Mid
|
514 |
+
NUM#Numeral#Animacy=Inan|Case=Acc|Gender=Neut|Number=Sing
|
515 |
+
VERB#_#Aspect=Imp|Tense=Pres|VerbForm=Conv|Voice=Act
|
516 |
+
PROPN#Invariable#Foreign=Yes
|
517 |
+
PROPN#Noun#Animacy=Anim|Case=Nom|Gender=Fem|Number=Plur
|
518 |
+
VERB#Verb#Aspect=Perf|Mood=Cnd|Number=Plur|Tense=Past|VerbForm=Fin|Voice=Act
|
519 |
+
PROPN#Noun#Animacy=Inan|Gender=Masc|Number=Sing
|
520 |
+
ADJ#Numeral#Case=Ins|Degree=Pos|Gender=Neut|Number=Sing
|
521 |
+
VERB#Invariable#Mood=Ind|VerbForm=Fin
|
522 |
+
ADJ#Adjective#Case=Loc|Degree=Sup|Gender=Neut|Number=Sing
|
523 |
+
DET#Pronoun#Case=Gen|Gender=Neut|Number=Sing|Polarity=Neg
|
524 |
+
PRON#Pronoun#Case=Dat|Gender=Fem|Number=Sing
|
525 |
+
ADJ#Adjective#Case=Nom|Degree=Sup|Number=Plur
|
526 |
+
PRON#Pronoun#Case=Gen|Number=Plur|Person=2
|
527 |
+
DET#Pronoun#Case=Gen|Gender=Fem|Number=Sing|Polarity=Neg
|
528 |
+
NOUN#Noun#Animacy=Anim|Case=Gen|Gender=Neut|Number=Sing
|
529 |
+
VERB#Verb#Aspect=Imp|Case=Ins|Number=Sing|Tense=Pres|VerbForm=Part|Voice=Pass
|
530 |
+
DET#Pronoun#Animacy=Anim|Case=Acc|Gender=Fem|Number=Sing
|
531 |
+
PRON#Pronoun#Animacy=Inan|Case=Dat|Gender=Masc|Number=Sing
|
532 |
+
NUM#Numeral#Case=Dat|Gender=Fem|Number=Sing
|
533 |
+
NOUN#Noun#Animacy=Anim|Case=Dat|Gender=Fem|Number=Plur
|
534 |
+
VERB#Verb#Aspect=Perf|Mood=Ind|Number=Plur|Person=1|Tense=Fut|VerbForm=Fin|Voice=Mid
|
535 |
+
VERB#Verb#Aspect=Imp|Case=Nom|Number=Sing|Tense=Past|VerbForm=Part|Voice=Mid
|
536 |
+
PROPN#Noun#Animacy=Inan|Case=Gen|Gender=Masc|Number=Plur
|
537 |
+
NOUN#_#Animacy=Inan|Case=Nom|Gender=Neut|Number=Sing
|
538 |
+
PRON#Pronoun#Animacy=Inan|Case=Ins|Gender=Fem|Number=Sing|Person=3
|
539 |
+
ADJ#Adjective#Case=Acc|Degree=Sup|Gender=Fem|Number=Sing
|
540 |
+
ADJ#Adjective#Case=Nom|Degree=Sup|Gender=Neut|Number=Sing
|
541 |
+
NOUN#Noun#Animacy=Anim|Case=Nom|Gender=Neut|Number=Plur
|
542 |
+
PRON#Pronoun#Case=Ins|Gender=Fem
|
543 |
+
NOUN#Noun#Animacy=Anim|Case=Acc|Gender=Neut|Number=Plur
|
544 |
+
PRON#Pronoun#Case=Ins|Number=Plur|Person=1
|
545 |
+
VERB#Verb#Aspect=Imp|Case=Acc|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act
|
546 |
+
NUM#Numeral#Case=Loc|Gender=Neut|Number=Sing
|
547 |
+
PROPN#Noun#Animacy=Inan|Case=Acc|Number=Plur
|
548 |
+
ADJ#Adjective#Case=Acc|Degree=Sup|Number=Plur
|
549 |
+
ADJ#_#Case=Ins|Degree=Pos|Gender=Neut|Number=Sing
|
550 |
+
DET#Pronoun#Case=Ins|Gender=Masc|Number=Sing
|
551 |
+
PRON#Pronoun#Case=Dat|Gender=Fem
|
552 |
+
DET#Pronoun#Case=Acc|Gender=Fem|Number=Sing
|
553 |
+
VERB#Verb#Aspect=Perf|Case=Ins|Number=Plur|Tense=Past|VerbForm=Part|Voice=Mid
|
554 |
+
VERB#Verb#Aspect=Imp|Mood=Ind|Number=Sing|Person=2|Tense=Pres|VerbForm=Fin|Voice=Act
|
555 |
+
PRON#Pronoun#Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Person=2
|
556 |
+
VERB#Verb#Aspect=Imp|Case=Loc|Number=Plur|Tense=Pres|VerbForm=Part|Voice=Mid
|
557 |
+
PRON#Pronoun#Animacy=Anim|Case=Acc|Gender=Fem|Number=Sing
|
558 |
+
AUX#Verb#Aspect=Imp|Number=Sing|Person=1|Tense=Fut|VerbForm=Fin|Voice=Act
|
559 |
+
DET#_#Case=Dat|Gender=Fem|Number=Sing
|
560 |
+
VERB#Verb#Aspect=Perf|Case=Dat|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act
|
561 |
+
NUM#Numeral#Case=Ins|Gender=Neut|Number=Sing
|
562 |
+
PRON#Pronoun#Case=Ins|Gender=Fem|Number=Sing
|
563 |
+
ADJ#Numeral#Case=Dat|Degree=Pos|Gender=Masc|Number=Sing
|
564 |
+
NUM#Numeral#Case=Gen|Gender=Neut|Number=Sing
|
565 |
+
DET#Pronoun#Animacy=Anim|Case=Gen|Gender=Fem|Number=Sing
|
566 |
+
NOUN#Noun#Animacy=Anim|Case=Acc|Number=Plur
|
567 |
+
DET#_#Animacy=Inan|Case=Acc|Gender=Neut|Number=Sing
|
568 |
+
VERB#Verb#Aspect=Imp|Case=Loc|Number=Sing|Tense=Pres|VerbForm=Part|Voice=Mid
|
569 |
+
ADJ#Numeral#Case=Dat|Degree=Pos|Gender=Fem|Number=Sing
|
570 |
+
VERB#Verb#Aspect=Imp|Case=Ins|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act
|
571 |
+
NOUN#Noun#Animacy=Anim|Case=Loc|Gender=Fem|Number=Sing
|
572 |
+
VERB#Verb#Aspect=Imp|Case=Gen|Number=Sing|Tense=Past|VerbForm=Part|Voice=Mid
|
573 |
+
NOUN#Noun#Animacy=Anim|Case=Ins|Number=Plur
|
574 |
+
VERB#Verb#Aspect=Perf|Mood=Imp|Number=Plur|Person=2|Tense=Fut|VerbForm=['GTImperative']|Voice=Mid
|
575 |
+
DET#Pronoun#Case=Loc|Gender=Fem|Number=Sing
|
576 |
+
VERB#Verb#Aspect=Perf|Number=Plur|Tense=Past|VerbForm=Part|Voice=Pass
|
577 |
+
AUX#Verb#Aspect=Imp|Mood=Imp|Number=Plur|Person=2|Tense=Fut|VerbForm=['GTImperative']|Voice=Act
|
578 |
+
VERB#Verb#Aspect=Imp|Case=Dat|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act
|
579 |
+
VERB#Verb#Aspect=Imp|Case=Dat|Number=Plur|Tense=Pres|VerbForm=Part|Voice=Mid
|
580 |
+
PRON#Pronoun#Case=Ins|Gender=Neut
|
581 |
+
PRON#Pronoun#Animacy=Inan|Case=Dat|Gender=Neut|Number=Sing
|
582 |
+
VERB#Verb#Aspect=Imp|Mood=Imp|Number=Sing|Person=2|Tense=Fut|VerbForm=['GTImperative']|Voice=Act
|
583 |
+
VERB#Verb#Aspect=Imp|Case=Loc|Number=Sing|Tense=Pres|VerbForm=Part|Voice=Pass
|
584 |
+
NOUN#Noun#Animacy=Anim|Case=Ins|Number=Sing
|
585 |
+
NOUN#Noun#Animacy=Anim|Case=Nom|Gender=Neut|Number=Sing
|
586 |
+
PRON#Pronoun#Animacy=Inan|Case=Dat|Gender=Fem|Number=Sing
|
587 |
+
DET#_#Case=Loc|Gender=Masc|Number=Sing
|
588 |
+
VERB#Verb#Aspect=Imp|Mood=Ind|Number=Plur|Person=2|Tense=Pres|VerbForm=Fin|Voice=Mid
|
589 |
+
NOUN#Noun#Animacy=Anim|Case=Dat|Number=Plur
|
590 |
+
DET#Pronoun#Case=Nom|Gender=Masc|Number=Sing
|
591 |
+
NOUN#Noun#Animacy=Anim|Case=Acc|Gender=Neut|Number=Sing
|
592 |
+
PRON#Pronoun#Animacy=Anim|Case=Ins|Gender=Fem|Number=Sing|Person=3
|
593 |
+
PRON#Pronoun#Animacy=Anim|Case=Ins|Gender=Fem|Number=Sing
|
594 |
+
ADJ#_#Case=Ins|Degree=Pos|Gender=Masc|Number=Sing
|
595 |
+
ADJ#Numeral#Case=Acc|Degree=Pos|Number=Plur
|
596 |
+
NOUN#_#Animacy=Inan|Case=Gen|Gender=Masc|Number=Plur
|
597 |
+
VERB#Verb#Aspect=Imp|Mood=Cnd|Number=Sing|Tense=Past|VerbForm=Fin|Voice=Mid
|
598 |
+
PRON#Pronoun#Case=Loc|Gender=Masc
|
599 |
+
VERB#Verb#Aspect=Imp|Case=Loc|Number=Plur|Tense=Pres|VerbForm=Part|Voice=Act
|
600 |
+
ADJ#Adjective#Case=Gen|Degree=Sup|Gender=Fem|Number=Sing
|
601 |
+
NOUN#Noun#Animacy=Anim|Case=Dat|Gender=Neut|Number=Plur
|
602 |
+
VERB#Verb#Aspect=Imp|Case=Ins|Number=Sing|Tense=Pres|VerbForm=Part|Voice=Mid
|
603 |
+
NOUN#Noun#Animacy=Inan|Case=Par|Gender=Masc|Number=Sing
|
604 |
+
NUM#Numeral#Foreign=Yes
|
605 |
+
VERB#Verb#Aspect=Perf|Case=Ins|Number=Sing|Tense=Past|VerbForm=Part|Voice=Mid
|
606 |
+
NUM#Numeral#Animacy=Inan|Case=Acc|Number=Plur
|
607 |
+
DET#Pronoun#Case=Nom|Gender=Neut|Number=Sing
|
608 |
+
PRON#Pronoun#Case=Ins|Number=Plur|Person=2
|
609 |
+
ADJ#Adjective#Case=Gen|Degree=Sup|Gender=Neut|Number=Sing
|
610 |
+
ADV#Verb#Degree=Cmp
|
611 |
+
ADV#Particle#_
|
612 |
+
ADJ#Adjective#Case=Loc|Degree=Sup|Gender=Fem|Number=Sing
|
613 |
+
PRON#Pronoun#Animacy=Anim|Case=Dat|Gender=Masc|Number=Sing|Polarity=Neg
|
614 |
+
VERB#Verb#Aspect=Imp|Case=Loc|Number=Plur|Tense=Pres|VerbForm=Part|Voice=Pass
|
615 |
+
PRON#Pronoun#Case=Dat|Gender=Neut|Number=Sing
|
616 |
+
VERB#Verb#Aspect=Perf|Mood=Cnd|Number=Sing|Tense=Past|VerbForm=Fin|Voice=Mid
|
617 |
+
VERB#Verb#Aspect=Perf|Mood=Ind|Number=Plur|Person=2|Tense=Fut|VerbForm=Fin|Voice=Act
|
618 |
+
ADJ#Adjective#Foreign=Yes
|
619 |
+
PRON#Pronoun#Animacy=Inan|Case=Ins|Gender=Neut|Number=Sing|Polarity=Neg
|
620 |
+
NOUN#_#Animacy=Inan|Case=Dat|Gender=Neut|Number=Sing
|
621 |
+
ADJ#Adjective#Case=Ins|Degree=Sup|Number=Plur
|
622 |
+
VERB#Verb#Aspect=Perf|Mood=Imp|Number=Sing|Person=2|Tense=Fut|VerbForm=['GTImperative']|Voice=Act
|
623 |
+
PRON#Pronoun#Animacy=Inan|Case=Nom|Gender=Neut|Number=Sing|Polarity=Neg
|
624 |
+
PRON#Pronoun#Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Person=3|Polarity=Neg
|
625 |
+
PRON#Pronoun#Animacy=Anim|Case=Ins|Gender=Masc|Number=Sing|Person=1
|
626 |
+
AUX#Verb#Aspect=Imp|Mood=Cnd|Number=Sing|Tense=Past|VerbForm=Fin|Voice=Act
|
627 |
+
DET#Pronoun#Animacy=Anim|Case=Ins|Gender=Fem|Number=Sing
|
628 |
+
DET#Pronoun#Case=Gen|Gender=Masc|Number=Sing|Polarity=Neg
|
629 |
+
PROPN#Noun#Animacy=Anim|Case=Loc|Number=Sing
|
630 |
+
VERB#Verb#Aspect=Perf|Case=Dat|Number=Plur|Tense=Past|VerbForm=Part|Voice=Mid
|
631 |
+
VERB#Verb#Aspect=Imp|Case=Dat|Number=Sing|Tense=Pres|VerbForm=Part|Voice=Mid
|
632 |
+
PRON#Pronoun#Animacy=Anim|Case=Loc|Gender=Masc|Number=Sing
|
633 |
+
ADJ#Numeral#Case=Dat|Degree=Pos|Gender=Neut|Number=Sing
|
634 |
+
PROPN#_#Animacy=Inan|Case=Nom|Gender=Masc|Number=Sing
|
635 |
+
PROPN#_#Foreign=Yes
|
636 |
+
PROPN#Noun#Animacy=Anim|Case=Nom|Number=Plur
|
637 |
+
PROPN#Noun#Animacy=Inan|Case=Gen|Gender=Neut|Number=Plur
|
638 |
+
W#Invariable#_
|
639 |
+
PROPN#Noun#Animacy=Inan|Case=Loc|Number=Sing
|
640 |
+
PROPN#Noun#Animacy=Anim|Case=Gen|Number=Plur
|
641 |
+
PRON#Pronoun#Animacy=Anim|Case=Loc|Gender=Masc|Number=Sing|Person=3
|
642 |
+
ADJ#_#Case=Nom|Degree=Pos|Gender=Neut|Number=Sing
|
643 |
+
NUM#Numeral#Animacy=Anim|Gender=Masc|Number=Sing
|
644 |
+
VERB#Verb#Aspect=Imp|Case=Acc|Number=Sing|Tense=Past|VerbForm=Part|Voice=Pass
|
645 |
+
PROPN#Noun#Animacy=Inan|Case=Loc|Gender=Masc|Number=Plur
|
646 |
+
VERB#Verb#Aspect=Imp|Case=Dat|Number=Sing|Tense=Pres|VerbForm=Part|Voice=Pass
|
647 |
+
VERB#Verb#Aspect=Perf|Mood=Ind|Number=Sing|Person=1|Tense=Fut|VerbForm=Fin|Voice=Mid
|
648 |
+
NOUN#Noun#Animacy=Anim|Case=Dat|Gender=Neut|Number=Sing
|
649 |
+
NOUN#Noun#Animacy=Anim|Case=Acc|Number=Sing
|
650 |
+
ADJ#Adjective#Case=Loc|Degree=Sup|Number=Plur
|
651 |
+
PROPN#Noun#Animacy=Inan|Case=Acc|Gender=Masc|Number=Plur
|
652 |
+
PRON#Pronoun#Case=Ins|Gender=Neut|Number=Sing
|
653 |
+
ADJ#_#Case=Gen|Degree=Pos|Gender=Neut|Number=Sing
|
654 |
+
DET#Pronoun#Case=Loc|Gender=Neut|Number=Sing
|
655 |
+
DET#Pronoun#Case=Gen|Gender=Masc|Number=Sing
|
656 |
+
VERB#Verb#Aspect=Imp|Case=Ins|Number=Plur|Tense=Pres|VerbForm=Part|Voice=Pass
|
657 |
+
PROPN#Noun#Animacy=Inan|Case=Dat|Number=Plur
|
658 |
+
PRON#Pronoun#Animacy=Anim|Case=Ins|Gender=Neut|Number=Sing
|
659 |
+
VERB#Verb#Aspect=Imp|Mood=Cnd|Number=Plur|Tense=Past|VerbForm=Fin|Voice=Mid
|
660 |
+
NOUN#Noun#Animacy=Anim|Case=Ins|Gender=Neut|Number=Sing
|
661 |
+
PRON#Pronoun#Animacy=Anim|Case=Dat|Gender=Masc|Number=Sing|Person=2
|
662 |
+
VERB#Verb#Aspect=Perf|Number=Sing|Tense=Past|VerbForm=Part|Voice=Pass
|
663 |
+
PRON#Pronoun#Case=Dat|Gender=Neut
|
664 |
+
NOUN#Noun#Animacy=Inan|Case=Nom|Number=Sing
|
665 |
+
NUM#Numeral#Animacy=Anim|Number=Sing
|
666 |
+
VERB#Verb#Aspect=Imp|Mood=Ind|Number=Plur|Tense=Pres|VerbForm=Fin|Voice=Act
|
667 |
+
DET#Pronoun#Animacy=Anim|Case=Dat|Gender=Fem|Number=Sing
|
668 |
+
VERB#Verb#Aspect=Imp|Case=Ins|Number=Plur|Tense=Pres|VerbForm=Part|Voice=Mid
|
669 |
+
VERB#Verb#Aspect=Imp|Case=Dat|Number=Plur|Tense=Pres|VerbForm=Part|Voice=Pass
|
670 |
+
VERB#Verb#Aspect=Perf|Mood=Ind|Number=Sing|Person=2|Tense=Fut|VerbForm=Fin|Voice=Act
|
671 |
+
DET#Pronoun#Case=Loc|Gender=Masc|Number=Sing
|
672 |
+
ADJ#Numeral#Case=Dat|Degree=Pos|Number=Plur
|
673 |
+
ADJ#_#Case=Ins|Degree=Pos|Number=Plur
|
674 |
+
NOUN#_#Animacy=Inan|Case=Ins|Gender=Neut|Number=Plur
|
675 |
+
DET#Pronoun#Case=Gen|Gender=Fem|Number=Sing
|
676 |
+
VERB#Verb#Aspect=Imp|Mood=Ind|Number=Sing|Person=1|Tense=Fut|VerbForm=Fin|Voice=Act
|
677 |
+
VERB#Verb#Aspect=Imp|Case=Acc|Number=Plur|Tense=Past|VerbForm=Part|Voice=Mid
|
678 |
+
DET#Pronoun#Animacy=Anim|Case=Loc|Gender=Masc|Number=Sing
|
679 |
+
VERB#Verb#Aspect=Imp|Number=Sing|Tense=Pres|VerbForm=Part|Voice=Pass
|
680 |
+
NUM#Numeral#Case=Loc|Number=Plur
|
681 |
+
NOUN#Noun#Animacy=Anim|Case=Dat|Number=Sing
|
682 |
+
PRON#Pronoun#Animacy=Anim|Case=Gen|Gender=Masc|Number=Sing|Polarity=Neg
|
683 |
+
PRON#Pronoun#Animacy=Anim|Case=Gen|Gender=Masc|Number=Sing|Person=2
|
684 |
+
PRON#Pronoun#Animacy=Anim|Case=Loc|Gender=Fem|Number=Sing
|
685 |
+
X#_#_
|
686 |
+
ADJ#Adjective#Animacy=Anim|Case=Acc|Degree=Sup|Gender=Masc|Number=Sing
|
687 |
+
VERB#Verb#Aspect=Imp|Case=Acc|Number=Plur|Tense=Past|VerbForm=Part|Voice=Pass
|
688 |
+
VERB#Verb#Aspect=Imp|Case=Loc|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act
|
689 |
+
PRON#Pronoun#Case=Gen|Gender=Fem
|
690 |
+
ADJ#Adjective#Case=Loc|Degree=Sup|Gender=Masc|Number=Sing
|
691 |
+
PROPN#Noun#Animacy=Inan|Case=Ins|Number=Sing
|
692 |
+
PROPN#Noun#Animacy=Inan|Case=Nom|Gender=Neut|Number=Plur
|
693 |
+
NUM#Numeral#Case=Ins|Number=Plur
|
694 |
+
VERB#Verb#Aspect=Imp|Case=Dat|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act
|
695 |
+
PROPN#Invariable#_
|
696 |
+
DET#Pronoun#Case=Dat|Gender=Fem|Number=Sing
|
697 |
+
NOUN#Noun#Animacy=Anim|Case=Ins|Gender=Neut|Number=Plur
|
698 |
+
ADJ#Numeral#_
|
699 |
+
PRON#Pronoun#Animacy=Anim|Case=Acc|Gender=Neut|Number=Sing
|
700 |
+
NUM#Numeral#Animacy=Anim|Case=Acc|Gender=Fem|Number=Sing
|
701 |
+
VERB#Verb#Aspect=Perf|Mood=Ind|Number=Sing|Person=2|Tense=Fut|VerbForm=Fin|Voice=Mid
|
702 |
+
PRON#Pronoun#Animacy=Anim|Case=Gen|Gender=Fem|Number=Sing
|
703 |
+
NOUN#Noun#Animacy=Anim|Case=Loc|Gender=Fem|Number=Plur
|
704 |
+
ADJ#Adjective#Case=Dat|Degree=Sup|Number=Plur
|
705 |
+
PRON#Pronoun#Animacy=Anim|Case=Nom|Gender=Neut|Number=Sing
|
706 |
+
PRON#Pronoun#Animacy=Anim|Case=Dat|Gender=Fem|Number=Sing|Person=1
|
707 |
+
Invariable#Invariable#_
|
708 |
+
PRON#Pronoun#Animacy=Inan|Case=Ins|Gender=Masc|Number=Sing|Person=3|Polarity=Neg
|
709 |
+
VERB#Verb#Aspect=Imp|Mood=Imp|Number=Plur|Person=2|Tense=Fut|VerbForm=['GTImperative']|Voice=Mid
|
710 |
+
VERB#Verb#Aspect=Perf|Case=Dat|Number=Sing|Tense=Past|VerbForm=Part|Voice=Mid
|
711 |
+
VERB#Verb#Aspect=Imp|Case=Acc|Number=Sing|Tense=Past|VerbForm=Part|Voice=Mid
|
712 |
+
VERB#Verb#Aspect=Imp|Case=Gen|Number=Sing|Tense=Past|VerbForm=Part|Voice=Pass
|
713 |
+
PRON#Pronoun#Animacy=Anim|Case=Loc|Gender=Fem|Number=Sing|Person=3
|
714 |
+
PROPN#Noun#Animacy=Inan|Case=Dat|Gender=Masc|Number=Plur
|
715 |
+
PRON#Pronoun#Case=Acc|Gender=Neut
|
716 |
+
DET#Pronoun#Case=Nom|Number=Plur|Polarity=Neg
|
717 |
+
PROPN#Noun#Animacy=Inan|Case=Acc|Number=Sing
|
718 |
+
PROPN#Noun#Animacy=Inan|Case=Acc|Gender=Fem|Number=Plur
|
719 |
+
VERB#_#Aspect=Imp|VerbForm=Inf|Voice=Act
|
720 |
+
VERB#Verb#Aspect=Imp|Mood=Ind|Number=Plur|Person=1|Tense=Fut|VerbForm=Fin|Voice=Act
|
721 |
+
DET#Pronoun#Case=Nom|Gender=Masc|Number=Sing|Polarity=Neg
|
722 |
+
NUM#Numeral#Case=Dat|Gender=Neut|Number=Sing
|
723 |
+
DET#Pronoun#Case=Ins|Gender=Fem|Number=Sing
|
724 |
+
PRON#Pronoun#Case=Loc|Gender=Fem
|
725 |
+
ADV#Predicative#Degree=Cmp|Polarity=Neg
|
726 |
+
PRON#Pronoun#Animacy=Anim|Case=Acc|Gender=Fem|Number=Sing|Person=1
|
727 |
+
NUM#Invariable#_
|
728 |
+
PRON#Pronoun#Animacy=Anim|Case=Acc|Gender=Masc|Number=Sing|Person=2
|
729 |
+
VERB#_#Aspect=Imp|Gender=Neut|Mood=Ind|Number=Sing|Tense=Past|VerbForm=Fin|Voice=Act
|
730 |
+
ADJ#_#Case=Acc|Degree=Pos|Gender=Fem|Number=Sing
|
731 |
+
ADJ#_#Case=Loc|Degree=Pos|Number=Plur
|
732 |
+
PUNCT#_#_
|
733 |
+
NOUN#_#Animacy=Inan|Case=Gen|Gender=Neut|Number=Sing
|
734 |
+
SYM#Preposition#_
|
735 |
+
VERB#Verb#Aspect=Imp|Mood=Ind|Number=Plur|Tense=Pres|VerbForm=Fin|Voice=Mid
|
736 |
+
NOUN#Noun#Animacy=Inan|Case=Nom|Gender=Neut|Number=Sing|Polarity=Neg
|
737 |
+
ADJ#Adjective#Case=Dat|Degree=Sup|Gender=Masc|Number=Sing
|
738 |
+
PROPN#Noun#Animacy=Inan|Gender=Fem|Number=Sing
|
739 |
+
AUX#Verb#Aspect=Imp|Mood=Cnd|Number=Plur|Tense=Past|VerbForm=Fin|Voice=Act
|
740 |
+
NOUN#Noun#Case=Gen|Number=Plur
|
741 |
+
VERB#Verb#Aspect=Perf|Person=1|VerbForm=Inf|Voice=Act
|
742 |
+
PROPN#Noun#Animacy=Anim|Case=Dat|Gender=Masc|Number=Plur
|
743 |
+
VERB#Verb#Aspect=Perf|Mood=Ind|Number=Plur|Tense=Fut|VerbForm=Fin|Voice=Act
|
744 |
+
PROPN#Noun#Animacy=Anim|Case=Dat|Gender=Fem|Number=Plur
|
745 |
+
NOUN#_#Animacy=Inan|Case=Nom|Gender=Masc|Number=Sing
|
746 |
+
DET#Pronoun#Case=Dat|Gender=Neut|Number=Sing
|
747 |
+
PROPN#Noun#Animacy=Anim|Case=Acc|Gender=Fem|Number=Plur
|
748 |
+
PRON#Pronoun#Animacy=Anim|Case=Gen|Gender=Fem|Number=Sing|Person=1
|
749 |
+
PROPN#Noun#Animacy=Inan|Case=Dat|Number=Sing
|
750 |
+
PRON#_#Case=Ins
|
751 |
+
NOUN#Noun#Animacy=Anim|Case=Loc|Number=Sing
|
752 |
+
AUX#Verb#Aspect=Imp|Number=Plur|Person=2|Tense=Fut|VerbForm=Fin|Voice=Act
|
753 |
+
PRON#Pronoun#Case=Loc|Gender=Neut
|
754 |
+
DET#Pronoun#Case=Ins|Number=Plur|Polarity=Neg
|
755 |
+
VERB#_#Aspect=Imp|Gender=Neut|Mood=Ind|Number=Sing|Tense=Past|VerbForm=Fin|Voice=Pass
|
756 |
+
VERB#Verb#Aspect=Perf|Mood=Ind|Number=Plur|Person=2|Tense=Fut|VerbForm=Fin|Voice=Mid
|
757 |
+
VERB#Verb#Aspect=Perf|Case=Loc|Number=Plur|Tense=Past|VerbForm=Part|Voice=Mid
|
758 |
+
Prefixoid#Prefixoid#_
|
759 |
+
DET#Pronoun#Case=Ins|Gender=Fem|Number=Sing|Polarity=Neg
|
760 |
+
NOUN#_#Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing
|
761 |
+
VERB#Verb#Aspect=Imp|Mood=Ind|Number=Sing|Person=2|Tense=Fut|VerbForm=['GTImperative']|Voice=Act
|
762 |
+
PRON#Pronoun#Animacy=Anim|Case=Loc|Gender=Masc|Number=Sing|Person=1
|
763 |
+
VERB#Verb#Aspect=Perf|Mood=Imp|Number=Sing|Person=2|Tense=Fut|VerbForm=['GTImperative']|Voice=Mid
|
764 |
+
DET#Pronoun#Case=Nom|Gender=Fem|Number=Sing|Polarity=Neg
|
765 |
+
NOUN#Noun#Animacy=Inan|Case=Dat|Gender=Neut|Number=Sing|Polarity=Neg
|
766 |
+
PRON#Pronoun#Animacy=Anim|Case=Nom|Gender=Fem|Number=Sing|Person=2
|
767 |
+
DET#Pronoun#Animacy=Anim|Case=Nom|Gender=Neut|Number=Sing
|
768 |
+
PRON#Pronoun#Animacy=Inan|Case=Dat|Gender=Neut|Number=Sing|Polarity=Neg
|
769 |
+
NOUN#Noun#Animacy=Anim|Case=Loc|Gender=Neut|Number=Sing
|
770 |
+
PRON#Pronoun#Animacy=Anim|Case=Dat|Gender=Fem|Number=Sing
|
771 |
+
DET#Pronoun#Case=Gen|Gender=Neut|Number=Sing
|
772 |
+
DET#_#Case=Ins|Number=Plur
|
773 |
+
NOUN#_#Animacy=Inan|Case=Ins|Gender=Fem|Number=Plur
|
774 |
+
DET#_#Case=Gen|Number=Plur
|
775 |
+
NOUN#_#Animacy=Inan|Case=Gen|Gender=Fem|Number=Plur
|
776 |
+
NOUN#_#Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing
|
777 |
+
PROPN#Noun#_
|
778 |
+
DET#Pronoun#Case=Ins|Gender=Neut|Number=Sing
|
779 |
+
ADJ#Numeral#Animacy=Anim|Case=Acc|Degree=Pos|Number=Plur
|
780 |
+
PROPN#Noun#Case=Nom|Gender=Neut|Number=Sing
|
781 |
+
NOUN#Noun#Animacy=Anim|Case=Loc|Number=Plur
|
782 |
+
VERB#Verb#Aspect=Imp|Case=Dat|Number=Plur|Tense=Past|VerbForm=Part|Voice=Mid
|
783 |
+
ADJ#_#Degree=Pos|Gender=Neut|Number=Sing|Variant=Short
|
784 |
+
PROPN#Noun#Animacy=Anim|Case=Acc|Gender=Masc|Number=Plur
|
785 |
+
PROPN#Noun#Case=Loc|Gender=Fem|Number=Sing
|
786 |
+
PRON#Pronoun#Animacy=Anim|Case=Loc|Gender=Fem|Number=Sing|Person=1
|
787 |
+
PROPN#Noun#Animacy=Anim|Case=Ins|Number=Plur
|
788 |
+
DET#Pronoun#Case=Ins|Gender=Masc|Number=Sing|Polarity=Neg
|
789 |
+
DET#Pronoun#Animacy=Anim|Case=Gen|Gender=Neut|Number=Sing
|
790 |
+
NOUN#Noun#Animacy=Inan|Case=Ins|Gender=Neut|Number=Sing|Polarity=Neg
|
791 |
+
VERB#Verb#Aspect=Imp|Tense=Past|VerbForm=Conv|Voice=Mid
|
792 |
+
PRON#_#Case=Nom|Number=Sing|Person=2
|
793 |
+
PROPN#Noun#Animacy=Anim|Case=Voc|Gender=Fem|Number=Sing
|
794 |
+
NOUN#Noun#Case=Acc|Number=Plur
|
795 |
+
VERB#Verb#Aspect=Imp|Mood=Ind|Number=Sing|Person=2|Tense=Fut|VerbForm=Fin|Voice=Act
|
796 |
+
PROPN#Noun#Animacy=Anim|Case=Acc|Number=Plur
|
797 |
+
VERB#Verb#Aspect=Imp|Case=Ins|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act
|
798 |
+
VERB#Verb#Aspect=Perf|Mood=Cnd|Number=Plur|Tense=Past|VerbForm=Fin|Voice=Mid
|
799 |
+
DET#Pronoun#Animacy=Anim|Case=Ins|Gender=Neut|Number=Sing
|
800 |
+
PROPN#Noun#Animacy=Inan|Case=Ins|Number=Plur
|
801 |
+
VERB#Verb#Aspect=Imp|Mood=Ind|Number=Sing|Tense=Pres|VerbForm=Fin|Voice=Mid
|
802 |
+
VERB#Verb#Aspect=Imp|Case=Nom|Number=Sing|Tense=Past|VerbForm=Part|Voice=Pass
|
803 |
+
PRON#Pronoun#Animacy=Anim|Case=Ins|Gender=Masc|Number=Sing|Polarity=Neg
|
804 |
+
NOUN#Noun#Case=Gen|Gender=Fem|Number=Sing
|
805 |
+
VERB#Verb#Aspect=Imp|Case=Ins|Number=Sing|Tense=Past|VerbForm=Part|Voice=Mid
|
806 |
+
ADJ#Adjective#Case=Ins|Degree=Sup|Gender=Neut|Number=Sing
|
807 |
+
PROPN#Noun#Animacy=Inan|Case=Dat|Gender=Fem|Number=Plur
|
808 |
+
PROPN#Noun#Animacy=Anim|Case=Dat|Number=Plur
|
809 |
+
PRON#Pronoun#Animacy=Anim|Case=Loc|Gender=Masc|Number=Sing|Person=2
|
810 |
+
VERB#_#Aspect=Perf|Mood=Imp|Number=Sing|Person=2|VerbForm=Fin|Voice=Act
|
811 |
+
VERB#Verb#Aspect=Imp|Case=Dat|Number=Sing|Tense=Past|VerbForm=Part|Voice=Mid
|
812 |
+
VERB#Verb#Aspect=Imp|Case=Loc|Number=Plur|Tense=Past|VerbForm=Part|Voice=Mid
|
813 |
+
VERB#Verb#Aspect=Imp|Case=Gen|Number=Plur|Tense=Past|VerbForm=Part|Voice=Pass
|
814 |
+
PRON#Pronoun#Case=Gen|Gender=Neut
|
815 |
+
PROPN#Noun#Animacy=Anim|Case=Ins|Gender=Masc|Number=Plur
|
816 |
+
DET#Pronoun#Animacy=Anim|Case=Dat|Gender=Neut|Number=Sing
|
817 |
+
PRON#Pronoun#Animacy=Inan|Case=Acc|Gender=Neut|Number=Sing|Polarity=Neg
|
818 |
+
PROPN#Noun#Animacy=Inan|Number=Plur
|
819 |
+
DET#Pronoun#Case=Dat|Gender=Masc|Number=Sing
|
820 |
+
PROPN#Noun#Case=Gen|Gender=Neut|Number=Sing
|
821 |
+
PRON#Pronoun#Case=Gen|Gender=Fem|Number=Sing|Polarity=Neg
|
822 |
+
PRON#Pronoun#Foreign=Yes
|
823 |
+
NOUN#Noun#Case=Loc|Gender=Masc|Number=Sing
|
824 |
+
PRON#Pronoun#Case=Nom|Number=Plur|Polarity=Neg
|
825 |
+
NOUN#Noun#Animacy=Anim|Case=Loc|Gender=Neut|Number=Plur
|
826 |
+
PROPN#Noun#Animacy=Anim|Case=Loc|Gender=Fem|Number=Plur
|
827 |
+
NOUN#Noun#Case=Gen|Gender=Neut|Number=Sing
|
828 |
+
VERB#Verb#Aspect=Imp|Case=Loc|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act
|
829 |
+
ADJ#Adjective#Case=Dat|Degree=Sup|Gender=Neut|Number=Sing
|
830 |
+
PROPN#Noun#Animacy=Anim|Case=Voc|Gender=Masc|Number=Sing
|
831 |
+
PROPN#Noun#Animacy=Inan|Case=Loc|Gender=Neut|Number=Plur
|
832 |
+
DET#Pronoun#Case=Acc|Gender=Masc|Number=Sing|Polarity=Neg
|
833 |
+
ADJ#Adjective#Case=Dat|Degree=Sup|Gender=Fem|Number=Sing
|
834 |
+
VERB#_#Aspect=Perf|Gender=Neut|Mood=Ind|Number=Sing|Tense=Past|VerbForm=Fin|Voice=Act
|
835 |
+
NOUN#Noun#Case=Nom|Gender=Masc|Number=Sing
|
836 |
+
SCONJ#_#Mood=Cnd
|
837 |
+
PRON#Pronoun#Animacy=Anim|Case=Acc|Gender=Fem|Number=Sing|Person=2
|
838 |
+
VERB#Verb#Aspect=Perf|Mood=Ind|Number=Sing|Person=2|Tense=Fut|VerbForm=['GTImperative']|Voice=Mid
|
839 |
+
DET#Pronoun#Case=Dat|Number=Plur|Polarity=Neg
|
840 |
+
ADJ#Adjective#Case=Ins|Gender=Masc|Number=Sing
|
841 |
+
VERB#Verb#Aspect=Imp|Mood=Ind|Number=Sing|Tense=Pres|VerbForm=Fin|Voice=Act
|
842 |
+
PROPN#Noun#Animacy=Inan|Case=Ins|Gender=Masc|Number=Plur
|
843 |
+
NOUN#Noun#Animacy=Inan|Case=Loc|Gender=Neut|Number=Plur|Polarity=Neg
|
844 |
+
AUX#Noun#Abbr=Yes
|
845 |
+
NOUN#Invariable#_
|
846 |
+
ADV#_#_
|
847 |
+
PROPN#Numeral#Foreign=Yes
|
848 |
+
VERB#_#Aspect=Perf|VerbForm=Inf|Voice=Act
|
849 |
+
ADJ#_#Case=Gen|Degree=Pos|Gender=Masc|Number=Sing
|
850 |
+
NOUN#_#Animacy=Inan|Case=Ins|Gender=Fem|Number=Sing
|
851 |
+
NOUN#_#Animacy=Anim|Case=Dat|Gender=Masc|Number=Sing
|
852 |
+
ADJ#_#Animacy=Inan|Case=Acc|Degree=Pos|Number=Plur
|
853 |
+
NOUN#_#Animacy=Inan|Case=Acc|Gender=Fem|Number=Plur
|
854 |
+
NOUN#_#Animacy=Anim|Case=Ins|Gender=Masc|Number=Sing
|
855 |
+
PROPN#Numeral#Animacy=Inan|Case=Nom|Number=Plur
|
856 |
+
DET#_#Case=Nom|Gender=Neut|Number=Sing
|
857 |
+
DET#_#Case=Gen|Gender=Masc|Number=Sing
|
858 |
+
NOUN#_#Animacy=Inan|Case=Dat|Gender=Fem|Number=Plur
|
859 |
+
PROPN#Numeral#Animacy=Inan|Case=Acc|Number=Plur
|
vocabulary/semclass_labels.txt
ADDED
@@ -0,0 +1,576 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
_
|
2 |
+
PREPOSITION
|
3 |
+
BEING
|
4 |
+
CH_REFERENCE_AND_QUANTIFICATION
|
5 |
+
TIME
|
6 |
+
COUNTRY_AS_ADMINISTRATIVE_UNIT
|
7 |
+
VERBAL_COMMUNICATION
|
8 |
+
COORDINATING_CONJUNCTIONS
|
9 |
+
BE
|
10 |
+
CH_OF_CONNECTIONS
|
11 |
+
CONJUNCTIONS
|
12 |
+
DISCOURSIVE_UNITS
|
13 |
+
MODALITY
|
14 |
+
PARTICLES
|
15 |
+
INHABITED_LOCALITY
|
16 |
+
ENTITY_OR_SITUATION_PRONOUN
|
17 |
+
ORGANIZATION
|
18 |
+
COMPANIES
|
19 |
+
STATE_AUTHORITIES
|
20 |
+
MOTION
|
21 |
+
UNKNOWN_SUBSTANTIVE_CLASS
|
22 |
+
AUXILIARY_VERBS
|
23 |
+
CH_DEGREE
|
24 |
+
ARRANGEMENTS
|
25 |
+
MONEY
|
26 |
+
TO_COMMIT
|
27 |
+
RESULTS_OF_GIVING_INFORMATION_AND_SPEECH_ACTIVITY
|
28 |
+
TO_GIVE
|
29 |
+
STATE_OF_MIND
|
30 |
+
TRANSPORT
|
31 |
+
CH_DISPOSITION_AND_MOTION
|
32 |
+
TO_TAKE_PLACE
|
33 |
+
PHYSICAL_PSYCHIC_CONDITION
|
34 |
+
POSITION_IN_SPACE
|
35 |
+
EXISTENCE_AND_POSSESSION
|
36 |
+
DOCUMENT
|
37 |
+
INFORMATION
|
38 |
+
EMOTIONS_AND_THEIR_EXPRESSION
|
39 |
+
CIRCUMSTANCE
|
40 |
+
PLACE
|
41 |
+
LAWS_AND_STANDARDS
|
42 |
+
SUBSTANCE
|
43 |
+
CONFLICT_INTERACTION
|
44 |
+
ADMINISTRATIVE_REGION
|
45 |
+
HUMAN
|
46 |
+
TO_ANALYSE_AND_RESEARCH
|
47 |
+
THE_EARTH_AND_ITS_SPATIAL_PARTS
|
48 |
+
RESULT_CONSEQUENCE
|
49 |
+
BEGIN_TO_TAKE_PLACE
|
50 |
+
TO_GET
|
51 |
+
TO_FEEL_AND_EXPRESS_MENTAL_ATTITUDE_TO
|
52 |
+
CONSTRUCTION_AS_WHOLE
|
53 |
+
TERRITORY_AREA
|
54 |
+
CH_EVALUATION
|
55 |
+
MANAGE_FAIL_CONDITION
|
56 |
+
TEXT_OBJECTS_AND_DOCUMENTS
|
57 |
+
CH_EVALUATION_OF_HUMAN_TEMPER_AND_ACTIVITY
|
58 |
+
CH_TYPE_OF_POSSESSION_AND_PARTICIPATION
|
59 |
+
DIMENSIONS_CHAR
|
60 |
+
TO_TAKE
|
61 |
+
VIRTUAL_OBJECT
|
62 |
+
PROCESS_AND_ITS_STAGES
|
63 |
+
SOCIAL_INSTITUTIONS
|
64 |
+
TO_WORK
|
65 |
+
TO_SEEK_FIND
|
66 |
+
CH_MAGNITUDE
|
67 |
+
CULTURAL_RESEARCH_AND_EDUCATIONAL_INSTITUTIONS
|
68 |
+
APPARATUS
|
69 |
+
OBJECT_BY_FUNCTION_AND_PROPERTY
|
70 |
+
URBAN_SPACE_AND_ROADS
|
71 |
+
GENERAL_ACTION
|
72 |
+
CONDITIONS_IN_NATURE
|
73 |
+
FACT_INCIDENT
|
74 |
+
MILITARY_FORCES_AS_ORGANIZATION
|
75 |
+
PART_OF_ORGANIZATION
|
76 |
+
TO_USE
|
77 |
+
MENTAL_OBJECT
|
78 |
+
CHARACTERISTIC_GENERAL
|
79 |
+
HIERARCHICAL_VERBS
|
80 |
+
TOTALITY_OF_DEGREE
|
81 |
+
CH_POWER_AND_EFFECT
|
82 |
+
TO_MAKE
|
83 |
+
DEFEND_SAVE
|
84 |
+
ANIMAL
|
85 |
+
SCIENCE
|
86 |
+
TO_CONTRIBUTE_AND_HINDER
|
87 |
+
CH_PRICE_AND_SUMS
|
88 |
+
RISK_DANGER
|
89 |
+
RESULTS_OF_MAKING_DECISIONS
|
90 |
+
TO_SHOW
|
91 |
+
PROBLEMS_TO_SOLVE
|
92 |
+
METHOD_APPROACH_TECHNIQUE
|
93 |
+
ATTRIBUTIVE
|
94 |
+
WEAPON_AND_ITS_PART
|
95 |
+
ELECTIONS
|
96 |
+
CH_SYSTEM_STRUCTURE
|
97 |
+
STATE_AREA
|
98 |
+
CONDITION_SITUATION
|
99 |
+
BAD_DANGEROUS_EVENT
|
100 |
+
COSMOS_AND_COSMIC_OBJECTS
|
101 |
+
IDENTIFYING_ATTRIBUTE
|
102 |
+
PARTS_OF_BODY
|
103 |
+
POWER_RIGHT
|
104 |
+
POSITION_AS_STATUS
|
105 |
+
OPERATING_STATE
|
106 |
+
TO_PERCEIVE
|
107 |
+
PREMISES
|
108 |
+
VIOLENCE
|
109 |
+
TO_SEND_TO_DELIVER
|
110 |
+
TO_ARREST
|
111 |
+
PART_OF_ARTEFACT
|
112 |
+
PART_OR_PORTION_OF_ENTITY
|
113 |
+
TO_COMPEL_AND_EVOKE
|
114 |
+
PART_OF_ORGANISM
|
115 |
+
CH_SPHERE_OF_COVERAGE
|
116 |
+
SITUATION
|
117 |
+
CREATIVE_WORK
|
118 |
+
NORMATIVE_LEGAL_ACTIVITY
|
119 |
+
UNDERTAKING
|
120 |
+
TO_CALL_AND_DESIGNATE
|
121 |
+
CH_DEGREE_AND_INTENSITY
|
122 |
+
CREATION_VERBS
|
123 |
+
CH_SALIENCE
|
124 |
+
CH_INFORMATION
|
125 |
+
SPACE_TIME_ART
|
126 |
+
AGGRESSIVE_ACTIONS
|
127 |
+
TO_PARTICIPATE
|
128 |
+
PART_OF_CONSTRUCTION
|
129 |
+
KIND
|
130 |
+
TO_CHANGE
|
131 |
+
CONTINUE_TO_TAKE_PLACE
|
132 |
+
PART_OF_CREATIVE_WORK
|
133 |
+
CHANGE_OF_POST_AND_JOB
|
134 |
+
SPORT
|
135 |
+
CONTAIN_INCLUDE_FORM
|
136 |
+
TO_APPROACH_COME_TO_SOME_POINT_OR_STATE
|
137 |
+
PART_OF_WORLD
|
138 |
+
DYNAMIC_ARTS
|
139 |
+
CH_RENOWN
|
140 |
+
ACT
|
141 |
+
TO_KEEP_VIOLATE_NORMS
|
142 |
+
READINESS
|
143 |
+
TO_SET
|
144 |
+
TO_LEARN_AND_RESEARCH
|
145 |
+
CH_RESISTANCE_TO_IMPACT
|
146 |
+
BUSY_FREE_OCCUPIED
|
147 |
+
VISUAL_CHARACTERISTICS
|
148 |
+
SURFACE_AND_ITS_SPECIALITIES
|
149 |
+
CH_PARAMETER_SPEED
|
150 |
+
TO_DISAPPEAR_LOSE_GET_RID_OF
|
151 |
+
TO_BLOW_UP
|
152 |
+
BE_STATE
|
153 |
+
MAKE_EFFORTS
|
154 |
+
TO_BUILD
|
155 |
+
TO_WRITE
|
156 |
+
DISTANT_CONTACT
|
157 |
+
POSITION_IN_HIERARCHY
|
158 |
+
TO_FORM
|
159 |
+
TO_PROPOSE
|
160 |
+
TO_WAIT
|
161 |
+
TO_CHARACTERIZE
|
162 |
+
FINE_ARTS_OBJECTS
|
163 |
+
TO_GET_INFORMATION
|
164 |
+
TO_DEVELOP
|
165 |
+
AGGREGATE
|
166 |
+
SPACE_AND_SPATIAL_OBJECTS
|
167 |
+
CH_SCALE
|
168 |
+
punct
|
169 |
+
ACTIVITY
|
170 |
+
COST
|
171 |
+
PERCEPTION_ACTIVITY
|
172 |
+
INFORMATION_COMMUNICATIONS
|
173 |
+
TO_SUBSTITUTE_AND_EXCHANGE
|
174 |
+
DIFFICULT_AND_EASY
|
175 |
+
TO_REGISTER
|
176 |
+
DEGREE_OF_FIT
|
177 |
+
DEVICE
|
178 |
+
CH_FUNCTIONING_OF_ENTITY
|
179 |
+
SCHEDULE_FOR_ACTIVITY
|
180 |
+
TO_JOIN
|
181 |
+
CHOOSING_SORTING
|
182 |
+
PUBLIC_SERVICE_INSTITUTIONS
|
183 |
+
RELATIVE_ENTITY
|
184 |
+
WORLD_OUTLOOK
|
185 |
+
SYMBOLS_FOR_INFORMATION_TRANSFER
|
186 |
+
REVEAL_CONCEAL_INFORMATION
|
187 |
+
CH_COMPOSITION
|
188 |
+
FOOD
|
189 |
+
TO_CHALLENGE_TO_INVITE
|
190 |
+
TO_PERFORM
|
191 |
+
CH_SOCIAL_CHARACTERISTIC
|
192 |
+
ECONOMY
|
193 |
+
TO_COME_OR_TO_LEAVE_SPHERE_OF_ACTIVITY
|
194 |
+
TO_REACT
|
195 |
+
CULTURE
|
196 |
+
TO_DECIDE
|
197 |
+
EVENT
|
198 |
+
SOCIAL_CONDITIONS_OF_BEING
|
199 |
+
CONDITION_STATE
|
200 |
+
CONTINUE_TO_HAVE
|
201 |
+
SPHERE_OF_ACTIVITY_GENERAL
|
202 |
+
TO_POSSESS
|
203 |
+
WEIGHT_CHAR
|
204 |
+
MASS_MEDIA_ORGANIZATION_AND_COMMUNICATIONS
|
205 |
+
OBJECT_IN_NATURE
|
206 |
+
TO_ACCUSE_AND_VINDICATE
|
207 |
+
MARKET_AS_AREA_OF_ACTIVITY
|
208 |
+
TO_RESTORE
|
209 |
+
DESTRUCTION_VERBS
|
210 |
+
CONTAINER
|
211 |
+
CH_OF_BEING
|
212 |
+
SCIENTIFIC_AND_LITERARY_WORK
|
213 |
+
TO_SUPPORT_AND_OPPOSE
|
214 |
+
OCCUPATIONS
|
215 |
+
DEGREE_OF_SIZE_OR_SCALE
|
216 |
+
PHYSIOLOGICAL_PROCESSES
|
217 |
+
ARTEFACT
|
218 |
+
FEELING_AS_CONDITION
|
219 |
+
TO_BEAT_AND_PRICK
|
220 |
+
PLANT
|
221 |
+
TRIAL
|
222 |
+
ORGANIC_OBJECTS
|
223 |
+
VISUAL_REPRESENTATION
|
224 |
+
TO_PLAY_GAMES
|
225 |
+
TO_TAKE_INTO_CONSIDERATION
|
226 |
+
TO_CERTIFY
|
227 |
+
TEXT_WITH_ADDRESSEE
|
228 |
+
INTERPERSONAL_RELATIONS
|
229 |
+
BUSINESS
|
230 |
+
TO_CLOSE
|
231 |
+
LINES
|
232 |
+
CH_ABSTRACT_GENERALIZED
|
233 |
+
TO_COMMENT
|
234 |
+
NATURALNESS_GENUINENESS_CHAR
|
235 |
+
TO_TRADE
|
236 |
+
TO_INVOLVE
|
237 |
+
PRODUCTIVE_AREA
|
238 |
+
CHANGE_OF_MATTER_PHYSICAL_STATE
|
239 |
+
TO_PLAN_CREATIVE_AND_PHYSICAL_OBJECTS
|
240 |
+
GROUP
|
241 |
+
TO_CAUSE_OR_STOP_MOVEMENT
|
242 |
+
TEMPERATURE_CHAR
|
243 |
+
CH_PARAMETER_OF_MATTER
|
244 |
+
TO_CARE_AND_BRING_UP
|
245 |
+
CLOTHES
|
246 |
+
AGREEMENT_VERBS
|
247 |
+
TO_ADD
|
248 |
+
BEVERAGE
|
249 |
+
TO_CANCEL
|
250 |
+
CH_DISTRIBUTION
|
251 |
+
EFFICIENCY_PRODUCTIVITY
|
252 |
+
TO_DIVIDE
|
253 |
+
TO_COMMUNICATE
|
254 |
+
CRISIS
|
255 |
+
AREA_OF_HUMAN_ACTIVITY
|
256 |
+
ORDER_DISORDER
|
257 |
+
CH_BENEFIT
|
258 |
+
TO_PUNISH
|
259 |
+
INTELLECTUAL_ACTIVITY
|
260 |
+
ORIENTATION_IN_SPACE
|
261 |
+
CH_APPEARANCE
|
262 |
+
TO_COUNT
|
263 |
+
TO_SPEND
|
264 |
+
ETIQUETTE_COMMUNICATION
|
265 |
+
TO_RELEASE
|
266 |
+
OBJECTS_BY_FUNCTION
|
267 |
+
TO_EXIST
|
268 |
+
TO_SPOIL
|
269 |
+
OBJECTS_BY_FORM_OF_MANIFESTATION
|
270 |
+
TO_SHOOT_PHOTO_OR_FILM
|
271 |
+
NETWORK
|
272 |
+
TO_HURRY_TO_TARRY
|
273 |
+
TO_MARRY_DIVORCE_ENGAGE
|
274 |
+
GRAMMATICAL_ELEMENTS
|
275 |
+
TO_BURN_DESTRUCTION
|
276 |
+
TO_REBEL
|
277 |
+
POWER_CHAR
|
278 |
+
TO_HIDE
|
279 |
+
PRODUCT
|
280 |
+
HISTORICAL_LOCALITY_BY_NAME
|
281 |
+
CH_BY_WORLD_OUTLOOK_EDUCATION_AESTHETIC
|
282 |
+
PEACE
|
283 |
+
LACK_AND_PLENTY
|
284 |
+
CH_BY_SENSORY_PERCEPTION
|
285 |
+
CH_INTENTION_CONCENTRATION
|
286 |
+
PUBLIC_AND_POLITICAL_ACTIVITY
|
287 |
+
INSTRUMENT
|
288 |
+
NONPRODUCTIVE_AREA
|
289 |
+
CORRELATIVES
|
290 |
+
OBJECT_BY_SHAPE
|
291 |
+
CH_OF_LOCATION
|
292 |
+
FURNISHINGS_AND_DECORATION
|
293 |
+
MOTION_ACTIVITY
|
294 |
+
TO_ADJUST_AND_REPAIR
|
295 |
+
TO_AVOID
|
296 |
+
TO_BREAK
|
297 |
+
CH_ASPECT
|
298 |
+
CONDITION_OF_EXPERIENCER_AND_NATURE
|
299 |
+
TO_TAKE_FOOD_OR_MEDICINE
|
300 |
+
TO_ORGANIZE_EVENT
|
301 |
+
RESERVE
|
302 |
+
MATHEMATICAL_OBJECTS
|
303 |
+
TOPIC_SUBJECT
|
304 |
+
CH_OF_INTENSITY
|
305 |
+
ENTITY_AS_RESULT_OF_ACTIVITY
|
306 |
+
BEHAVIOUR
|
307 |
+
MOTIVATE
|
308 |
+
TO_LIQUIDATE
|
309 |
+
TENDENCY_AND_DISPOSITION
|
310 |
+
TO_THINK_ABOUT
|
311 |
+
ORGANIZED_AGGREGATE
|
312 |
+
QUIETNESS
|
313 |
+
CH_PERCEPTIBILITY
|
314 |
+
CH_PERSON_IDENTITY
|
315 |
+
TO_PROCESS_INFORMATION
|
316 |
+
RESULTS_OF_MENTAL_ACTIVITY
|
317 |
+
SPORT_DEVICE
|
318 |
+
TO_BE_GUIDED
|
319 |
+
KNOWLEDGE_FROM_EXPERIENCE_AND_DEDUCTION
|
320 |
+
TO_PRODUCE_CERTAIN_SOUNDS
|
321 |
+
TO_SPEND_TIME
|
322 |
+
OUTFIT
|
323 |
+
CH_PARAMETER_OF_OBJECT_AND_SUBSTANCE
|
324 |
+
TO_CELEBRATE
|
325 |
+
TO_DESTINE
|
326 |
+
EVERYDAY_PROCESSING
|
327 |
+
PART_OF_TOWN
|
328 |
+
INFORMATION_BEARER
|
329 |
+
RELIGIOUS_AND_MYTHOLOGICAL_CREATURE
|
330 |
+
RELATIVE_SPACE
|
331 |
+
MEDICAL_OPERATIONS
|
332 |
+
TRICK_MACHINATION
|
333 |
+
CH_STYLE
|
334 |
+
REMOVING_DESTRUCTION
|
335 |
+
TO_PREVENT_SMTH
|
336 |
+
TO_CAUSE_SUCCESS
|
337 |
+
PATH_AS_DIRECTION_OF_ACTIVITY
|
338 |
+
FATE
|
339 |
+
TO_TURN_INTO
|
340 |
+
TO_ASSEMBLE
|
341 |
+
ENGINEERING_COMMUNICATIONS
|
342 |
+
NOVELTY
|
343 |
+
REWARD_AS_ENTITY
|
344 |
+
PROCESS_PARAMETER
|
345 |
+
TO_BE_BASED
|
346 |
+
TO_JOIN_PHYSICAL_OBJECTS
|
347 |
+
MATERIALITY_CHAR
|
348 |
+
TO_TELEPHONE
|
349 |
+
DIFFICULTIES
|
350 |
+
COMMUNICATIONS
|
351 |
+
ENTITY_BY_RELATION_TO_MAIN_PART
|
352 |
+
CH_PHYSICAL_STATE
|
353 |
+
LINGUISTIC_OBJECTS
|
354 |
+
TO_CITE
|
355 |
+
TO_CORRECT
|
356 |
+
TO_BE_A_SIGN_OF
|
357 |
+
CARGO
|
358 |
+
HAVE_CLOTHING_ON
|
359 |
+
PHYSICAL_OBJECT
|
360 |
+
AMBIENCE_ENVIRONMENT
|
361 |
+
TO_MEAN
|
362 |
+
TO_GO_ON_STRIKE
|
363 |
+
CH_OF_VISUAL_AUDIBLE_REPRESENTATION
|
364 |
+
RELATIVE_PART_OF_INHABITED_LOCALITY
|
365 |
+
TO_READ_READABLE
|
366 |
+
TO_EMIT
|
367 |
+
POINTS_AS_PLACE
|
368 |
+
KNOWLEDGE_FROM_EXPERIENCE
|
369 |
+
LINE_FOR_COMMUNICATION
|
370 |
+
PHYSICAL_OBJECT_AND_SUBSTANCE_CHAR
|
371 |
+
BIJOUTERIE_AND_JEWELLERY
|
372 |
+
PHYSICAL_AND_BIOLOGICAL_PROPERTIES
|
373 |
+
TO_PROCESS_PHYSICAL_OBJECT
|
374 |
+
CH_CRIMINAL_ACTIVITY
|
375 |
+
CH_ENTITY
|
376 |
+
DEVICE_FOR_MEASURING_AND_COUNTING
|
377 |
+
ECONOMIC_CHANGES
|
378 |
+
TO_OPEN
|
379 |
+
TO_SOUND
|
380 |
+
TO_ACCOMPANY_WITH
|
381 |
+
VALUABLE
|
382 |
+
VIRTUAL_TRANSFERENCE
|
383 |
+
COMPLEX_ANAPHORIC_PARTICLES
|
384 |
+
TO_FORGIVE
|
385 |
+
MEANING_SENSE
|
386 |
+
CH_BY_RESIDENCE
|
387 |
+
CREATIVE_WORK_BY_GENRE
|
388 |
+
MYSTERY_SECRET
|
389 |
+
ENTITY_BY_FUNCTION_AND_PROPERTY
|
390 |
+
CLASSIFICATION_UNIT
|
391 |
+
PHENOMENON
|
392 |
+
TO_SUMMARIZE
|
393 |
+
TO_ADAPT
|
394 |
+
ADMINISTRATIVE_AND_TERRITORIAL_UNIT
|
395 |
+
TO_TAKE_PLACE_IN_NATURE
|
396 |
+
ACCESSORY
|
397 |
+
MOVEMENT_AS_ACTIVITY
|
398 |
+
CH_CONFIGURATION_AND_FORM
|
399 |
+
MUSICAL_INSTRUMENT
|
400 |
+
TO_TEASE_AND_JOKE
|
401 |
+
SEXUAL_ACTIVITIES
|
402 |
+
TO_ECONOMIZE
|
403 |
+
MODE_OF_EXPRESSIVENESS
|
404 |
+
IDIOMATICAL_ELEMENTS
|
405 |
+
TO_DO_WITHOUT_SMTH
|
406 |
+
TO_SHARE
|
407 |
+
TO_PICTURE_DRAW
|
408 |
+
TO_CREATE_HOLE
|
409 |
+
ENTITY_GENERAL
|
410 |
+
REALITY
|
411 |
+
DECORATING_AND_FINISHING
|
412 |
+
TO_RECEIVE_CALLERS
|
413 |
+
SYSTEM_AS_AGGREGATE
|
414 |
+
TO_PRESUPPOSE
|
415 |
+
TO_BE_DESCENDED
|
416 |
+
TO_CONCLUDE
|
417 |
+
CH_FULLNESS
|
418 |
+
TO_FABRICATE
|
419 |
+
PROCESSING
|
420 |
+
TO_PRINT_TEXT_PHOTO
|
421 |
+
ENTITY_BY_VALUE
|
422 |
+
TO_APPLY_COAT
|
423 |
+
PUBLIC_ACTIVITY
|
424 |
+
PRODUCTION_AS_TIME_ART
|
425 |
+
KITCHENWARE_AND_TABLEWARE
|
426 |
+
TO_TOUCH
|
427 |
+
TO_APPLAUD
|
428 |
+
INNOVATION
|
429 |
+
OPTICAL_DEVICE_AND_ITS_PARTS
|
430 |
+
BOOM
|
431 |
+
STEADINESS_OF_FORM_OR_POSITION
|
432 |
+
TO_BE_SEEN_IN_FIELD_OF_VIEW
|
433 |
+
TO_INVENT
|
434 |
+
TO_SABOTAGE
|
435 |
+
TO_SHINE
|
436 |
+
TO_SMOKE
|
437 |
+
TO_BETRAY_AND_LEAVE
|
438 |
+
PRESSURE_CHAR
|
439 |
+
TO_PERSUADE_SMB_TO_DO_SMTH
|
440 |
+
DEVICE_FOR_HEATING
|
441 |
+
CH_CLASSIFICATION
|
442 |
+
CH_LANGUAGE
|
443 |
+
SEPARATION_PROCESSING
|
444 |
+
CLASSIFICATION_TYPES
|
445 |
+
TO_INTERACT
|
446 |
+
TEETH_AND_TONGUE_CONTACT
|
447 |
+
TO_DIG_PROCESS
|
448 |
+
TO_PICKET
|
449 |
+
CONDITION_IN_ECONOMICS
|
450 |
+
TO_OVERTHROW
|
451 |
+
TRANSPORT_COMMUNICATIONS
|
452 |
+
CHANGE_OF_ORGANIC_OBJECTS
|
453 |
+
DEVICE_FOR_ILLUMINATING
|
454 |
+
TO_DIRECT_CREATIVE_WORK
|
455 |
+
TO_REVENGE
|
456 |
+
DEVICE_FOR_LIFTING_OBJECTS
|
457 |
+
TO_BE_ABOUT_TO_HAPPEN
|
458 |
+
TO_MEASURE
|
459 |
+
FREQUENCY_CHAR
|
460 |
+
PART_OF_CLOTHES
|
461 |
+
TO_BRING_TOGETHER
|
462 |
+
HERITAGE
|
463 |
+
TO_STORM
|
464 |
+
ENDINGS
|
465 |
+
TO_SYMBOLIZE
|
466 |
+
TO_SPARE
|
467 |
+
DEVICE_FOR_CLOSING_AND_LOCKING
|
468 |
+
TO_ENUMERATE
|
469 |
+
COGNITIVE_OBJECT
|
470 |
+
TO_TORTURE
|
471 |
+
FORCE_IN_PHYSICS
|
472 |
+
TO_MOVE_IN_GAMES
|
473 |
+
TO_EXHAUST
|
474 |
+
SPACE_BY_RELIGIOUS_BELIEFS
|
475 |
+
AGGREGATE_OF_LIVING_OBJECTS
|
476 |
+
SILENCE_AS_SOUNDLESSNESS
|
477 |
+
KNOWLEDGE
|
478 |
+
CH_SURFACE_EDGE
|
479 |
+
TO_ATTRIBUTE_AS_TO_ADD
|
480 |
+
THE_GOOD_BAD
|
481 |
+
CONTACT_WITH_CONTRAGENT
|
482 |
+
TO_CHANGE_FORM
|
483 |
+
TO_INTERPRET
|
484 |
+
TO_UNDERSTATE_TO_EXAGGERATE
|
485 |
+
CONTENT_OF_CONTAINER
|
486 |
+
BODY
|
487 |
+
AGGREGATE_OF_MACHINERY_OR_TRANSPORT
|
488 |
+
CH_COVERING
|
489 |
+
EMBARGO
|
490 |
+
TEST_FOR_EXPERIENCER
|
491 |
+
WORK_AS_ACT
|
492 |
+
SCALE_DIVISION
|
493 |
+
TO_GUESS
|
494 |
+
TO_INDUCE_PHYSICAL_PROPERTIES
|
495 |
+
TO_INDEX
|
496 |
+
TO_AIM
|
497 |
+
ADVENTURE
|
498 |
+
PHYSICAL_CHEMICAL_DAMAGE
|
499 |
+
TO_GESTURE
|
500 |
+
TO_SUBSCRIBE
|
501 |
+
CONTACT_VERBS
|
502 |
+
EMPTY_SUBJECT
|
503 |
+
TO_RUB_AND_SCRATCH
|
504 |
+
DEPART_GIVE_UP
|
505 |
+
TO_LET_DOWN
|
506 |
+
DIMENSION
|
507 |
+
TO_THINK_OUT
|
508 |
+
EVIDENCE
|
509 |
+
AGRICULTURAL_PROCESSING
|
510 |
+
OBJECTS_TO_REMEMBER
|
511 |
+
TO_SCREEN
|
512 |
+
TO_UTTER_ANIMAL_SOUNDS
|
513 |
+
TO_STOP_SPEAKING
|
514 |
+
TO_PRESS
|
515 |
+
TO_MAKE_IMAGE_ON_SURFACE
|
516 |
+
TO_FORMULATE
|
517 |
+
TO_TERRORIZE
|
518 |
+
TO_RATIFY
|
519 |
+
TO_RECUR
|
520 |
+
STREET_OR_TOWN_SUFFIXES
|
521 |
+
TO_PERFORM_MATHS_OPERATIONS
|
522 |
+
TO_COMPEL_TO_ACCEPT
|
523 |
+
CH_RHYTHM
|
524 |
+
YES_NO_VERBS
|
525 |
+
UNIT_OF_INFORMATION_QUANTITY
|
526 |
+
ORGANIC_NON_ORGANIC
|
527 |
+
TO_REIGN_AS_TO_TAKE_PLACE
|
528 |
+
MANNER_OF_BEARING
|
529 |
+
TO_PRESS_AS_TOUCH
|
530 |
+
CH_MEASURE
|
531 |
+
MULTIMEDIA
|
532 |
+
SERIES_IN_SCIENCE
|
533 |
+
ACTIVITY_BY_INTEREST
|
534 |
+
TO_PRONOUNCE
|
535 |
+
CHEMICAL_CHANGES
|
536 |
+
UNKNOWN_VERB
|
537 |
+
TO_TROUBLE_TO_DO_SOMETHING
|
538 |
+
SAVER_AS_ENTITY
|
539 |
+
CONTINUE_TO_AFFLICT
|
540 |
+
TO_GIVE_SIGNALS
|
541 |
+
TO_COMPOSE
|
542 |
+
DEVICE_FOR_ANIMALS
|
543 |
+
TO_CONNIVE
|
544 |
+
TO_COURT_AND_FLIRT
|
545 |
+
TO_DISTRACT_DEFLECT
|
546 |
+
SPACE_BY_PARTICULAR_PROPERTIES
|
547 |
+
TO_PROGRAM
|
548 |
+
DECLINE
|
549 |
+
PART_OF_FOOTWEAR
|
550 |
+
GOOD_BAD_CONDITION
|
551 |
+
TO_REFLECT
|
552 |
+
STAGNATION
|
553 |
+
TO_SCULPT
|
554 |
+
THE_MAGIC
|
555 |
+
TO_COMPOSE_SYMBOLS
|
556 |
+
TEXTS_OF_PROGRAMS
|
557 |
+
MIX_AS_AGGREGATE
|
558 |
+
TO_OVERDO
|
559 |
+
CONDITION_IN_POLITICAL_SPHERE
|
560 |
+
CONDITION_IN_SPHERE_OF_SOCIAL_ACTIVITY
|
561 |
+
CONVERTER
|
562 |
+
TO_SPEND_INEFFECTIVELY
|
563 |
+
EXOTICA
|
564 |
+
INTERACTION_WITH_OBJECT
|
565 |
+
CONDITION_OF_BEING
|
566 |
+
TO_GROAN
|
567 |
+
PLAYTHING
|
568 |
+
CH_MOVING_CAPACITIES
|
569 |
+
RELIGIOUS_OBJECT
|
570 |
+
HARMONIOUS_COMBINATION
|
571 |
+
TO_ANIMATE_PICTURE
|
572 |
+
TO_REPRODUCE_ECONOMIC
|
573 |
+
TO_DRAMATIZE
|
574 |
+
PARADOX
|
575 |
+
GIVE_GET_TAKE_AWAY
|
576 |
+
TO_MIX
|
vocabulary/semslot_labels.txt
ADDED
@@ -0,0 +1,134 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
_
|
2 |
+
Predicate
|
3 |
+
Object_Situation
|
4 |
+
Object
|
5 |
+
Time
|
6 |
+
Agent
|
7 |
+
Locative
|
8 |
+
Characteristic
|
9 |
+
Quantity
|
10 |
+
Name_Title
|
11 |
+
Sphere
|
12 |
+
ParticipleRelativeClause
|
13 |
+
Experiencer
|
14 |
+
Ch_Reference
|
15 |
+
OrderInTimeAndSpace
|
16 |
+
State
|
17 |
+
Correlative
|
18 |
+
Possessor
|
19 |
+
Predicate_Noun
|
20 |
+
Parenthetical
|
21 |
+
Agent_Metaphoric
|
22 |
+
Relative
|
23 |
+
Degree
|
24 |
+
Addition
|
25 |
+
Object_Relation
|
26 |
+
Locative_FinalPoint
|
27 |
+
Theme
|
28 |
+
Set_General
|
29 |
+
Specification
|
30 |
+
Purpose
|
31 |
+
Whole
|
32 |
+
Addressee
|
33 |
+
$Dislocation
|
34 |
+
MetaphoricLocative
|
35 |
+
Experiencer_Metaphoric
|
36 |
+
Limitation
|
37 |
+
Raising_Target
|
38 |
+
Locative_InitialPoint
|
39 |
+
Cause
|
40 |
+
Criterion
|
41 |
+
Ch_Parameter
|
42 |
+
Explication
|
43 |
+
Concurrent
|
44 |
+
StaffOfPossessors
|
45 |
+
DegreeNumerative
|
46 |
+
Possessor_Metaphoric
|
47 |
+
Part_Situation
|
48 |
+
Part
|
49 |
+
Elective
|
50 |
+
ContrAgent
|
51 |
+
Member
|
52 |
+
ClassifiedEntity
|
53 |
+
Resultative
|
54 |
+
AttachedProperty
|
55 |
+
Motive
|
56 |
+
Source
|
57 |
+
Specifier_Number
|
58 |
+
Locative_Distance
|
59 |
+
ContrObject
|
60 |
+
SetEnvironment
|
61 |
+
BeneMalefactive
|
62 |
+
Instrument
|
63 |
+
Landmark
|
64 |
+
Opposition
|
65 |
+
Instrument_Situation
|
66 |
+
Particles_Accentuation
|
67 |
+
Possessor_Locative
|
68 |
+
Condition
|
69 |
+
AdditionalParticipant
|
70 |
+
Fabricative
|
71 |
+
FormOfRepresentation
|
72 |
+
Manner
|
73 |
+
Function
|
74 |
+
GappingRemnant
|
75 |
+
ContrAgent_Metaphoric
|
76 |
+
Locative_Route
|
77 |
+
ComparisonBase
|
78 |
+
Comparison
|
79 |
+
Stimulus
|
80 |
+
Interval_End
|
81 |
+
Interval_Beginning
|
82 |
+
PrincipleOfOrganization
|
83 |
+
Metaphoric_FinalPoint
|
84 |
+
Concession
|
85 |
+
QuantifiedEntity
|
86 |
+
Standpoint
|
87 |
+
Concurrent_Complement
|
88 |
+
SupportedEntity
|
89 |
+
PersonImplicit
|
90 |
+
Dependent_Hyphen_Component
|
91 |
+
MathCharacteristic
|
92 |
+
Metaphoric_Route
|
93 |
+
Addressee_Metaphoric
|
94 |
+
Metaphoric_InitialPoint
|
95 |
+
ThemeRhematic
|
96 |
+
Causator
|
97 |
+
MannerOfPositionAndMotion
|
98 |
+
Core_Hyphen_Component
|
99 |
+
Original_Object
|
100 |
+
Purpose_Distributive
|
101 |
+
SpeechEtiquette
|
102 |
+
MovingLandmark
|
103 |
+
ExternalPossessor
|
104 |
+
Vocative
|
105 |
+
ContentOfContainer
|
106 |
+
BehalfOfEntity
|
107 |
+
Whole_Complement
|
108 |
+
Predicate_DiscoursiveUnits
|
109 |
+
Motive_Warranty
|
110 |
+
Manner_Configuration
|
111 |
+
MeasureSpecification
|
112 |
+
Origin
|
113 |
+
Composition
|
114 |
+
Predicate_Adverb
|
115 |
+
Consequence
|
116 |
+
Spectator
|
117 |
+
PlaceOfContact
|
118 |
+
Set_Classification
|
119 |
+
Original_Situation
|
120 |
+
Possessor_Situational
|
121 |
+
Empty_Subject_It
|
122 |
+
PragmaticEvaluation
|
123 |
+
Comparison_Symmetrical
|
124 |
+
ConcessiveCondition
|
125 |
+
PaymentBy_NonMonetaryUnits
|
126 |
+
Chemical_Composite
|
127 |
+
Specifier_NumeralCharacteristic
|
128 |
+
PartAsOrientation
|
129 |
+
OneAnother
|
130 |
+
ArithmeticComponent
|
131 |
+
Quantity_Pragmatic
|
132 |
+
Proportion_To
|
133 |
+
Vocative_Metaphoric
|
134 |
+
Representant_In_Person
|