Tanor commited on
Commit
0e239b7
1 Parent(s): 25917df

Update spaCy pipeline

Browse files
.gitattributes CHANGED
@@ -33,3 +33,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ sr_pln_tesla_j355-any-py3-none-any.whl filter=lfs diff=lfs merge=lfs -text
37
+ trainable_lemmatizer/model filter=lfs diff=lfs merge=lfs -text
38
+ transformer/model filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,78 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - spacy
4
+ - token-classification
5
+ language:
6
+ - sr
7
+ license: cc-by-sa-3.0
8
+ model-index:
9
+ - name: sr_pln_tesla_j355
10
+ results:
11
+ - task:
12
+ name: NER
13
+ type: token-classification
14
+ metrics:
15
+ - name: NER Precision
16
+ type: precision
17
+ value: 0.9563926016
18
+ - name: NER Recall
19
+ type: recall
20
+ value: 0.9584629955
21
+ - name: NER F Score
22
+ type: f_score
23
+ value: 0.9574266793
24
+ - task:
25
+ name: TAG
26
+ type: token-classification
27
+ metrics:
28
+ - name: TAG (XPOS) Accuracy
29
+ type: accuracy
30
+ value: 0.9847113194
31
+ - task:
32
+ name: LEMMA
33
+ type: token-classification
34
+ metrics:
35
+ - name: Lemma Accuracy
36
+ type: accuracy
37
+ value: 0.9833528137
38
+ ---
39
+ sr_pln_tesla_j355 is a spaCy model meticulously fine-tuned for Part-of-Speech Tagging, Lemmatization, and Named Entity Recognition in Serbian language texts. This advanced model incorporates a transformer layer based on Jerteh-355, enhancing its analytical capabilities. It is proficient in identifying 7 distinct categories of entities: PERS (persons), ROLE (professions), DEMO (demonyms), ORG (organizations), LOC (locations), WORK (artworks), and EVENT (events). Detailed information about these categories is available in the accompanying table. The development of this model has been made possible through the support of the Science Fund of the Republic of Serbia, under grant #7276, for the project 'Text Embeddings - Serbian Language Applications - TESLA'.
40
+
41
+ | Feature | Description |
42
+ | --- | --- |
43
+ | **Name** | `sr_pln_tesla_j355` |
44
+ | **Version** | `1.0.0` |
45
+ | **spaCy** | `>=3.7.2,<3.8.0` |
46
+ | **Default Pipeline** | `transformer`, `tagger`, `trainable_lemmatizer`, `ner` |
47
+ | **Components** | `transformer`, `tagger`, `trainable_lemmatizer`, `ner` |
48
+ | **Vectors** | 0 keys, 0 unique vectors (0 dimensions) |
49
+ | **Sources** | n/a |
50
+ | **License** | `CC BY-SA 3.0` |
51
+ | **Author** | [Milica Ikonić Nešić, Saša Petalinkar, Mihailo Škorić, Ranka Stanković](https://tesla.rgf.bg.ac.rs/) |
52
+
53
+ ### Label Scheme
54
+
55
+ <details>
56
+
57
+ <summary>View label scheme (23 labels for 2 components)</summary>
58
+
59
+ | Component | Labels |
60
+ | --- | --- |
61
+ | **`tagger`** | `ADJ`, `ADP`, `ADV`, `AUX`, `CCONJ`, `DET`, `INTJ`, `NOUN`, `NUM`, `PART`, `PRON`, `PROPN`, `PUNCT`, `SCONJ`, `VERB`, `X` |
62
+ | **`ner`** | `DEMO`, `EVENT`, `LOC`, `ORG`, `PERS`, `ROLE`, `WORK` |
63
+
64
+ </details>
65
+
66
+ ### Accuracy
67
+
68
+ | Type | Score |
69
+ | --- | --- |
70
+ | `TAG_ACC` | 98.47 |
71
+ | `LEMMA_ACC` | 98.34 |
72
+ | `ENTS_F` | 95.74 |
73
+ | `ENTS_P` | 95.64 |
74
+ | `ENTS_R` | 95.85 |
75
+ | `TRANSFORMER_LOSS` | 183572.28 |
76
+ | `TAGGER_LOSS` | 63121.95 |
77
+ | `TRAINABLE_LEMMATIZER_LOSS` | 99749.38 |
78
+ | `NER_LOSS` | 40508.31 |
config.cfg ADDED
@@ -0,0 +1,187 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [paths]
2
+ train = "./train.spacy"
3
+ dev = "./dev.spacy"
4
+ vectors = null
5
+ bert = "E:\\scratch2lm\\bert modeli\\jerteh-355"
6
+ init_tok2vec = null
7
+
8
+ [system]
9
+ gpu_allocator = "pytorch"
10
+ seed = 0
11
+
12
+ [nlp]
13
+ lang = "sr"
14
+ pipeline = ["transformer","tagger","trainable_lemmatizer","ner"]
15
+ batch_size = 128
16
+ disabled = []
17
+ before_creation = null
18
+ after_creation = null
19
+ after_pipeline_creation = null
20
+ tokenizer = {"@tokenizers":"spacy.Tokenizer.v1"}
21
+ vectors = {"@vectors":"spacy.Vectors.v1"}
22
+
23
+ [components]
24
+
25
+ [components.ner]
26
+ factory = "ner"
27
+ incorrect_spans_key = null
28
+ moves = null
29
+ scorer = {"@scorers":"spacy.ner_scorer.v1"}
30
+ update_with_oracle_cut_size = 100
31
+
32
+ [components.ner.model]
33
+ @architectures = "spacy.TransitionBasedParser.v2"
34
+ state_type = "ner"
35
+ extra_state_tokens = false
36
+ hidden_width = 64
37
+ maxout_pieces = 2
38
+ use_upper = false
39
+ nO = null
40
+
41
+ [components.ner.model.tok2vec]
42
+ @architectures = "spacy-transformers.TransformerListener.v1"
43
+ grad_factor = 1.0
44
+ pooling = {"@layers":"reduce_mean.v1"}
45
+ upstream = "*"
46
+
47
+ [components.tagger]
48
+ factory = "tagger"
49
+ label_smoothing = 0.0
50
+ neg_prefix = "!"
51
+ overwrite = false
52
+ scorer = {"@scorers":"spacy.tagger_scorer.v1"}
53
+
54
+ [components.tagger.model]
55
+ @architectures = "spacy.Tagger.v2"
56
+ nO = null
57
+ normalize = false
58
+
59
+ [components.tagger.model.tok2vec]
60
+ @architectures = "spacy-transformers.TransformerListener.v1"
61
+ grad_factor = 1.0
62
+ pooling = {"@layers":"reduce_mean.v1"}
63
+ upstream = "*"
64
+
65
+ [components.trainable_lemmatizer]
66
+ factory = "trainable_lemmatizer"
67
+ backoff = "orth"
68
+ min_tree_freq = 3
69
+ overwrite = false
70
+ scorer = {"@scorers":"spacy.lemmatizer_scorer.v1"}
71
+ top_k = 1
72
+
73
+ [components.trainable_lemmatizer.model]
74
+ @architectures = "spacy.Tagger.v2"
75
+ nO = null
76
+ normalize = false
77
+
78
+ [components.trainable_lemmatizer.model.tok2vec]
79
+ @architectures = "spacy-transformers.TransformerListener.v1"
80
+ grad_factor = 1.0
81
+ pooling = {"@layers":"reduce_mean.v1"}
82
+ upstream = "*"
83
+
84
+ [components.transformer]
85
+ factory = "transformer"
86
+ max_batch_items = 4096
87
+ set_extra_annotations = {"@annotation_setters":"spacy-transformers.null_annotation_setter.v1"}
88
+
89
+ [components.transformer.model]
90
+ @architectures = "spacy-transformers.TransformerModel.v3"
91
+ name = ${paths.bert}
92
+ mixed_precision = false
93
+
94
+ [components.transformer.model.get_spans]
95
+ @span_getters = "spacy-transformers.strided_spans.v1"
96
+ window = 128
97
+ stride = 96
98
+
99
+ [components.transformer.model.grad_scaler_config]
100
+
101
+ [components.transformer.model.tokenizer_config]
102
+ use_fast = true
103
+
104
+ [components.transformer.model.transformer_config]
105
+
106
+ [corpora]
107
+
108
+ [corpora.dev]
109
+ @readers = "spacy.Corpus.v1"
110
+ path = ${paths.dev}
111
+ max_length = 0
112
+ gold_preproc = false
113
+ limit = 0
114
+ augmenter = null
115
+
116
+ [corpora.train]
117
+ @readers = "spacy.Corpus.v1"
118
+ path = ${paths.train}
119
+ max_length = 0
120
+ gold_preproc = false
121
+ limit = 0
122
+ augmenter = null
123
+
124
+ [training]
125
+ accumulate_gradient = 3
126
+ dev_corpus = "corpora.dev"
127
+ train_corpus = "corpora.train"
128
+ annotating_components = ["tagger","trainable_lemmatizer"]
129
+ seed = ${system.seed}
130
+ gpu_allocator = ${system.gpu_allocator}
131
+ dropout = 0.1
132
+ patience = 1600
133
+ max_epochs = 0
134
+ max_steps = 20000
135
+ eval_frequency = 200
136
+ frozen_components = []
137
+ before_to_disk = null
138
+ before_update = null
139
+
140
+ [training.batcher]
141
+ @batchers = "spacy.batch_by_padded.v1"
142
+ discard_oversize = true
143
+ size = 2000
144
+ buffer = 256
145
+ get_length = null
146
+
147
+ [training.logger]
148
+ @loggers = "spacy.ConsoleLogger.v1"
149
+ progress_bar = false
150
+
151
+ [training.optimizer]
152
+ @optimizers = "Adam.v1"
153
+ beta1 = 0.9
154
+ beta2 = 0.999
155
+ L2_is_weight_decay = true
156
+ L2 = 0.01
157
+ grad_clip = 1.0
158
+ use_averages = false
159
+ eps = 0.00000001
160
+
161
+ [training.optimizer.learn_rate]
162
+ @schedules = "warmup_linear.v1"
163
+ warmup_steps = 250
164
+ total_steps = 20000
165
+ initial_rate = 0.00005
166
+
167
+ [training.score_weights]
168
+ tag_acc = 0.33
169
+ lemma_acc = 0.33
170
+ ents_f = 0.33
171
+ ents_p = 0.0
172
+ ents_r = 0.0
173
+ ents_per_type = null
174
+
175
+ [pretraining]
176
+
177
+ [initialize]
178
+ vectors = ${paths.vectors}
179
+ init_tok2vec = ${paths.init_tok2vec}
180
+ vocab_data = null
181
+ lookups = null
182
+ before_init = null
183
+ after_init = null
184
+
185
+ [initialize.components]
186
+
187
+ [initialize.tokenizer]
meta.json ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lang":"sr",
3
+ "name":"pln_tesla_j355",
4
+ "version":"1.0.0",
5
+ "description":"sr_pln_tesla_j355 is a spaCy model meticulously fine-tuned for Part-of-Speech Tagging, Lemmatization, and Named Entity Recognition in Serbian language texts. This advanced model incorporates a transformer layer based on Jerteh-355, enhancing its analytical capabilities. It is proficient in identifying 7 distinct categories of entities: PERS (persons), ROLE (professions), DEMO (demonyms), ORG (organizations), LOC (locations), WORK (artworks), and EVENT (events). Detailed information about these categories is available in the accompanying table. The development of this model has been made possible through the support of the Science Fund of the Republic of Serbia, under grant #7276, for the project 'Text Embeddings - Serbian Language Applications - TESLA'.",
6
+ "author":"Milica Ikoni\u0107 Ne\u0161i\u0107, Sa\u0161a Petalinkar, Mihailo \u0160kori\u0107, Ranka Stankovi\u0107",
7
+ "email":"",
8
+ "url":"https://tesla.rgf.bg.ac.rs/",
9
+ "license":"CC BY-SA 3.0",
10
+ "spacy_version":">=3.7.2,<3.8.0",
11
+ "spacy_git_version":"a89eae928",
12
+ "vectors":{
13
+ "width":0,
14
+ "vectors":0,
15
+ "keys":0,
16
+ "name":null
17
+ },
18
+ "labels":{
19
+ "transformer":[
20
+
21
+ ],
22
+ "tagger":[
23
+ "ADJ",
24
+ "ADP",
25
+ "ADV",
26
+ "AUX",
27
+ "CCONJ",
28
+ "DET",
29
+ "INTJ",
30
+ "NOUN",
31
+ "NUM",
32
+ "PART",
33
+ "PRON",
34
+ "PROPN",
35
+ "PUNCT",
36
+ "SCONJ",
37
+ "VERB",
38
+ "X"
39
+ ],
40
+ "ner":[
41
+ "DEMO",
42
+ "EVENT",
43
+ "LOC",
44
+ "ORG",
45
+ "PERS",
46
+ "ROLE",
47
+ "WORK"
48
+ ]
49
+ },
50
+ "pipeline":[
51
+ "transformer",
52
+ "tagger",
53
+ "trainable_lemmatizer",
54
+ "ner"
55
+ ],
56
+ "components":[
57
+ "transformer",
58
+ "tagger",
59
+ "trainable_lemmatizer",
60
+ "ner"
61
+ ],
62
+ "disabled":[
63
+
64
+ ],
65
+ "performance":{
66
+ "tag_acc":0.9847113194,
67
+ "lemma_acc":0.9833528137,
68
+ "ents_f":0.9574266793,
69
+ "ents_p":0.9563926016,
70
+ "ents_r":0.9584629955,
71
+ "ents_per_type":{
72
+ "ROLE":{
73
+ "p":0.8816568047,
74
+ "r":0.8804990151,
75
+ "f":0.8810775296
76
+ },
77
+ "PERS":{
78
+ "p":0.9868700763,
79
+ "r":0.9871169481,
80
+ "f":0.9869934967
81
+ },
82
+ "LOC":{
83
+ "p":0.9558634847,
84
+ "r":0.9818133896,
85
+ "f":0.968664673
86
+ },
87
+ "DEMO":{
88
+ "p":0.9340836013,
89
+ "r":0.9149606299,
90
+ "f":0.9244232299
91
+ },
92
+ "ORG":{
93
+ "p":0.8231098431,
94
+ "r":0.7882513661,
95
+ "f":0.805303559
96
+ },
97
+ "WORK":{
98
+ "p":0.6666666667,
99
+ "r":0.4788732394,
100
+ "f":0.5573770492
101
+ },
102
+ "EVENT":{
103
+ "p":0.72,
104
+ "r":0.5625,
105
+ "f":0.6315789474
106
+ }
107
+ },
108
+ "transformer_loss":1835.7227771963,
109
+ "tagger_loss":631.219531228,
110
+ "trainable_lemmatizer_loss":997.4938206542,
111
+ "ner_loss":405.0831144998
112
+ },
113
+ "requirements":[
114
+ "spacy-transformers>=1.3.4,<1.4.0"
115
+ ]
116
+ }
ner/cfg ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "moves":null,
3
+ "update_with_oracle_cut_size":100,
4
+ "multitasks":[
5
+
6
+ ],
7
+ "min_action_freq":1,
8
+ "learn_tokens":false,
9
+ "beam_width":1,
10
+ "beam_density":0.0,
11
+ "beam_update_prob":0.0,
12
+ "incorrect_spans_key":null
13
+ }
ner/model ADDED
Binary file (310 kB). View file
 
