sreehari267 commited on
Commit
8e977e9
·
verified ·
1 Parent(s): fd9d7b7

Pushing fine-tuned MPNet model

Browse files
1_Pooling/config.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "word_embedding_dimension": 768,
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,355 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - sentence-transformers
4
+ - sentence-similarity
5
+ - feature-extraction
6
+ - generated_from_trainer
7
+ - dataset_size:4641
8
+ - loss:CosineSimilarityLoss
9
+ widget:
10
+ - source_sentence: ashok boiler se
11
+ sentences:
12
+ - apollo hospital enterprise lt
13
+ - ashok khasziwala co
14
+ - ashok boiler ltd
15
+ - source_sentence: endee engineer pltd
16
+ sentences:
17
+ - three v marketing coro
18
+ - sunil kumar ashok kum
19
+ - endee enggs pvt ltd
20
+ - source_sentence: new india assu co
21
+ sentences:
22
+ - new india as
23
+ - deccan sale pvt ltd
24
+ - glencore grain pvt
25
+ - source_sentence: precision fastener
26
+ sentences:
27
+ - mac oil palm ltd ampapuram p
28
+ - super precision fastener
29
+ - universal plywood centre
30
+ - source_sentence: chandra helicon pupms p
31
+ sentences:
32
+ - chandra helicon pupms pv
33
+ - fwd gain
34
+ - amaravani pothula
35
+ pipeline_tag: sentence-similarity
36
+ library_name: sentence-transformers
37
+ ---
38
+
39
+ # SentenceTransformer
40
+
41
+ This is a [sentence-transformers](https://www.SBERT.net) model trained. It maps sentences & paragraphs to a 768-dimensional dense vector space and can be used for semantic textual similarity, semantic search, paraphrase mining, text classification, clustering, and more.
42
+
43
+ ## Model Details
44
+
45
+ ### Model Description
46
+ - **Model Type:** Sentence Transformer
47
+ <!-- - **Base model:** [Unknown](https://huggingface.co/unknown) -->
48
+ - **Maximum Sequence Length:** 384 tokens
49
+ - **Output Dimensionality:** 768 dimensions
50
+ - **Similarity Function:** Cosine Similarity
51
+ <!-- - **Training Dataset:** Unknown -->
52
+ <!-- - **Language:** Unknown -->
53
+ <!-- - **License:** Unknown -->
54
+
55
+ ### Model Sources
56
+
57
+ - **Documentation:** [Sentence Transformers Documentation](https://sbert.net)
58
+ - **Repository:** [Sentence Transformers on GitHub](https://github.com/UKPLab/sentence-transformers)
59
+ - **Hugging Face:** [Sentence Transformers on Hugging Face](https://huggingface.co/models?library=sentence-transformers)
60
+
61
+ ### Full Model Architecture
62
+
63
+ ```
64
+ SentenceTransformer(
65
+ (0): Transformer({'max_seq_length': 384, 'do_lower_case': False}) with Transformer model: MPNetModel
66
+ (1): Pooling({'word_embedding_dimension': 768, 'pooling_mode_cls_token': False, 'pooling_mode_mean_tokens': True, 'pooling_mode_max_tokens': False, 'pooling_mode_mean_sqrt_len_tokens': False, 'pooling_mode_weightedmean_tokens': False, 'pooling_mode_lasttoken': False, 'include_prompt': True})
67
+ (2): Normalize()
68
+ )
69
+ ```
70
+
71
+ ## Usage
72
+
73
+ ### Direct Usage (Sentence Transformers)
74
+
75
+ First install the Sentence Transformers library:
76
+
77
+ ```bash
78
+ pip install -U sentence-transformers
79
+ ```
80
+
81
+ Then you can load this model and run inference.
82
+ ```python
83
+ from sentence_transformers import SentenceTransformer
84
+
85
+ # Download from the 🤗 Hub
86
+ model = SentenceTransformer("sentence_transformers_model_id")
87
+ # Run inference
88
+ sentences = [
89
+ 'chandra helicon pupms p',
90
+ 'chandra helicon pupms pv',
91
+ 'fwd gain',
92
+ ]
93
+ embeddings = model.encode(sentences)
94
+ print(embeddings.shape)
95
+ # [3, 768]
96
+
97
+ # Get the similarity scores for the embeddings
98
+ similarities = model.similarity(embeddings, embeddings)
99
+ print(similarities.shape)
100
+ # [3, 3]
101
+ ```
102
+
103
+ <!--
104
+ ### Direct Usage (Transformers)
105
+
106
+ <details><summary>Click to see the direct usage in Transformers</summary>
107
+
108
+ </details>
109
+ -->
110
+
111
+ <!--
112
+ ### Downstream Usage (Sentence Transformers)
113
+
114
+ You can finetune this model on your own dataset.
115
+
116
+ <details><summary>Click to expand</summary>
117
+
118
+ </details>
119
+ -->
120
+
121
+ <!--
122
+ ### Out-of-Scope Use
123
+
124
+ *List how the model may foreseeably be misused and address what users ought not to do with the model.*
125
+ -->
126
+
127
+ <!--
128
+ ## Bias, Risks and Limitations
129
+
130
+ *What are the known or foreseeable issues stemming from this model? You could also flag here known failure cases or weaknesses of the model.*
131
+ -->
132
+
133
+ <!--
134
+ ### Recommendations
135
+
136
+ *What are recommendations with respect to the foreseeable issues? For example, filtering explicit content.*
137
+ -->
138
+
139
+ ## Training Details
140
+
141
+ ### Training Dataset
142
+
143
+ #### Unnamed Dataset
144
+
145
+ * Size: 4,641 training samples
146
+ * Columns: <code>sentence_0</code>, <code>sentence_1</code>, and <code>label</code>
147
+ * Approximate statistics based on the first 1000 samples:
148
+ | | sentence_0 | sentence_1 | label |
149
+ |:--------|:---------------------------------------------------------------------------------|:---------------------------------------------------------------------------------|:---------------------------------------------------------------|
150
+ | type | string | string | float |
151
+ | details | <ul><li>min: 3 tokens</li><li>mean: 6.99 tokens</li><li>max: 14 tokens</li></ul> | <ul><li>min: 3 tokens</li><li>mean: 6.98 tokens</li><li>max: 14 tokens</li></ul> | <ul><li>min: 0.0</li><li>mean: 0.56</li><li>max: 1.0</li></ul> |
152
+ * Samples:
153
+ | sentence_0 | sentence_1 | label |
154
+ |:-------------------------------------|:-------------------------------------|:-----------------|
155
+ | <code>kailash chand shahra</code> | <code>kailash shahra</code> | <code>1.0</code> |
156
+ | <code>milestone preseraatives</code> | <code>milestone preservvative</code> | <code>0.0</code> |
157
+ | <code>g v nageswara rao</code> | <code>b v nageswara rao</code> | <code>0.0</code> |
158
+ * Loss: [<code>CosineSimilarityLoss</code>](https://sbert.net/docs/package_reference/sentence_transformer/losses.html#cosinesimilarityloss) with these parameters:
159
+ ```json
160
+ {
161
+ "loss_fct": "torch.nn.modules.loss.MSELoss"
162
+ }
163
+ ```
164
+
165
+ ### Training Hyperparameters
166
+ #### Non-Default Hyperparameters
167
+
168
+ - `per_device_train_batch_size`: 128
169
+ - `per_device_eval_batch_size`: 128
170
+ - `num_train_epochs`: 200
171
+ - `multi_dataset_batch_sampler`: round_robin
172
+
173
+ #### All Hyperparameters
174
+ <details><summary>Click to expand</summary>
175
+
176
+ - `overwrite_output_dir`: False
177
+ - `do_predict`: False
178
+ - `eval_strategy`: no
179
+ - `prediction_loss_only`: True
180
+ - `per_device_train_batch_size`: 128
181
+ - `per_device_eval_batch_size`: 128
182
+ - `per_gpu_train_batch_size`: None
183
+ - `per_gpu_eval_batch_size`: None
184
+ - `gradient_accumulation_steps`: 1
185
+ - `eval_accumulation_steps`: None
186
+ - `torch_empty_cache_steps`: None
187
+ - `learning_rate`: 5e-05
188
+ - `weight_decay`: 0.0
189
+ - `adam_beta1`: 0.9
190
+ - `adam_beta2`: 0.999
191
+ - `adam_epsilon`: 1e-08
192
+ - `max_grad_norm`: 1
193
+ - `num_train_epochs`: 200
194
+ - `max_steps`: -1
195
+ - `lr_scheduler_type`: linear
196
+ - `lr_scheduler_kwargs`: {}
197
+ - `warmup_ratio`: 0.0
198
+ - `warmup_steps`: 0
199
+ - `log_level`: passive
200
+ - `log_level_replica`: warning
201
+ - `log_on_each_node`: True
202
+ - `logging_nan_inf_filter`: True
203
+ - `save_safetensors`: True
204
+ - `save_on_each_node`: False
205
+ - `save_only_model`: False
206
+ - `restore_callback_states_from_checkpoint`: False
207
+ - `no_cuda`: False
208
+ - `use_cpu`: False
209
+ - `use_mps_device`: False
210
+ - `seed`: 42
211
+ - `data_seed`: None
212
+ - `jit_mode_eval`: False
213
+ - `use_ipex`: False
214
+ - `bf16`: False
215
+ - `fp16`: False
216
+ - `fp16_opt_level`: O1
217
+ - `half_precision_backend`: auto
218
+ - `bf16_full_eval`: False
219
+ - `fp16_full_eval`: False
220
+ - `tf32`: None
221
+ - `local_rank`: 0
222
+ - `ddp_backend`: None
223
+ - `tpu_num_cores`: None
224
+ - `tpu_metrics_debug`: False
225
+ - `debug`: []
226
+ - `dataloader_drop_last`: False
227
+ - `dataloader_num_workers`: 0
228
+ - `dataloader_prefetch_factor`: None
229
+ - `past_index`: -1
230
+ - `disable_tqdm`: False
231
+ - `remove_unused_columns`: True
232
+ - `label_names`: None
233
+ - `load_best_model_at_end`: False
234
+ - `ignore_data_skip`: False
235
+ - `fsdp`: []
236
+ - `fsdp_min_num_params`: 0
237
+ - `fsdp_config`: {'min_num_params': 0, 'xla': False, 'xla_fsdp_v2': False, 'xla_fsdp_grad_ckpt': False}
238
+ - `fsdp_transformer_layer_cls_to_wrap`: None
239
+ - `accelerator_config`: {'split_batches': False, 'dispatch_batches': None, 'even_batches': True, 'use_seedable_sampler': True, 'non_blocking': False, 'gradient_accumulation_kwargs': None}
240
+ - `deepspeed`: None
241
+ - `label_smoothing_factor`: 0.0
242
+ - `optim`: adamw_torch
243
+ - `optim_args`: None
244
+ - `adafactor`: False
245
+ - `group_by_length`: False
246
+ - `length_column_name`: length
247
+ - `ddp_find_unused_parameters`: None
248
+ - `ddp_bucket_cap_mb`: None
249
+ - `ddp_broadcast_buffers`: False
250
+ - `dataloader_pin_memory`: True
251
+ - `dataloader_persistent_workers`: False
252
+ - `skip_memory_metrics`: True
253
+ - `use_legacy_prediction_loop`: False
254
+ - `push_to_hub`: False
255
+ - `resume_from_checkpoint`: None
256
+ - `hub_model_id`: None
257
+ - `hub_strategy`: every_save
258
+ - `hub_private_repo`: None
259
+ - `hub_always_push`: False
260
+ - `gradient_checkpointing`: False
261
+ - `gradient_checkpointing_kwargs`: None
262
+ - `include_inputs_for_metrics`: False
263
+ - `include_for_metrics`: []
264
+ - `eval_do_concat_batches`: True
265
+ - `fp16_backend`: auto
266
+ - `push_to_hub_model_id`: None
267
+ - `push_to_hub_organization`: None
268
+ - `mp_parameters`:
269
+ - `auto_find_batch_size`: False
270
+ - `full_determinism`: False
271
+ - `torchdynamo`: None
272
+ - `ray_scope`: last
273
+ - `ddp_timeout`: 1800
274
+ - `torch_compile`: False
275
+ - `torch_compile_backend`: None
276
+ - `torch_compile_mode`: None
277
+ - `dispatch_batches`: None
278
+ - `split_batches`: None
279
+ - `include_tokens_per_second`: False
280
+ - `include_num_input_tokens_seen`: False
281
+ - `neftune_noise_alpha`: None
282
+ - `optim_target_modules`: None
283
+ - `batch_eval_metrics`: False
284
+ - `eval_on_start`: False
285
+ - `use_liger_kernel`: False
286
+ - `eval_use_gather_object`: False
287
+ - `average_tokens_across_devices`: False
288
+ - `prompts`: None
289
+ - `batch_sampler`: batch_sampler
290
+ - `multi_dataset_batch_sampler`: round_robin
291
+
292
+ </details>
293
+
294
+ ### Training Logs
295
+ | Epoch | Step | Training Loss |
296
+ |:--------:|:----:|:-------------:|
297
+ | 13.5135 | 500 | 0.0138 |
298
+ | 27.0270 | 1000 | 0.0137 |
299
+ | 40.5405 | 1500 | 0.0135 |
300
+ | 54.0541 | 2000 | 0.0133 |
301
+ | 67.5676 | 2500 | 0.0134 |
302
+ | 81.0811 | 3000 | 0.0134 |
303
+ | 94.5946 | 3500 | 0.0134 |
304
+ | 108.1081 | 4000 | 0.0134 |
305
+ | 121.6216 | 4500 | 0.0133 |
306
+ | 135.1351 | 5000 | 0.0134 |
307
+ | 148.6486 | 5500 | 0.0134 |
308
+ | 162.1622 | 6000 | 0.0135 |
309
+ | 175.6757 | 6500 | 0.0136 |
310
+ | 189.1892 | 7000 | 0.0136 |
311
+
312
+
313
+ ### Framework Versions
314
+ - Python: 3.11.11
315
+ - Sentence Transformers: 3.4.1
316
+ - Transformers: 4.48.3
317
+ - PyTorch: 2.5.1+cu124
318
+ - Accelerate: 1.3.0
319
+ - Datasets: 3.3.2
320
+ - Tokenizers: 0.21.0
321
+
322
+ ## Citation
323
+
324
+ ### BibTeX
325
+
326
+ #### Sentence Transformers
327
+ ```bibtex
328
+ @inproceedings{reimers-2019-sentence-bert,
329
+ title = "Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks",
330
+ author = "Reimers, Nils and Gurevych, Iryna",
331
+ booktitle = "Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing",
332
+ month = "11",
333
+ year = "2019",
334
+ publisher = "Association for Computational Linguistics",
335
+ url = "https://arxiv.org/abs/1908.10084",
336
+ }
337
+ ```
338
+
339
+ <!--
340
+ ## Glossary
341
+
342
+ *Clearly define terms in order to be accessible across audiences.*
343
+ -->
344
+
345
+ <!--
346
+ ## Model Card Authors
347
+
348
+ *Lists the people who create the model card, providing recognition and accountability for the detailed work that goes into its construction.*
349
+ -->
350
+
351
+ <!--
352
+ ## Model Card Contact
353
+
354
+ *Provides a way for people who have updates to the Model Card, suggestions, or questions, to contact the Model Card authors.*
355
+ -->
config.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "/data/er/mpnet",
3
+ "architectures": [
4
+ "MPNetModel"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "bos_token_id": 0,
8
+ "eos_token_id": 2,
9
+ "hidden_act": "gelu",
10
+ "hidden_dropout_prob": 0.1,
11
+ "hidden_size": 768,
12
+ "initializer_range": 0.02,
13
+ "intermediate_size": 3072,
14
+ "layer_norm_eps": 1e-05,
15
+ "max_position_embeddings": 514,
16
+ "model_type": "mpnet",
17
+ "num_attention_heads": 12,
18
+ "num_hidden_layers": 12,
19
+ "pad_token_id": 1,
20
+ "relative_attention_num_buckets": 32,
21
+ "torch_dtype": "float32",
22
+ "transformers_version": "4.49.0",
23
+ "vocab_size": 30527
24
+ }
config_sentence_transformers.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "__version__": {
3
+ "sentence_transformers": "3.4.1",
4
+ "transformers": "4.49.0",
5
+ "pytorch": "2.5.1+cu124"
6
+ },
7
+ "prompts": {},
8
+ "default_prompt_name": null,
9
+ "similarity_fn_name": "cosine"
10
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0b3c8c717335c801abb15983036a6f1df4b6943fd6b93717969efd96d22eeec6
3
+ size 437967672
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": 384,
3
+ "do_lower_case": false
4
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<s>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "cls_token": {
10
+ "content": "<s>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "eos_token": {
17
+ "content": "</s>",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ },
23
+ "mask_token": {
24
+ "content": "<mask>",
25
+ "lstrip": true,
26
+ "normalized": false,
27
+ "rstrip": false,
28
+ "single_word": false
29
+ },
30
+ "pad_token": {
31
+ "content": "<pad>",
32
+ "lstrip": false,
33
+ "normalized": false,
34
+ "rstrip": false,
35
+ "single_word": false
36
+ },
37
+ "sep_token": {
38
+ "content": "</s>",
39
+ "lstrip": false,
40
+ "normalized": false,
41
+ "rstrip": false,
42
+ "single_word": false
43
+ },
44
+ "unk_token": {
45
+ "content": "[UNK]",
46
+ "lstrip": false,
47
+ "normalized": false,
48
+ "rstrip": false,
49
+ "single_word": false
50
+ }
51
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "0": {
4
+ "content": "<s>",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "1": {
12
+ "content": "<pad>",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "2": {
20
+ "content": "</s>",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "3": {
28
+ "content": "<unk>",
29
+ "lstrip": false,
30
+ "normalized": true,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "104": {
36
+ "content": "[UNK]",
37
+ "lstrip": false,
38
+ "normalized": false,
39
+ "rstrip": false,
40
+ "single_word": false,
41
+ "special": true
42
+ },
43
+ "30526": {
44
+ "content": "<mask>",
45
+ "lstrip": true,
46
+ "normalized": false,
47
+ "rstrip": false,
48
+ "single_word": false,
49
+ "special": true
50
+ }
51
+ },
52
+ "bos_token": "<s>",
53
+ "clean_up_tokenization_spaces": false,
54
+ "cls_token": "<s>",
55
+ "do_lower_case": true,
56
+ "eos_token": "</s>",
57
+ "extra_special_tokens": {},
58
+ "mask_token": "<mask>",
59
+ "max_length": 128,
60
+ "model_max_length": 384,
61
+ "pad_to_multiple_of": null,
62
+ "pad_token": "<pad>",
63
+ "pad_token_type_id": 0,
64
+ "padding_side": "right",
65
+ "sep_token": "</s>",
66
+ "stride": 0,
67
+ "strip_accents": null,
68
+ "tokenize_chinese_chars": true,
69
+ "tokenizer_class": "MPNetTokenizer",
70
+ "truncation_side": "right",
71
+ "truncation_strategy": "longest_first",
72
+ "unk_token": "[UNK]"
73
+ }
vocab.txt ADDED
The diff for this file is too large to render. See raw diff