SOUMYADEEPSAR commited on
Commit
68a8881
1 Parent(s): f44fc9f

Add SetFit model

Browse files
1_Pooling/config.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "word_embedding_dimension": 384,
3
+ "pooling_mode_cls_token": false,
4
+ "pooling_mode_mean_tokens": true,
5
+ "pooling_mode_max_tokens": false,
6
+ "pooling_mode_mean_sqrt_len_tokens": false,
7
+ "pooling_mode_weightedmean_tokens": false,
8
+ "pooling_mode_lasttoken": false,
9
+ "include_prompt": true
10
+ }
README.md ADDED
@@ -0,0 +1,315 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: setfit
3
+ tags:
4
+ - setfit
5
+ - sentence-transformers
6
+ - text-classification
7
+ - generated_from_setfit_trainer
8
+ metrics:
9
+ - f1
10
+ widget:
11
+ - text: What could possibly go wrong?
12
+ - text: We may have faith that human inventiveness will prevail in the long run.
13
+ - text: That can happen again.
14
+ - text: But in fact it was intensely rational.
15
+ - text: Chinese crime, like Chinese cuisine, varies according to regional origin.
16
+ pipeline_tag: text-classification
17
+ inference: true
18
+ model-index:
19
+ - name: SetFit
20
+ results:
21
+ - task:
22
+ type: text-classification
23
+ name: Text Classification
24
+ dataset:
25
+ name: Unknown
26
+ type: unknown
27
+ split: test
28
+ metrics:
29
+ - type: f1
30
+ value: 0.7526132404181185
31
+ name: F1
32
+ ---
33
+
34
+ # SetFit
35
+
36
+ This is a [SetFit](https://github.com/huggingface/setfit) model that can be used for Text Classification. A SVC instance is used for classification.
37
+
38
+ The model has been trained using an efficient few-shot learning technique that involves:
39
+
40
+ 1. Fine-tuning a [Sentence Transformer](https://www.sbert.net) with contrastive learning.
41
+ 2. Training a classification head with features from the fine-tuned Sentence Transformer.
42
+
43
+ ## Model Details
44
+
45
+ ### Model Description
46
+ - **Model Type:** SetFit
47
+ <!-- - **Sentence Transformer:** [Unknown](https://huggingface.co/unknown) -->
48
+ - **Classification head:** a SVC instance
49
+ - **Maximum Sequence Length:** 256 tokens
50
+ - **Number of Classes:** 2 classes
51
+ <!-- - **Training Dataset:** [Unknown](https://huggingface.co/datasets/unknown) -->
52
+ <!-- - **Language:** Unknown -->
53
+ <!-- - **License:** Unknown -->
54
+
55
+ ### Model Sources
56
+
57
+ - **Repository:** [SetFit on GitHub](https://github.com/huggingface/setfit)
58
+ - **Paper:** [Efficient Few-Shot Learning Without Prompts](https://arxiv.org/abs/2209.11055)
59
+ - **Blogpost:** [SetFit: Efficient Few-Shot Learning Without Prompts](https://huggingface.co/blog/setfit)
60
+
61
+ ### Model Labels
62
+ | Label | Examples |
63
+ |:------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
64
+ | SUBJ | <ul><li>'Gone are the days when they led the world in recession-busting'</li><li>'Who so mean that he will not himself be taxed, who so mindful of wealth that he will not favor increasing the popular taxes, in aid of these defective children?'</li><li>'That state has sixty-two counties and sixty cities … In addition there are 932 towns, 507 villages, and, at the last count, 9,600 school districts … Just try to render efficient service … amid the diffused identities and inevitable jealousies of, roughly, 11,000 independent administrative officers or boards!'</li></ul> |
65
+ | OBJ | <ul><li>'Is this a warning of what’s to come?'</li><li>'This unique set of circumstances has brought PCL back into focus as the safe haven of choice for global players seeking somewhere to stash their cash.'</li><li>'Socialists believe that, if everyone cannot have something, no one shall.'</li></ul> |
66
+
67
+ ## Evaluation
68
+
69
+ ### Metrics
70
+ | Label | F1 |
71
+ |:--------|:-------|
72
+ | **all** | 0.7526 |
73
+
74
+ ## Uses
75
+
76
+ ### Direct Use for Inference
77
+
78
+ First install the SetFit library:
79
+
80
+ ```bash
81
+ pip install setfit
82
+ ```
83
+
84
+ Then you can load this model and run inference.
85
+
86
+ ```python
87
+ from setfit import SetFitModel
88
+
89
+ # Download from the 🤗 Hub
90
+ model = SetFitModel.from_pretrained("SOUMYADEEPSAR/Setfit_subj_SVC")
91
+ # Run inference
92
+ preds = model("That can happen again.")
93
+ ```
94
+
95
+ <!--
96
+ ### Downstream Use
97
+
98
+ *List how someone could finetune this model on their own dataset.*
99
+ -->
100
+
101
+ <!--
102
+ ### Out-of-Scope Use
103
+
104
+ *List how the model may foreseeably be misused and address what users ought not to do with the model.*
105
+ -->
106
+
107
+ <!--
108
+ ## Bias, Risks and Limitations
109
+
110
+ *What are the known or foreseeable issues stemming from this model? You could also flag here known failure cases or weaknesses of the model.*
111
+ -->
112
+
113
+ <!--
114
+ ### Recommendations
115
+
116
+ *What are recommendations with respect to the foreseeable issues? For example, filtering explicit content.*
117
+ -->
118
+
119
+ ## Training Details
120
+
121
+ ### Training Set Metrics
122
+ | Training set | Min | Median | Max |
123
+ |:-------------|:----|:--------|:----|
124
+ | Word count | 3 | 35.9834 | 97 |
125
+
126
+ | Label | Training Sample Count |
127
+ |:------|:----------------------|
128
+ | OBJ | 117 |
129
+ | SUBJ | 124 |
130
+
131
+ ### Training Hyperparameters
132
+ - batch_size: (8, 8)
133
+ - num_epochs: (5, 5)
134
+ - max_steps: -1
135
+ - sampling_strategy: oversampling
136
+ - num_iterations: 20
137
+ - body_learning_rate: (1e-05, 1e-05)
138
+ - head_learning_rate: 1e-05
139
+ - loss: CosineSimilarityLoss
140
+ - distance_metric: cosine_distance
141
+ - margin: 0.25
142
+ - end_to_end: False
143
+ - use_amp: False
144
+ - warmup_proportion: 0.1
145
+ - seed: 42
146
+ - eval_max_steps: -1
147
+ - load_best_model_at_end: False
148
+
149
+ ### Training Results
150
+ | Epoch | Step | Training Loss | Validation Loss |
151
+ |:------:|:----:|:-------------:|:---------------:|
152
+ | 0.0008 | 1 | 0.3862 | - |
153
+ | 0.0415 | 50 | 0.4092 | - |
154
+ | 0.0830 | 100 | 0.3596 | - |
155
+ | 0.1245 | 150 | 0.2618 | - |
156
+ | 0.1660 | 200 | 0.2447 | - |
157
+ | 0.2075 | 250 | 0.263 | - |
158
+ | 0.2490 | 300 | 0.2583 | - |
159
+ | 0.2905 | 350 | 0.3336 | - |
160
+ | 0.3320 | 400 | 0.2381 | - |
161
+ | 0.3734 | 450 | 0.2454 | - |
162
+ | 0.4149 | 500 | 0.259 | - |
163
+ | 0.4564 | 550 | 0.2083 | - |
164
+ | 0.4979 | 600 | 0.2437 | - |
165
+ | 0.5394 | 650 | 0.2231 | - |
166
+ | 0.5809 | 700 | 0.0891 | - |
167
+ | 0.6224 | 750 | 0.1164 | - |
168
+ | 0.6639 | 800 | 0.0156 | - |
169
+ | 0.7054 | 850 | 0.0394 | - |
170
+ | 0.7469 | 900 | 0.0065 | - |
171
+ | 0.7884 | 950 | 0.0024 | - |
172
+ | 0.8299 | 1000 | 0.0012 | - |
173
+ | 0.8714 | 1050 | 0.0014 | - |
174
+ | 0.9129 | 1100 | 0.0039 | - |
175
+ | 0.9544 | 1150 | 0.0039 | - |
176
+ | 0.9959 | 1200 | 0.001 | - |
177
+ | 1.0373 | 1250 | 0.0007 | - |
178
+ | 1.0788 | 1300 | 0.0003 | - |
179
+ | 1.1203 | 1350 | 0.001 | - |
180
+ | 1.1618 | 1400 | 0.0003 | - |
181
+ | 1.2033 | 1450 | 0.0003 | - |
182
+ | 1.2448 | 1500 | 0.0014 | - |
183
+ | 1.2863 | 1550 | 0.0003 | - |
184
+ | 1.3278 | 1600 | 0.0003 | - |
185
+ | 1.3693 | 1650 | 0.0001 | - |
186
+ | 1.4108 | 1700 | 0.0004 | - |
187
+ | 1.4523 | 1750 | 0.0003 | - |
188
+ | 1.4938 | 1800 | 0.0008 | - |
189
+ | 1.5353 | 1850 | 0.0002 | - |
190
+ | 1.5768 | 1900 | 0.0005 | - |
191
+ | 1.6183 | 1950 | 0.0002 | - |
192
+ | 1.6598 | 2000 | 0.0004 | - |
193
+ | 1.7012 | 2050 | 0.0001 | - |
194
+ | 1.7427 | 2100 | 0.0002 | - |
195
+ | 1.7842 | 2150 | 0.0002 | - |
196
+ | 1.8257 | 2200 | 0.0002 | - |
197
+ | 1.8672 | 2250 | 0.0003 | - |
198
+ | 1.9087 | 2300 | 0.0001 | - |
199
+ | 1.9502 | 2350 | 0.0002 | - |
200
+ | 1.9917 | 2400 | 0.0001 | - |
201
+ | 2.0332 | 2450 | 0.0003 | - |
202
+ | 2.0747 | 2500 | 0.0002 | - |
203
+ | 2.1162 | 2550 | 0.0001 | - |
204
+ | 2.1577 | 2600 | 0.0001 | - |
205
+ | 2.1992 | 2650 | 0.0004 | - |
206
+ | 2.2407 | 2700 | 0.0002 | - |
207
+ | 2.2822 | 2750 | 0.0001 | - |
208
+ | 2.3237 | 2800 | 0.0005 | - |
209
+ | 2.3651 | 2850 | 0.0002 | - |
210
+ | 2.4066 | 2900 | 0.0003 | - |
211
+ | 2.4481 | 2950 | 0.0001 | - |
212
+ | 2.4896 | 3000 | 0.0001 | - |
213
+ | 2.5311 | 3050 | 0.0001 | - |
214
+ | 2.5726 | 3100 | 0.0001 | - |
215
+ | 2.6141 | 3150 | 0.0002 | - |
216
+ | 2.6556 | 3200 | 0.0001 | - |
217
+ | 2.6971 | 3250 | 0.0002 | - |
218
+ | 2.7386 | 3300 | 0.0002 | - |
219
+ | 2.7801 | 3350 | 0.0001 | - |
220
+ | 2.8216 | 3400 | 0.0001 | - |
221
+ | 2.8631 | 3450 | 0.0001 | - |
222
+ | 2.9046 | 3500 | 0.0001 | - |
223
+ | 2.9461 | 3550 | 0.0 | - |
224
+ | 2.9876 | 3600 | 0.0002 | - |
225
+ | 3.0290 | 3650 | 0.0001 | - |
226
+ | 3.0705 | 3700 | 0.0 | - |
227
+ | 3.1120 | 3750 | 0.0001 | - |
228
+ | 3.1535 | 3800 | 0.0001 | - |
229
+ | 3.1950 | 3850 | 0.0001 | - |
230
+ | 3.2365 | 3900 | 0.0001 | - |
231
+ | 3.2780 | 3950 | 0.0001 | - |
232
+ | 3.3195 | 4000 | 0.0001 | - |
233
+ | 3.3610 | 4050 | 0.0001 | - |
234
+ | 3.4025 | 4100 | 0.0 | - |
235
+ | 3.4440 | 4150 | 0.0001 | - |
236
+ | 3.4855 | 4200 | 0.0001 | - |
237
+ | 3.5270 | 4250 | 0.0001 | - |
238
+ | 3.5685 | 4300 | 0.0001 | - |
239
+ | 3.6100 | 4350 | 0.0002 | - |
240
+ | 3.6515 | 4400 | 0.0001 | - |
241
+ | 3.6929 | 4450 | 0.0001 | - |
242
+ | 3.7344 | 4500 | 0.0 | - |
243
+ | 3.7759 | 4550 | 0.0 | - |
244
+ | 3.8174 | 4600 | 0.0001 | - |
245
+ | 3.8589 | 4650 | 0.0001 | - |
246
+ | 3.9004 | 4700 | 0.0001 | - |
247
+ | 3.9419 | 4750 | 0.0 | - |
248
+ | 3.9834 | 4800 | 0.0001 | - |
249
+ | 4.0249 | 4850 | 0.0001 | - |
250
+ | 4.0664 | 4900 | 0.0001 | - |
251
+ | 4.1079 | 4950 | 0.0001 | - |
252
+ | 4.1494 | 5000 | 0.0 | - |
253
+ | 4.1909 | 5050 | 0.0 | - |
254
+ | 4.2324 | 5100 | 0.0 | - |
255
+ | 4.2739 | 5150 | 0.0 | - |
256
+ | 4.3154 | 5200 | 0.0001 | - |
257
+ | 4.3568 | 5250 | 0.0001 | - |
258
+ | 4.3983 | 5300 | 0.0001 | - |
259
+ | 4.4398 | 5350 | 0.0 | - |
260
+ | 4.4813 | 5400 | 0.0001 | - |
261
+ | 4.5228 | 5450 | 0.0 | - |
262
+ | 4.5643 | 5500 | 0.0001 | - |
263
+ | 4.6058 | 5550 | 0.0001 | - |
264
+ | 4.6473 | 5600 | 0.0001 | - |
265
+ | 4.6888 | 5650 | 0.0 | - |
266
+ | 4.7303 | 5700 | 0.0001 | - |
267
+ | 4.7718 | 5750 | 0.0001 | - |
268
+ | 4.8133 | 5800 | 0.0001 | - |
269
+ | 4.8548 | 5850 | 0.0 | - |
270
+ | 4.8963 | 5900 | 0.0 | - |
271
+ | 4.9378 | 5950 | 0.0 | - |
272
+ | 4.9793 | 6000 | 0.0001 | - |
273
+
274
+ ### Framework Versions
275
+ - Python: 3.10.12
276
+ - SetFit: 1.0.3
277
+ - Sentence Transformers: 2.7.0
278
+ - Transformers: 4.40.1
279
+ - PyTorch: 2.2.1+cu121
280
+ - Datasets: 2.19.0
281
+ - Tokenizers: 0.19.1
282
+
283
+ ## Citation
284
+
285
+ ### BibTeX
286
+ ```bibtex
287
+ @article{https://doi.org/10.48550/arxiv.2209.11055,
288
+ doi = {10.48550/ARXIV.2209.11055},
289
+ url = {https://arxiv.org/abs/2209.11055},
290
+ author = {Tunstall, Lewis and Reimers, Nils and Jo, Unso Eun Seo and Bates, Luke and Korat, Daniel and Wasserblat, Moshe and Pereg, Oren},
291
+ keywords = {Computation and Language (cs.CL), FOS: Computer and information sciences, FOS: Computer and information sciences},
292
+ title = {Efficient Few-Shot Learning Without Prompts},
293
+ publisher = {arXiv},
294
+ year = {2022},
295
+ copyright = {Creative Commons Attribution 4.0 International}
296
+ }
297
+ ```
298
+
299
+ <!--
300
+ ## Glossary
301
+
302
+ *Clearly define terms in order to be accessible across audiences.*
303
+ -->
304
+
305
+ <!--
306
+ ## Model Card Authors
307
+
308
+ *Lists the people who create the model card, providing recognition and accountability for the detailed work that goes into its construction.*
309
+ -->
310
+
311
+ <!--
312
+ ## Model Card Contact
313
+
314
+ *Provides a way for people who have updates to the Model Card, suggestions, or questions, to contact the Model Card authors.*
315
+ -->
config.json ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "sentence-transformers/all-MiniLM-L6-v2",
3
+ "architectures": [
4
+ "BertModel"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "classifier_dropout": null,
8
+ "gradient_checkpointing": false,
9
+ "hidden_act": "gelu",
10
+ "hidden_dropout_prob": 0.1,
11
+ "hidden_size": 384,
12
+ "initializer_range": 0.02,
13
+ "intermediate_size": 1536,
14
+ "layer_norm_eps": 1e-12,
15
+ "max_position_embeddings": 512,
16
+ "model_type": "bert",
17
+ "num_attention_heads": 12,
18
+ "num_hidden_layers": 6,
19
+ "pad_token_id": 0,
20
+ "position_embedding_type": "absolute",
21
+ "torch_dtype": "float32",
22
+ "transformers_version": "4.40.1",
23
+ "type_vocab_size": 2,
24
+ "use_cache": true,
25
+ "vocab_size": 30522
26
+ }
config_sentence_transformers.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "__version__": {
3
+ "sentence_transformers": "2.0.0",
4
+ "transformers": "4.6.1",
5
+ "pytorch": "1.8.1"
6
+ },
7
+ "prompts": {},
8
+ "default_prompt_name": null
9
+ }
config_setfit.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "labels": [
3
+ "OBJ",
4
+ "SUBJ"
5
+ ],
6
+ "normalize_embeddings": false
7
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5997e058c2bf91bb935638573b833f4282c47b02ce8260bb66560050152f900c
3
+ size 90864192
model_head.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:459974c65f4cd358d28dacd547e3a3dc2a171ce935e6db7bb28cbc688459d99e
3
+ size 57307
modules.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "idx": 0,
4
+ "name": "0",
5
+ "path": "",
6
+ "type": "sentence_transformers.models.Transformer"
7
+ },
8
+ {
9
+ "idx": 1,
10
+ "name": "1",
11
+ "path": "1_Pooling",
12
+ "type": "sentence_transformers.models.Pooling"
13
+ },
14
+ {
15
+ "idx": 2,
16
+ "name": "2",
17
+ "path": "2_Normalize",
18
+ "type": "sentence_transformers.models.Normalize"
19
+ }
20
+ ]
sentence_bert_config.json ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {
2
+ "max_seq_length": 256,
3
+ "do_lower_case": false
4
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": {
3
+ "content": "[CLS]",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "mask_token": {
10
+ "content": "[MASK]",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": {
17
+ "content": "[PAD]",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ },
23
+ "sep_token": {
24
+ "content": "[SEP]",
25
+ "lstrip": false,
26
+ "normalized": false,
27
+ "rstrip": false,
28
+ "single_word": false
29
+ },
30
+ "unk_token": {
31
+ "content": "[UNK]",
32
+ "lstrip": false,
33
+ "normalized": false,
34
+ "rstrip": false,
35
+ "single_word": false
36
+ }
37
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "0": {
4
+ "content": "[PAD]",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "100": {
12
+ "content": "[UNK]",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "101": {
20
+ "content": "[CLS]",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "102": {
28
+ "content": "[SEP]",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "103": {
36
+ "content": "[MASK]",
37
+ "lstrip": false,
38
+ "normalized": false,
39
+ "rstrip": false,
40
+ "single_word": false,
41
+ "special": true
42
+ }
43
+ },
44
+ "clean_up_tokenization_spaces": true,
45
+ "cls_token": "[CLS]",
46
+ "do_basic_tokenize": true,
47
+ "do_lower_case": true,
48
+ "mask_token": "[MASK]",
49
+ "max_length": 128,
50
+ "model_max_length": 512,
51
+ "never_split": null,
52
+ "pad_to_multiple_of": null,
53
+ "pad_token": "[PAD]",
54
+ "pad_token_type_id": 0,
55
+ "padding_side": "right",
56
+ "sep_token": "[SEP]",
57
+ "stride": 0,
58
+ "strip_accents": null,
59
+ "tokenize_chinese_chars": true,
60
+ "tokenizer_class": "BertTokenizer",
61
+ "truncation_side": "right",
62
+ "truncation_strategy": "longest_first",
63
+ "unk_token": "[UNK]"
64
+ }
vocab.txt ADDED
The diff for this file is too large to render. See raw diff