ner/moves ADDED
@@ -0,0 +1 @@
 
 
1
+ ��moves��{"0":{},"1":{"PERS":66081,"LOC":35152,"ROLE":14259,"ORG":10504,"DEMO":5087,"WORK":973,"EVENT":546},"2":{"PERS":66081,"LOC":35152,"ROLE":14259,"ORG":10504,"DEMO":5087,"WORK":973,"EVENT":546},"3":{"PERS":66081,"LOC":35152,"ROLE":14259,"ORG":10504,"DEMO":5087,"WORK":973,"EVENT":546},"4":{"PERS":66081,"LOC":35152,"ROLE":14259,"ORG":10504,"DEMO":5087,"WORK":973,"EVENT":546,"":1},"5":{"":1}}�cfg��neg_key�
sr_pln_tesla_j355-any-py3-none-any.whl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f0d45e6f104f9121c01d52ea63906c04989c78672210fa5b1d02d5c787b18cf3
3
+ size 1316738728
tagger/cfg ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "label_smoothing":0.0,
3
+ "labels":[
4
+ "ADJ",
5
+ "ADP",
6
+ "ADV",
7
+ "AUX",
8
+ "CCONJ",
9
+ "DET",
10
+ "INTJ",
11
+ "NOUN",
12
+ "NUM",
13
+ "PART",
14
+ "PRON",
15
+ "PROPN",
16
+ "PUNCT",
17
+ "SCONJ",
18
+ "VERB",
19
+ "X"
20
+ ],
21
+ "neg_prefix":"!",
22
+ "overwrite":false
23
+ }
tagger/model ADDED
Binary file (66.2 kB). View file
 
tokenizer ADDED
Binary file (32.6 kB). View file
 
trainable_lemmatizer/cfg ADDED
@@ -0,0 +1,1978 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "labels":[
3
+ 2,
4
+ 4,
5
+ 7,
6
+ 8,
7
+ 10,
8
+ 12,
9
+ 15,
10
+ 17,
11
+ 20,
12
+ 22,
13
+ 24,
14
+ 26,
15
+ 28,
16
+ 31,
17
+ 34,
18
+ 36,
19
+ 39,
20
+ 41,
21
+ 44,
22
+ 46,
23
+ 49,
24
+ 51,
25
+ 53,
26
+ 54,
27
+ 56,
28
+ 58,
29
+ 60,
30
+ 62,
31
+ 63,
32
+ 66,
33
+ 68,
34
+ 69,
35
+ 71,
36
+ 73,
37
+ 74,
38
+ 76,
39
+ 78,
40
+ 79,
41
+ 81,
42
+ 83,
43
+ 85,
44
+ 87,
45
+ 88,
46
+ 89,
47
+ 91,
48
+ 93,
49
+ 95,
50
+ 97,
51
+ 99,
52
+ 100,
53
+ 102,
54
+ 103,
55
+ 105,
56
+ 107,
57
+ 109,
58
+ 111,
59
+ 113,
60
+ 115,
61
+ 117,
62
+ 119,
63
+ 121,
64
+ 124,
65
+ 126,
66
+ 128,
67
+ 132,
68
+ 134,
69
+ 136,
70
+ 137,
71
+ 139,
72
+ 141,
73
+ 143,
74
+ 147,
75
+ 149,
76
+ 150,
77
+ 153,
78
+ 156,
79
+ 157,
80
+ 159,
81
+ 161,
82
+ 164,
83
+ 166,
84
+ 167,
85
+ 169,
86
+ 172,
87
+ 173,
88
+ 174,
89
+ 175,
90
+ 177,
91
+ 178,
92
+ 179,
93
+ 180,
94
+ 182,
95
+ 184,
96
+ 185,
97
+ 186,
98
+ 187,
99
+ 189,
100
+ 191,
101
+ 193,
102
+ 195,
103
+ 197,
104
+ 199,
105
+ 201,
106
+ 203,
107
+ 205,
108
+ 208,
109
+ 209,
110
+ 210,
111
+ 213,
112
+ 215,
113
+ 217,
114
+ 219,
115
+ 221,
116
+ 222,
117
+ 223,
118
+ 225,
119
+ 227,
120
+ 229,
121
+ 231,
122
+ 233,
123
+ 235,
124
+ 238,
125
+ 240,
126
+ 242,
127
+ 244,
128
+ 246,
129
+ 248,
130
+ 250,
131
+ 252,
132
+ 253,
133
+ 254,
134
+ 255,
135
+ 257,
136
+ 259,
137
+ 260,
138
+ 262,
139
+ 264,
140
+ 266,
141
+ 268,
142
+ 270,
143
+ 271,
144
+ 272,
145
+ 273,
146
+ 274,
147
+ 275,
148
+ 277,
149
+ 279,
150
+ 282,
151
+ 284,
152
+ 285,
153
+ 287,
154
+ 288,
155
+ 290,
156
+ 292,
157
+ 294,
158
+ 295,
159
+ 297,
160
+ 299,
161
+ 300,
162
+ 302,
163
+ 304,
164
+ 306,
165
+ 308,
166
+ 311,
167
+ 313,
168
+ 314,
169
+ 316,
170
+ 317,
171
+ 319,
172
+ 321,
173
+ 322,
174
+ 325,
175
+ 327,
176
+ 328,
177
+ 330,
178
+ 332,
179
+ 333,
180
+ 335,
181
+ 337,
182
+ 339,
183
+ 341,
184
+ 343,
185
+ 345,
186
+ 347,
187
+ 349,
188
+ 351,
189
+ 353,
190
+ 356,
191
+ 358,
192
+ 360,
193
+ 363,
194
+ 365,
195
+ 366,
196
+ 368,
197
+ 370,
198
+ 373,
199
+ 374,
200
+ 376,
201
+ 377,
202
+ 378,
203
+ 380,
204
+ 382,
205
+ 384,
206
+ 386,
207
+ 388,
208
+ 389,
209
+ 390,
210
+ 392,
211
+ 395,
212
+ 398,
213
+ 399,
214
+ 401,
215
+ 402,
216
+ 404,
217
+ 406,
218
+ 408,
219
+ 411,
220
+ 413,
221
+ 416,
222
+ 418,
223
+ 420,
224
+ 421,
225
+ 422,
226
+ 424,
227
+ 426,
228
+ 428,
229
+ 429,
230
+ 432,
231
+ 433,
232
+ 435,
233
+ 438,
234
+ 440,
235
+ 442,
236
+ 444,
237
+ 446,
238
+ 448,
239
+ 450,
240
+ 453,
241
+ 454,
242
+ 455,
243
+ 457,
244
+ 459,
245
+ 461,
246
+ 462,
247
+ 464,
248
+ 465,
249
+ 468,
250
+ 469,
251
+ 471,
252
+ 473,
253
+ 474,
254
+ 476,
255
+ 478,
256
+ 480,
257
+ 482,
258
+ 484,
259
+ 486,
260
+ 487,
261
+ 491,
262
+ 492,
263
+ 493,
264
+ 494,
265
+ 496,
266
+ 498,
267
+ 500,
268
+ 501,
269
+ 503,
270
+ 505,
271
+ 507,
272
+ 508,
273
+ 510,
274
+ 512,
275
+ 515,
276
+ 516,
277
+ 517,
278
+ 518,
279
+ 519,
280
+ 521,
281
+ 523,
282
+ 525,
283
+ 526,
284
+ 528,
285
+ 530,
286
+ 192,
287
+ 532,
288
+ 534,
289
+ 535,
290
+ 537,
291
+ 539,
292
+ 540,
293
+ 541,
294
+ 542,
295
+ 543,
296
+ 545,
297
+ 547,
298
+ 549,
299
+ 550,
300
+ 552,
301
+ 554,
302
+ 556,
303
+ 557,
304
+ 558,
305
+ 559,
306
+ 562,
307
+ 183,
308
+ 565,
309
+ 566,
310
+ 568,
311
+ 570,
312
+ 572,
313
+ 574,
314
+ 576,
315
+ 577,
316
+ 578,
317
+ 580,
318
+ 582,
319
+ 583,
320
+ 587,
321
+ 589,
322
+ 592,
323
+ 593,
324
+ 596,
325
+ 599,
326
+ 601,
327
+ 603,
328
+ 604,
329
+ 606,
330
+ 608,
331
+ 610,
332
+ 612,
333
+ 613,
334
+ 616,
335
+ 618,
336
+ 620,
337
+ 621,
338
+ 623,
339
+ 625,
340
+ 626,
341
+ 627,
342
+ 629,
343
+ 630,
344
+ 631,
345
+ 632,
346
+ 634,
347
+ 635,
348
+ 636,
349
+ 637,
350
+ 638,
351
+ 641,
352
+ 643,
353
+ 645,
354
+ 646,
355
+ 647,
356
+ 650,
357
+ 652,
358
+ 655,
359
+ 657,
360
+ 659,
361
+ 661,
362
+ 663,
363
+ 665,
364
+ 668,
365
+ 669,
366
+ 671,
367
+ 672,
368
+ 674,
369
+ 676,
370
+ 261,
371
+ 680,
372
+ 681,
373
+ 683,
374
+ 685,
375
+ 687,
376
+ 688,
377
+ 689,
378
+ 690,
379
+ 693,
380
+ 694,
381
+ 696,
382
+ 698,
383
+ 700,
384
+ 702,
385
+ 705,
386
+ 706,
387
+ 708,
388
+ 709,
389
+ 710,
390
+ 713,
391
+ 715,
392
+ 717,
393
+ 718,
394
+ 720,
395
+ 721,
396
+ 723,
397
+ 724,
398
+ 727,
399
+ 728,
400
+ 731,
401
+ 732,
402
+ 734,
403
+ 736,
404
+ 738,
405
+ 741,
406
+ 744,
407
+ 745,
408
+ 746,
409
+ 747,
410
+ 748,
411
+ 750,
412
+ 752,
413
+ 755,
414
+ 757,
415
+ 759,
416
+ 760,
417
+ 762,
418
+ 763,
419
+ 765,
420
+ 766,
421
+ 769,
422
+ 771,
423
+ 772,
424
+ 774,
425
+ 775,
426
+ 777,
427
+ 779,
428
+ 781,
429
+ 782,
430
+ 783,
431
+ 785,
432
+ 787,
433
+ 789,
434
+ 791,
435
+ 792,
436
+ 794,
437
+ 796,
438
+ 797,
439
+ 798,
440
+ 800,
441
+ 802,
442
+ 803,
443
+ 804,
444
+ 806,
445
+ 809,
446
+ 811,
447
+ 813,
448
+ 815,
449
+ 818,
450
+ 819,
451
+ 821,
452
+ 822,
453
+ 825,
454
+ 827,
455
+ 829,
456
+ 830,
457
+ 833,
458
+ 834,
459
+ 836,
460
+ 837,
461
+ 840,
462
+ 841,
463
+ 843,
464
+ 844,
465
+ 846,
466
+ 847,
467
+ 848,
468
+ 850,
469
+ 851,
470
+ 853,
471
+ 854,
472
+ 855,
473
+ 856,
474
+ 858,
475
+ 860,
476
+ 862,
477
+ 863,
478
+ 864,
479
+ 865,
480
+ 867,
481
+ 869,
482
+ 870,
483
+ 871,
484
+ 872,
485
+ 876,
486
+ 879,
487
+ 882,
488
+ 884,
489
+ 887,
490
+ 889,
491
+ 891,
492
+ 892,
493
+ 893,
494
+ 895,
495
+ 898,
496
+ 900,
497
+ 902,
498
+ 904,
499
+ 906,
500
+ 909,
501
+ 911,
502
+ 913,
503
+ 915,
504
+ 916,
505
+ 917,
506
+ 918,
507
+ 920,
508
+ 922,
509
+ 923,
510
+ 924,
511
+ 925,
512
+ 928,
513
+ 930,
514
+ 931,
515
+ 932,
516
+ 934,
517
+ 937,
518
+ 940,
519
+ 943,
520
+ 945,
521
+ 946,
522
+ 950,
523
+ 951,
524
+ 954,
525
+ 956,
526
+ 957,
527
+ 958,
528
+ 959,
529
+ 960,
530
+ 962,
531
+ 964,
532
+ 968,
533
+ 970,
534
+ 972,
535
+ 974,
536
+ 975,
537
+ 977,
538
+ 979,
539
+ 980,
540
+ 982,
541
+ 983,
542
+ 985,
543
+ 987,
544
+ 988,
545
+ 991,
546
+ 993,
547
+ 995,
548
+ 997,
549
+ 998,
550
+ 999,
551
+ 1000,
552
+ 1002,
553
+ 1004,
554
+ 1006,
555
+ 1008,
556
+ 1010,
557
+ 1012,
558
+ 1014,
559
+ 1016,
560
+ 1018,
561
+ 1019,
562
+ 1020,
563
+ 1021,
564
+ 1022,
565
+ 1024,
566
+ 1027,
567
+ 1029,
568
+ 1030,
569
+ 1032,
570
+ 1034,
571
+ 1037,
572
+ 1039,
573
+ 1041,
574
+ 1044,
575
+ 1046,
576
+ 1047,
577
+ 1049,
578
+ 1050,
579
+ 1051,
580
+ 1053,
581
+ 1055,
582
+ 1057,
583
+ 1059,
584
+ 1060,
585
+ 1062,
586
+ 1063,
587
+ 1066,
588
+ 1068,
589
+ 1071,
590
+ 1074,
591
+ 1076,
592
+ 1079,
593
+ 1081,
594
+ 1083,
595
+ 1084,
596
+ 1086,
597
+ 1087,
598
+ 1088,
599
+ 1089,
600
+ 1091,
601
+ 1093,
602
+ 1095,
603
+ 1096,
604
+ 1097,
605
+ 1099,
606
+ 1101,
607
+ 1103,
608
+ 1104,
609
+ 1105,
610
+ 1106,
611
+ 1107,
612
+ 1109,
613
+ 1111,
614
+ 1113,
615
+ 1115,
616
+ 1116,
617
+ 1117,
618
+ 1118,
619
+ 1120,
620
+ 1122,
621
+ 1124,
622
+ 1126,
623
+ 1128,
624
+ 1129,
625
+ 1132,
626
+ 1135,
627
+ 1138,
628
+ 1140,
629
+ 1141,
630
+ 1142,
631
+ 1143,
632
+ 1145,
633
+ 1146,
634
+ 1147,
635
+ 1148,
636
+ 1149,
637
+ 1151,
638
+ 1153,
639
+ 1154,
640
+ 1155,
641
+ 1156,
642
+ 1158,
643
+ 1160,
644
+ 1161,
645
+ 1162,
646
+ 1164,
647
+ 1165,
648
+ 1166,
649
+ 1167,
650
+ 1168,
651
+ 1169,
652
+ 1170,
653
+ 1171,
654
+ 1172,
655
+ 1173,
656
+ 1174,
657
+ 1175,
658
+ 1177,
659
+ 1178,
660
+ 1180,
661
+ 1181,
662
+ 1183,
663
+ 1185,
664
+ 1186,
665
+ 1187,
666
+ 1189,
667
+ 1192,
668
+ 1193,
669
+ 1195,
670
+ 1196,
671
+ 1197,
672
+ 1199,
673
+ 1201,
674
+ 1202,
675
+ 1204,
676
+ 1206,
677
+ 1207,
678
+ 1208,
679
+ 1210,
680
+ 1211,
681
+ 1214,
682
+ 1216,
683
+ 1217,
684
+ 1219,
685
+ 1221,
686
+ 1222,
687
+ 1224,
688
+ 1226,
689
+ 1227,
690
+ 1228,
691
+ 1229,
692
+ 1232,
693
+ 1234,
694
+ 1237,
695
+ 1239,
696
+ 1241,
697
+ 1242,
698
+ 1243,
699
+ 1245,
700
+ 1246,
701
+ 1249,
702
+ 1251,
703
+ 1253,
704
+ 1255,
705
+ 1256,
706
+ 1257,
707
+ 1258,
708
+ 1260,
709
+ 1262,
710
+ 1264,
711
+ 1266,
712
+ 1267,
713
+ 1269,
714
+ 1270,
715
+ 1271,
716
+ 1272,
717
+ 1274,
718
+ 1275,
719
+ 1277,
720
+ 1278,
721
+ 1280,
722
+ 1282,
723
+ 1284,
724
+ 1286,
725
+ 1288,
726
+ 1290,
727
+ 1291,
728
+ 1292,
729
+ 1293,
730
+ 1296,
731
+ 1298,
732
+ 1301,
733
+ 1303,
734
+ 1305,
735
+ 1307,
736
+ 1308,
737
+ 1309,
738
+ 1311,
739
+ 1312,
740
+ 1313,
741
+ 1314,
742
+ 1316,
743
+ 1317,
744
+ 1318,
745
+ 1319,
746
+ 1321,
747
+ 1323,
748
+ 1324,
749
+ 1325,
750
+ 1326,
751
+ 1328,
752
+ 1330,
753
+ 1332,
754
+ 1001,
755
+ 1334,
756
+ 1335,
757
+ 1336,
758
+ 1339,
759
+ 1340,
760
+ 1342,
761
+ 1344,
762
+ 1346,
763
+ 1347,
764
+ 1349,
765
+ 1352,
766
+ 1354,
767
+ 1356,
768
+ 1357,
769
+ 1359,
770
+ 1362,
771
+ 1363,
772
+ 1364,
773
+ 1365,
774
+ 1366,
775
+ 1368,
776
+ 1369,
777
+ 1370,
778
+ 1371,
779
+ 1373,
780
+ 1376,
781
+ 1377,
782
+ 1378,
783
+ 1380,
784
+ 1381,
785
+ 1382,
786
+ 1384,
787
+ 1386,
788
+ 1388,
789
+ 1389,
790
+ 1390,
791
+ 1391,
792
+ 1393,
793
+ 1396,
794
+ 1398,
795
+ 1399,
796
+ 1401,
797
+ 1404,
798
+ 1406,
799
+ 1408,
800
+ 1409,
801
+ 1410,
802
+ 1412,
803
+ 1414,
804
+ 1415,
805
+ 1417,
806
+ 1419,
807
+ 1420,
808
+ 1421,
809
+ 1423,
810
+ 1424,
811
+ 1428,
812
+ 1429,
813
+ 1430,
814
+ 1432,
815
+ 1435,
816
+ 1436,
817
+ 1437,
818
+ 1439,
819
+ 1441,
820
+ 1442,
821
+ 1444,
822
+ 1446,
823
+ 1447,
824
+ 1448,
825
+ 1449,
826
+ 1451,
827
+ 1452,
828
+ 1453,
829
+ 1454,
830
+ 1457,
831
+ 1459,
832
+ 1461,
833
+ 1462,
834
+ 1464,
835
+ 1465,
836
+ 1466,
837
+ 1467,
838
+ 1468,
839
+ 1471,
840
+ 1473,
841
+ 1474,
842
+ 1475,
843
+ 1477,
844
+ 1480,
845
+ 1481,
846
+ 1483,
847
+ 1485,
848
+ 1486,
849
+ 1488,
850
+ 1489,
851
+ 1490,
852
+ 1491,
853
+ 1494,
854
+ 1495,
855
+ 1496,
856
+ 1497,
857
+ 1499,
858
+ 1500,
859
+ 1501,
860
+ 1502,
861
+ 1503,
862
+ 1505,
863
+ 1507,
864
+ 1508,
865
+ 1509,
866
+ 1511,
867
+ 1512,
868
+ 1513,
869
+ 1515,
870
+ 1517,
871
+ 1518,
872
+ 1519,
873
+ 1521,
874
+ 1523,
875
+ 1524,
876
+ 1525,
877
+ 1527,
878
+ 1529,
879
+ 1531,
880
+ 1532,
881
+ 1533,
882
+ 1535,
883
+ 1536,
884
+ 1537,
885
+ 1538,
886
+ 218,
887
+ 1540,
888
+ 1542,
889
+ 1543,
890
+ 1544,
891
+ 1546,
892
+ 1547,
893
+ 1548,
894
+ 1549,
895
+ 1550,
896
+ 1552,
897
+ 1553,
898
+ 1554,
899
+ 1555,
900
+ 1556,
901
+ 1557,
902
+ 1560,
903
+ 1562,
904
+ 1564,
905
+ 1566,
906
+ 1568,
907
+ 1569,
908
+ 1570,
909
+ 1571,
910
+ 1572,
911
+ 1574,
912
+ 1576,
913
+ 1578,
914
+ 1579,
915
+ 1582,
916
+ 1584,
917
+ 1586,
918
+ 1588,
919
+ 1590,
920
+ 1592,
921
+ 1593,
922
+ 1594,
923
+ 1595,
924
+ 1596,
925
+ 1599,
926
+ 1600,
927
+ 1601,
928
+ 1602,
929
+ 1603,
930
+ 1604,
931
+ 1605,
932
+ 1606,
933
+ 1608,
934
+ 1610,
935
+ 1611,
936
+ 1613,
937
+ 1614,
938
+ 1616,
939
+ 1618,
940
+ 1619,
941
+ 1620,
942
+ 1621,
943
+ 1623,
944
+ 1624,
945
+ 1625,
946
+ 1627,
947
+ 1628,
948
+ 1629,
949
+ 1630,
950
+ 1631,
951
+ 1632,
952
+ 1633,
953
+ 1635,
954
+ 1638,
955
+ 1640,
956
+ 1641,
957
+ 1643,
958
+ 1644,
959
+ 1645,
960
+ 1646,
961
+ 1648,
962
+ 1650,
963
+ 1652,
964
+ 1653,
965
+ 1656,
966
+ 1658,
967
+ 1659,
968
+ 1661,
969
+ 1663,
970
+ 1665,
971
+ 1666,
972
+ 1667,
973
+ 1669,
974
+ 1670,
975
+ 1671,
976
+ 1673,
977
+ 1675,
978
+ 1677,
979
+ 1678,
980
+ 1679,
981
+ 1680,
982
+ 1682,
983
+ 1684,
984
+ 1686,
985
+ 1688,
986
+ 1690,
987
+ 1692,
988
+ 1693,
989
+ 1694,
990
+ 1696,
991
+ 1697,
992
+ 1698,
993
+ 1700,
994
+ 1701,
995
+ 1702,
996
+ 1703,
997
+ 1704,
998
+ 1705,
999
+ 1707,
1000
+ 1709,
1001
+ 1711,
1002
+ 1713,
1003
+ 1715,
1004
+ 1716,
1005
+ 1717,
1006
+ 1720,
1007
+ 1722,
1008
+ 1723,
1009
+ 1724,
1010
+ 1726,
1011
+ 1728,
1012
+ 1730,
1013
+ 1733,
1014
+ 1735,
1015
+ 1736,
1016
+ 1737,
1017
+ 1739,
1018
+ 1740,
1019
+ 1742,
1020
+ 1745,
1021
+ 1747,
1022
+ 1749,
1023
+ 1751,
1024
+ 1752,
1025
+ 1754,
1026
+ 1756,
1027
+ 1757,
1028
+ 1759,
1029
+ 1760,
1030
+ 1761,
1031
+ 1762,
1032
+ 1764,
1033
+ 1765,
1034
+ 1766,
1035
+ 1768,
1036
+ 1769,
1037
+ 1770,
1038
+ 1772,
1039
+ 1773,
1040
+ 1775,
1041
+ 1776,
1042
+ 1777,
1043
+ 1779,
1044
+ 1781,
1045
+ 1783,
1046
+ 1785,
1047
+ 1787,
1048
+ 1789,
1049
+ 1791,
1050
+ 1792,
1051
+ 1794,
1052
+ 1795,
1053
+ 1798,
1054
+ 1800,
1055
+ 1802,
1056
+ 1803,
1057
+ 1804,
1058
+ 1805,
1059
+ 1807,
1060
+ 1809,
1061
+ 1811,
1062
+ 1813,
1063
+ 1814,
1064
+ 1815,
1065
+ 1817,
1066
+ 1819,
1067
+ 1820,
1068
+ 1821,
1069
+ 1822,
1070
+ 1824,
1071
+ 1826,
1072
+ 1828,
1073
+ 1831,
1074
+ 1832,
1075
+ 1834,
1076
+ 1836,
1077
+ 1837,
1078
+ 1838,
1079
+ 1839,
1080
+ 1840,
1081
+ 1841,
1082
+ 1842,
1083
+ 1843,
1084
+ 1846,
1085
+ 1848,
1086
+ 1849,
1087
+ 1851,
1088
+ 1854,
1089
+ 1857,
1090
+ 1859,
1091
+ 77,
1092
+ 1860,
1093
+ 1861,
1094
+ 1863,
1095
+ 1864,
1096
+ 1865,
1097
+ 1866,
1098
+ 1867,
1099
+ 1869,
1100
+ 1871,
1101
+ 1873,
1102
+ 1874,
1103
+ 1876,
1104
+ 1878,
1105
+ 1879,
1106
+ 1880,
1107
+ 1882,
1108
+ 1883,
1109
+ 1886,
1110
+ 1887,
1111
+ 1888,
1112
+ 1889,
1113
+ 1890,
1114
+ 1891,
1115
+ 1893,
1116
+ 1895,
1117
+ 1896,
1118
+ 1897,
1119
+ 1898,
1120
+ 1899,
1121
+ 1900,
1122
+ 1903,
1123
+ 1905,
1124
+ 1906,
1125
+ 1907,
1126
+ 1908,
1127
+ 1909,
1128
+ 1910,
1129
+ 1913,
1130
+ 1914,
1131
+ 1915,
1132
+ 1916,
1133
+ 1917,
1134
+ 1919,
1135
+ 1920,
1136
+ 1921,
1137
+ 1922,
1138
+ 1924,
1139
+ 1925,
1140
+ 1926,
1141
+ 1928,
1142
+ 1929,
1143
+ 1930,
1144
+ 1932,
1145
+ 1934,
1146
+ 1936,
1147
+ 1938,
1148
+ 1939,
1149
+ 1941,
1150
+ 1942,
1151
+ 1943,
1152
+ 1944,
1153
+ 1946,
1154
+ 1947,
1155
+ 1949,
1156
+ 1950,
1157
+ 1952,
1158
+ 1954,
1159
+ 1955,
1160
+ 1956,
1161
+ 1957,
1162
+ 1958,
1163
+ 1959,
1164
+ 1960,
1165
+ 1962,
1166
+ 1963,
1167
+ 1964,
1168
+ 1965,
1169
+ 1966,
1170
+ 1968,
1171
+ 1969,
1172
+ 1970,
1173
+ 1972,
1174
+ 1974,
1175
+ 1975,
1176
+ 1978,
1177
+ 1979,
1178
+ 1980,
1179
+ 1982,
1180
+ 1983,
1181
+ 1985,
1182
+ 1987,
1183
+ 1988,
1184
+ 1990,
1185
+ 1991,
1186
+ 1992,
1187
+ 1994,
1188
+ 1995,
1189
+ 1996,
1190
+ 1998,
1191
+ 1999,
1192
+ 2000,
1193
+ 2001,
1194
+ 2002,
1195
+ 2004,
1196
+ 2006,
1197
+ 2007,
1198
+ 2009,
1199
+ 2011,
1200
+ 2013,
1201
+ 2014,
1202
+ 2017,
1203
+ 2019,
1204
+ 2023,
1205
+ 2024,
1206
+ 2025,
1207
+ 2026,
1208
+ 2027,
1209
+ 2030,
1210
+ 2031,
1211
+ 2033,
1212
+ 2034,
1213
+ 2035,
1214
+ 2036,
1215
+ 2037,
1216
+ 2039,
1217
+ 2040,
1218
+ 2042,
1219
+ 2043,
1220
+ 2044,
1221
+ 2046,
1222
+ 2047,
1223
+ 2048,
1224
+ 2049,
1225
+ 2050,
1226
+ 2051,
1227
+ 2053,
1228
+ 94,
1229
+ 2055,
1230
+ 2057,
1231
+ 2059,
1232
+ 2061,
1233
+ 2062,
1234
+ 2063,
1235
+ 2064,
1236
+ 2065,
1237
+ 2066,
1238
+ 2067,
1239
+ 2068,
1240
+ 2070,
1241
+ 2073,
1242
+ 2076,
1243
+ 2077,
1244
+ 2079,
1245
+ 2080,
1246
+ 2081,
1247
+ 2082,
1248
+ 2083,
1249
+ 2084,
1250
+ 2085,
1251
+ 2086,
1252
+ 2089,
1253
+ 2090,
1254
+ 2091,
1255
+ 2092,
1256
+ 2093,
1257
+ 2094,
1258
+ 2095,
1259
+ 2096,
1260
+ 2097,
1261
+ 2098,
1262
+ 2099,
1263
+ 2100,
1264
+ 2102,
1265
+ 2104,
1266
+ 2105,
1267
+ 2106,
1268
+ 2108,
1269
+ 2109,
1270
+ 2111,
1271
+ 2113,
1272
+ 2114,
1273
+ 2115,
1274
+ 2117,
1275
+ 2119,
1276
+ 2120,
1277
+ 2121,
1278
+ 2122,
1279
+ 2124,
1280
+ 2125,
1281
+ 2126,
1282
+ 2127,
1283
+ 2128,
1284
+ 2130,
1285
+ 2131,
1286
+ 2132,
1287
+ 2133,
1288
+ 2135,
1289
+ 2136,
1290
+ 2137,
1291
+ 2138,
1292
+ 2139,
1293
+ 2140,
1294
+ 2142,
1295
+ 2144,
1296
+ 2145,
1297
+ 2146,
1298
+ 2148,
1299
+ 2151,
1300
+ 2152,
1301
+ 2153,
1302
+ 2154,
1303
+ 2155,
1304
+ 2156,
1305
+ 2158,
1306
+ 2159,
1307
+ 2161,
1308
+ 2162,
1309
+ 2163,
1310
+ 2164,
1311
+ 2165,
1312
+ 2167,
1313
+ 2168,
1314
+ 2169,
1315
+ 2170,
1316
+ 2171,
1317
+ 2172,
1318
+ 2173,
1319
+ 2174,
1320
+ 2176,
1321
+ 2177,
1322
+ 2178,
1323
+ 2179,
1324
+ 2180,
1325
+ 2183,
1326
+ 2184,
1327
+ 2185,
1328
+ 2186,
1329
+ 2188,
1330
+ 2189,
1331
+ 2192,
1332
+ 2194,
1333
+ 2196,
1334
+ 2197,
1335
+ 2198,
1336
+ 2200,
1337
+ 2201,
1338
+ 2203,
1339
+ 2204,
1340
+ 2205,
1341
+ 2206,
1342
+ 2207,
1343
+ 2210,
1344
+ 2211,
1345
+ 2212,
1346
+ 2214,
1347
+ 2217,
1348
+ 2218,
1349
+ 2220,
1350
+ 2222,
1351
+ 2224,
1352
+ 2225,
1353
+ 2226,
1354
+ 2228,
1355
+ 1427,
1356
+ 2229,
1357
+ 2230,
1358
+ 2231,
1359
+ 2232,
1360
+ 2233,
1361
+ 2234,
1362
+ 2235,
1363
+ 2237,
1364
+ 2238,
1365
+ 2241,
1366
+ 2242,
1367
+ 2243,
1368
+ 2246,
1369
+ 2247,
1370
+ 2249,
1371
+ 2250,
1372
+ 2252,
1373
+ 2253,
1374
+ 2254,
1375
+ 2257,
1376
+ 2258,
1377
+ 2259,
1378
+ 2261,
1379
+ 2262,
1380
+ 2263,
1381
+ 2264,
1382
+ 2267,
1383
+ 2270,
1384
+ 2272,
1385
+ 2273,
1386
+ 2275,
1387
+ 2276,
1388
+ 2277,
1389
+ 2279,
1390
+ 2281,
1391
+ 2282,
1392
+ 2283,
1393
+ 2284,
1394
+ 2286,
1395
+ 2287,
1396
+ 2288,
1397
+ 2290,
1398
+ 2292,
1399
+ 2294,
1400
+ 2295,
1401
+ 2296,
1402
+ 2298,
1403
+ 2300,
1404
+ 2301,
1405
+ 2302,
1406
+ 2303,
1407
+ 2305,
1408
+ 2307,
1409
+ 2308,
1410
+ 2310,
1411
+ 2311,
1412
+ 2312,
1413
+ 2313,
1414
+ 2314,
1415
+ 2315,
1416
+ 2316,
1417
+ 2317,
1418
+ 2318,
1419
+ 2320,
1420
+ 2321,
1421
+ 2322,
1422
+ 2323,
1423
+ 2324,
1424
+ 2325,
1425
+ 2326,
1426
+ 2328,
1427
+ 2330,
1428
+ 2331,
1429
+ 2333,
1430
+ 2334,
1431
+ 2336,
1432
+ 2337,
1433
+ 2339,
1434
+ 2341,
1435
+ 2342,
1436
+ 2344,
1437
+ 2345,
1438
+ 2346,
1439
+ 2347,
1440
+ 2349,
1441
+ 2351,
1442
+ 2353,
1443
+ 2355,
1444
+ 2356,
1445
+ 2357,
1446
+ 2358,
1447
+ 2360,
1448
+ 2362,
1449
+ 2364,
1450
+ 2365,
1451
+ 2366,
1452
+ 2367,
1453
+ 2368,
1454
+ 2369,
1455
+ 2372,
1456
+ 2374,
1457
+ 2376,
1458
+ 2377,
1459
+ 2378,
1460
+ 2380,
1461
+ 2381,
1462
+ 2382,
1463
+ 2383,
1464
+ 2385,
1465
+ 2386,
1466
+ 2387,
1467
+ 2389,
1468
+ 2390,
1469
+ 2391,
1470
+ 2392,
1471
+ 2393,
1472
+ 2395,
1473
+ 2396,
1474
+ 2398,
1475
+ 2401,
1476
+ 2403,
1477
+ 2404,
1478
+ 2405,
1479
+ 2406,
1480
+ 2407,
1481
+ 2409,
1482
+ 2410,
1483
+ 2411,
1484
+ 2412,
1485
+ 2415,
1486
+ 2417,
1487
+ 2418,
1488
+ 2419,
1489
+ 2421,
1490
+ 2422,
1491
+ 2423,
1492
+ 2425,
1493
+ 1986,
1494
+ 2427,
1495
+ 2428,
1496
+ 2429,
1497
+ 2430,
1498
+ 2432,
1499
+ 2434,
1500
+ 2436,
1501
+ 2437,
1502
+ 2439,
1503
+ 2441,
1504
+ 2442,
1505
+ 2443,
1506
+ 2446,
1507
+ 2447,
1508
+ 2449,
1509
+ 2450,
1510
+ 2451,
1511
+ 2452,
1512
+ 2453,
1513
+ 2454,
1514
+ 2455,
1515
+ 2457,
1516
+ 2458,
1517
+ 2460,
1518
+ 2461,
1519
+ 2463,
1520
+ 2465,
1521
+ 2466,
1522
+ 2467,
1523
+ 2468,
1524
+ 2470,
1525
+ 2472,
1526
+ 2474,
1527
+ 2475,
1528
+ 2477,
1529
+ 2479,
1530
+ 2480,
1531
+ 2482,
1532
+ 2483,
1533
+ 2485,
1534
+ 2486,
1535
+ 2487,
1536
+ 2490,
1537
+ 2491,
1538
+ 2493,
1539
+ 2494,
1540
+ 2495,
1541
+ 2497,
1542
+ 2498,
1543
+ 2499,
1544
+ 2500,
1545
+ 2501,
1546
+ 2502,
1547
+ 2503,
1548
+ 2504,
1549
+ 2506,
1550
+ 2507,
1551
+ 2508,
1552
+ 2509,
1553
+ 2510,
1554
+ 2512,
1555
+ 2514,
1556
+ 2517,
1557
+ 2518,
1558
+ 2519,
1559
+ 2521,
1560
+ 2522,
1561
+ 2524,
1562
+ 2525,
1563
+ 2527,
1564
+ 2528,
1565
+ 2530,
1566
+ 2532,
1567
+ 2533,
1568
+ 2535,
1569
+ 2536,
1570
+ 2537,
1571
+ 2538,
1572
+ 2539,
1573
+ 2541,
1574
+ 2544,
1575
+ 2545,
1576
+ 2546,
1577
+ 2547,
1578
+ 2549,
1579
+ 2551,
1580
+ 2554,
1581
+ 2555,
1582
+ 2556,
1583
+ 2557,
1584
+ 2559,
1585
+ 2560,
1586
+ 2561,
1587
+ 2562,
1588
+ 2563,
1589
+ 2564,
1590
+ 2565,
1591
+ 2567,
1592
+ 2569,
1593
+ 2570,
1594
+ 2571,
1595
+ 2573,
1596
+ 2574,
1597
+ 2575,
1598
+ 2576,
1599
+ 2577,
1600
+ 2578,
1601
+ 2580,
1602
+ 2582,
1603
+ 2585,
1604
+ 2587,
1605
+ 2589,
1606
+ 2591,
1607
+ 2592,
1608
+ 2594,
1609
+ 2595,
1610
+ 2597,
1611
+ 2599,
1612
+ 2600,
1613
+ 2602,
1614
+ 2604,
1615
+ 2605,
1616
+ 2607,
1617
+ 2608,
1618
+ 2610,
1619
+ 2612,
1620
+ 2615,
1621
+ 2616,
1622
+ 2618,
1623
+ 2620,
1624
+ 2621,
1625
+ 2622,
1626
+ 2623,
1627
+ 2624,
1628
+ 2627,
1629
+ 2629,
1630
+ 2630,
1631
+ 2631,
1632
+ 2634,
1633
+ 2635,
1634
+ 2638,
1635
+ 2640,
1636
+ 2641,
1637
+ 2642,
1638
+ 2643,
1639
+ 2645,
1640
+ 2647,
1641
+ 2648,
1642
+ 2650,
1643
+ 2653,
1644
+ 2654,
1645
+ 2656,
1646
+ 2659,
1647
+ 2661,
1648
+ 2663,
1649
+ 2664,
1650
+ 2666,
1651
+ 2667,
1652
+ 2668,
1653
+ 2669,
1654
+ 2671,
1655
+ 2672,
1656
+ 2673,
1657
+ 2676,
1658
+ 2677,
1659
+ 2680,
1660
+ 2681,
1661
+ 2682,
1662
+ 2685,
1663
+ 2686,
1664
+ 2687,
1665
+ 2688,
1666
+ 2689,
1667
+ 2691,
1668
+ 2692,
1669
+ 2693,
1670
+ 2694,
1671
+ 2695,
1672
+ 2696,
1673
+ 2698,
1674
+ 2699,
1675
+ 2700,
1676
+ 2701,
1677
+ 2702,
1678
+ 2703,
1679
+ 2704,
1680
+ 2706,
1681
+ 2707,
1682
+ 2708,
1683
+ 2709,
1684
+ 2710,
1685
+ 2713,
1686
+ 2715,
1687
+ 2717,
1688
+ 2718,
1689
+ 2720,
1690
+ 2721,
1691
+ 2722,
1692
+ 2723,
1693
+ 2725,
1694
+ 2727,
1695
+ 2730,
1696
+ 2732,
1697
+ 2733,
1698
+ 2734,
1699
+ 2736,
1700
+ 2737,
1701
+ 2738,
1702
+ 2739,
1703
+ 2742,
1704
+ 2743,
1705
+ 2746,
1706
+ 2747,
1707
+ 2748,
1708
+ 2749,
1709
+ 2750,
1710
+ 2751,
1711
+ 2752,
1712
+ 2753,
1713
+ 2754,
1714
+ 2756,
1715
+ 2757,
1716
+ 2759,
1717
+ 2760,
1718
+ 2761,
1719
+ 2762,
1720
+ 2763,
1721
+ 2764,
1722
+ 2765,
1723
+ 2767,
1724
+ 2769,
1725
+ 2771,
1726
+ 2772,
1727
+ 2773,
1728
+ 2774,
1729
+ 2775,
1730
+ 2776,
1731
+ 2778,
1732
+ 2781,
1733
+ 2783,
1734
+ 2786,
1735
+ 2787,
1736
+ 2788,
1737
+ 2790,
1738
+ 2793,
1739
+ 2794,
1740
+ 2795,
1741
+ 2796,
1742
+ 2797,
1743
+ 2798,
1744
+ 2800,
1745
+ 2801,
1746
+ 2802,
1747
+ 2803,
1748
+ 2805,
1749
+ 2806,
1750
+ 2807,
1751
+ 2809,
1752
+ 2810,
1753
+ 2811,
1754
+ 2812,
1755
+ 2814,
1756
+ 2816,
1757
+ 2817,
1758
+ 2820,
1759
+ 2821,
1760
+ 2822,
1761
+ 2823,
1762
+ 2824,
1763
+ 2825,
1764
+ 2827,
1765
+ 2828,
1766
+ 2830,
1767
+ 2831,
1768
+ 2834,
1769
+ 2835,
1770
+ 2836,
1771
+ 2837,
1772
+ 2839,
1773
+ 2840,
1774
+ 2841,
1775
+ 2842,
1776
+ 2843,
1777
+ 2845,
1778
+ 2846,
1779
+ 2847,
1780
+ 2849,
1781
+ 2850,
1782
+ 2852,
1783
+ 2853,
1784
+ 2854,
1785
+ 2855,
1786
+ 2856,
1787
+ 2857,
1788
+ 2859,
1789
+ 2861,
1790
+ 2863,
1791
+ 2865,
1792
+ 2866,
1793
+ 2868,
1794
+ 2870,
1795
+ 2872,
1796
+ 2873,
1797
+ 2875,
1798
+ 2876,
1799
+ 2878,
1800
+ 2879,
1801
+ 2880,
1802
+ 2882,
1803
+ 2884,
1804
+ 2885,
1805
+ 2886,
1806
+ 2888,
1807
+ 2889,
1808
+ 2891,
1809
+ 2892,
1810
+ 2894,
1811
+ 2895,
1812
+ 2896,
1813
+ 2898,
1814
+ 2899,
1815
+ 2900,
1816
+ 2901,
1817
+ 2902,
1818
+ 2903,
1819
+ 2904,
1820
+ 2905,
1821
+ 2907,
1822
+ 2908,
1823
+ 2909,
1824
+ 2910,
1825
+ 2911,
1826
+ 2912,
1827
+ 2914,
1828
+ 2915,
1829
+ 2916,
1830
+ 2918,
1831
+ 2919,
1832
+ 1056,
1833
+ 2920,
1834
+ 2922,
1835
+ 2923,
1836
+ 2925,
1837
+ 2926,
1838
+ 2927,
1839
+ 2929,
1840
+ 2930,
1841
+ 2931,
1842
+ 2933,
1843
+ 2934,
1844
+ 2936,
1845
+ 2938,
1846
+ 2939,
1847
+ 2940,
1848
+ 2943,
1849
+ 2945,
1850
+ 2946,
1851
+ 2948,
1852
+ 2949,
1853
+ 2951,
1854
+ 2952,
1855
+ 2954,
1856
+ 2955,
1857
+ 2956,
1858
+ 2957,
1859
+ 2958,
1860
+ 2959,
1861
+ 2961,
1862
+ 2962,
1863
+ 2964,
1864
+ 2965,
1865
+ 2966,
1866
+ 2968,
1867
+ 2970,
1868
+ 2971,
1869
+ 2972,
1870
+ 2973,
1871
+ 2974,
1872
+ 2976,
1873
+ 2977,
1874
+ 2978,
1875
+ 2979,
1876
+ 2980,
1877
+ 2982,
1878
+ 2984,
1879
+ 2986,
1880
+ 2987,
1881
+ 2988,
1882
+ 2989,
1883
+ 2991,
1884
+ 2993,
1885
+ 2994,
1886
+ 2996,
1887
+ 2999,
1888
+ 3000,
1889
+ 3001,
1890
+ 3002,
1891
+ 3003,
1892
+ 3004,
1893
+ 3005,
1894
+ 3006,
1895
+ 3008,
1896
+ 3010,
1897
+ 3011,
1898
+ 3012,
1899
+ 3014,
1900
+ 3016,
1901
+ 3019,
1902
+ 3022,
1903
+ 3023,
1904
+ 3024,
1905
+ 3025,
1906
+ 3026,
1907
+ 3028,
1908
+ 3031,
1909
+ 3032,
1910
+ 3033,
1911
+ 3035,
1912
+ 3036,
1913
+ 3038,
1914
+ 3040,
1915
+ 3041,
1916
+ 3042,
1917
+ 3043,
1918
+ 3045,
1919
+ 3048,
1920
+ 3049,
1921
+ 3050,
1922
+ 3051,
1923
+ 3052,
1924
+ 3053,
1925
+ 3054,
1926
+ 3055,
1927
+ 3056,
1928
+ 3057,
1929
+ 3058,
1930
+ 3059,
1931
+ 3060,
1932
+ 3062,
1933
+ 3065,
1934
+ 3068,
1935
+ 3069,
1936
+ 3070,
1937
+ 3071,
1938
+ 3072,
1939
+ 3073,
1940
+ 3074,
1941
+ 3075,
1942
+ 3076,
1943
+ 3077,
1944
+ 3079,
1945
+ 3080,
1946
+ 3081,
1947
+ 3082,
1948
+ 3083,
1949
+ 3084,
1950
+ 3085,
1951
+ 3086,
1952
+ 3087,
1953
+ 3089,
1954
+ 3090,
1955
+ 3091,
1956
+ 3092,
1957
+ 3093,
1958
+ 3094,
1959
+ 3096,
1960
+ 3097,
1961
+ 3098,
1962
+ 3099,
1963
+ 3100,
1964
+ 3101,
1965
+ 3102,
1966
+ 3103,
1967
+ 3104,
1968
+ 3105,
1969
+ 3106,
1970
+ 3108,
1971
+ 3109,
1972
+ 3110,
1973
+ 3111,
1974
+ 3114,
1975
+ 3116,
1976
+ 3117
1977
+ ]
1978
+ }
trainable_lemmatizer/model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6bbac020e95c0ddeb6b73adc1d81713fffb8e92933c545d60bff3d9ef34f8159
3
+ size 8094053
trainable_lemmatizer/trees ADDED
Binary file (235 kB). View file
 
transformer/cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "max_batch_items":4096
3
+ }
transformer/model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b6cdc4593a4f689048cbca418c6e75ee538a7277f23797209318db82b6ba3e64
3
+ size 1420537659
vocab/key2row ADDED
@@ -0,0 +1 @@
 
 
1
+
vocab/lookups.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:76be8b528d0075f7aae98d6fa57a6d3c83ae480a8469e668d7b0af968995ac71
3
+ size 1
vocab/strings.json ADDED
The diff for this file is too large to render. See raw diff
 
vocab/vectors ADDED
Binary file (128 Bytes). View file
 
vocab/vectors.cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "mode":"default"
3
+ }