bhawanahettiarachchi commited on
Commit
bf1639b
1 Parent(s): 5fda25b

Upload folder using huggingface_hub

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,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ library_name: sentence-transformers
4
+ tags:
5
+ - sentence-transformers
6
+ - sentence-similarity
7
+ - feature-extraction
8
+ - autotrain
9
+ base_model: sentence-transformers/all-mpnet-base-v2
10
+ widget:
11
+ - source_sentence: 'search_query: i love autotrain'
12
+ sentences:
13
+ - 'search_query: huggingface auto train'
14
+ - 'search_query: hugging face auto train'
15
+ - 'search_query: i love autotrain'
16
+ pipeline_tag: sentence-similarity
17
+ ---
18
+
19
+ # Model Trained Using AutoTrain
20
+
21
+ - Problem type: Sentence Transformers
22
+
23
+ ## Validation Metrics
24
+ loss: 0.6643959283828735
25
+
26
+ runtime: 1.2907
27
+
28
+ samples_per_second: 15.496
29
+
30
+ steps_per_second: 1.55
31
+
32
+ : 3.0
33
+
34
+ ## Usage
35
+
36
+ ### Direct Usage (Sentence Transformers)
37
+
38
+ First install the Sentence Transformers library:
39
+
40
+ ```bash
41
+ pip install -U sentence-transformers
42
+ ```
43
+
44
+ Then you can load this model and run inference.
45
+ ```python
46
+ from sentence_transformers import SentenceTransformer
47
+
48
+ # Download from the Hugging Face Hub
49
+ model = SentenceTransformer("sentence_transformers_model_id")
50
+ # Run inference
51
+ sentences = [
52
+ 'search_query: autotrain',
53
+ 'search_query: auto train',
54
+ 'search_query: i love autotrain',
55
+ ]
56
+ embeddings = model.encode(sentences)
57
+ print(embeddings.shape)
58
+
59
+ # Get the similarity scores for the embeddings
60
+ similarities = model.similarity(embeddings, embeddings)
61
+ print(similarities.shape)
62
+ ```
checkpoint-30/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
+ }
checkpoint-30/README.md ADDED
@@ -0,0 +1,411 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: sentence-transformers/all-mpnet-base-v2
3
+ datasets: []
4
+ language: []
5
+ library_name: sentence-transformers
6
+ pipeline_tag: sentence-similarity
7
+ tags:
8
+ - sentence-transformers
9
+ - sentence-similarity
10
+ - feature-extraction
11
+ - generated_from_trainer
12
+ - dataset_size:80
13
+ - loss:MultipleNegativesRankingLoss
14
+ widget:
15
+ - source_sentence: What is the short title of this Act?
16
+ sentences:
17
+ - The Banking (Amendment) Act, No. 24 of 2024
18
+ - The Central Bank can assess whether granting a license is in the interest of the
19
+ banking system and national economy
20
+ - They must conduct offshore banking business only with non-residents and certain
21
+ residents as determined by the Central Bank
22
+ - source_sentence: What new power does the Central Bank have regarding excess accommodations
23
+ to related parties?
24
+ sentences:
25
+ - Accommodation and all financial investments
26
+ - The Central Bank can assess a bank's track record for operating with good governance
27
+ and integrity
28
+ - The Central Bank may require the bank to deduct such excess from regulatory capital
29
+ calculations
30
+ - source_sentence: What new requirement is there for licensed commercial banks regarding
31
+ the disclosure of audit information?
32
+ sentences:
33
+ - Auditors must immediately report findings that could materially affect the bank's
34
+ safety and soundness
35
+ - They must prepare financial statements that represent a true and fair view of
36
+ the bank's financial position
37
+ - To the Governor, Deputy Governor, Assistant Governor, Director of Bank Supervision,
38
+ or other high-ranking officers
39
+ - source_sentence: Who approves the appointment, election, or nomination of directors
40
+ for licensed commercial banks?
41
+ sentences:
42
+ - The Central Bank
43
+ - The Central Bank can designate foreign currencies for offshore banking business
44
+ - The Central Bank can request information or documents from any person other than
45
+ a licensed bank
46
+ - source_sentence: What new power does the Central Bank have regarding the number
47
+ of directors on a bank's board?
48
+ sentences:
49
+ - Within fifteen days of becoming aware of such facts
50
+ - Transparency in ownership structure and beneficial ownership
51
+ - The Central Bank can determine the number of board members, which shall not be
52
+ less than seven
53
+ ---
54
+
55
+ # SentenceTransformer based on sentence-transformers/all-mpnet-base-v2
56
+
57
+ This is a [sentence-transformers](https://www.SBERT.net) model finetuned from [sentence-transformers/all-mpnet-base-v2](https://huggingface.co/sentence-transformers/all-mpnet-base-v2). 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.
58
+
59
+ ## Model Details
60
+
61
+ ### Model Description
62
+ - **Model Type:** Sentence Transformer
63
+ - **Base model:** [sentence-transformers/all-mpnet-base-v2](https://huggingface.co/sentence-transformers/all-mpnet-base-v2) <!-- at revision 84f2bcc00d77236f9e89c8a360a00fb1139bf47d -->
64
+ - **Maximum Sequence Length:** 384 tokens
65
+ - **Output Dimensionality:** 768 tokens
66
+ - **Similarity Function:** Cosine Similarity
67
+ <!-- - **Training Dataset:** Unknown -->
68
+ <!-- - **Language:** Unknown -->
69
+ <!-- - **License:** Unknown -->
70
+
71
+ ### Model Sources
72
+
73
+ - **Documentation:** [Sentence Transformers Documentation](https://sbert.net)
74
+ - **Repository:** [Sentence Transformers on GitHub](https://github.com/UKPLab/sentence-transformers)
75
+ - **Hugging Face:** [Sentence Transformers on Hugging Face](https://huggingface.co/models?library=sentence-transformers)
76
+
77
+ ### Full Model Architecture
78
+
79
+ ```
80
+ SentenceTransformer(
81
+ (0): Transformer({'max_seq_length': 384, 'do_lower_case': False}) with Transformer model: MPNetModel
82
+ (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})
83
+ (2): Normalize()
84
+ )
85
+ ```
86
+
87
+ ## Usage
88
+
89
+ ### Direct Usage (Sentence Transformers)
90
+
91
+ First install the Sentence Transformers library:
92
+
93
+ ```bash
94
+ pip install -U sentence-transformers
95
+ ```
96
+
97
+ Then you can load this model and run inference.
98
+ ```python
99
+ from sentence_transformers import SentenceTransformer
100
+
101
+ # Download from the 🤗 Hub
102
+ model = SentenceTransformer("sentence_transformers_model_id")
103
+ # Run inference
104
+ sentences = [
105
+ "What new power does the Central Bank have regarding the number of directors on a bank's board?",
106
+ 'The Central Bank can determine the number of board members, which shall not be less than seven',
107
+ 'Within fifteen days of becoming aware of such facts',
108
+ ]
109
+ embeddings = model.encode(sentences)
110
+ print(embeddings.shape)
111
+ # [3, 768]
112
+
113
+ # Get the similarity scores for the embeddings
114
+ similarities = model.similarity(embeddings, embeddings)
115
+ print(similarities.shape)
116
+ # [3, 3]
117
+ ```
118
+
119
+ <!--
120
+ ### Direct Usage (Transformers)
121
+
122
+ <details><summary>Click to see the direct usage in Transformers</summary>
123
+
124
+ </details>
125
+ -->
126
+
127
+ <!--
128
+ ### Downstream Usage (Sentence Transformers)
129
+
130
+ You can finetune this model on your own dataset.
131
+
132
+ <details><summary>Click to expand</summary>
133
+
134
+ </details>
135
+ -->
136
+
137
+ <!--
138
+ ### Out-of-Scope Use
139
+
140
+ *List how the model may foreseeably be misused and address what users ought not to do with the model.*
141
+ -->
142
+
143
+ <!--
144
+ ## Bias, Risks and Limitations
145
+
146
+ *What are the known or foreseeable issues stemming from this model? You could also flag here known failure cases or weaknesses of the model.*
147
+ -->
148
+
149
+ <!--
150
+ ### Recommendations
151
+
152
+ *What are recommendations with respect to the foreseeable issues? For example, filtering explicit content.*
153
+ -->
154
+
155
+ ## Training Details
156
+
157
+ ### Training Dataset
158
+
159
+ #### Unnamed Dataset
160
+
161
+
162
+ * Size: 80 training samples
163
+ * Columns: <code>query</code> and <code>answer</code>
164
+ * Approximate statistics based on the first 1000 samples:
165
+ | | query | answer |
166
+ |:--------|:----------------------------------------------------------------------------------|:----------------------------------------------------------------------------------|
167
+ | type | string | string |
168
+ | details | <ul><li>min: 8 tokens</li><li>mean: 16.82 tokens</li><li>max: 22 tokens</li></ul> | <ul><li>min: 3 tokens</li><li>mean: 16.85 tokens</li><li>max: 28 tokens</li></ul> |
169
+ * Samples:
170
+ | query | answer |
171
+ |:---------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------|
172
+ | <code>What new power does the Central Bank have regarding corrective action for misleading disclosures?</code> | <code>The Central Bank can require banks to publish corrected disclosure statements</code> |
173
+ | <code>What new requirement is there for licensed commercial banks regarding corporate governance?</code> | <code>The Board of Directors is ultimately responsible for ensuring compliance with laws and sound banking practices</code> |
174
+ | <code>Who is responsible for overseeing the management of a licensed commercial bank?</code> | <code>The Board of Directors</code> |
175
+ * Loss: [<code>MultipleNegativesRankingLoss</code>](https://sbert.net/docs/package_reference/sentence_transformer/losses.html#multiplenegativesrankingloss) with these parameters:
176
+ ```json
177
+ {
178
+ "scale": 20.0,
179
+ "similarity_fct": "cos_sim"
180
+ }
181
+ ```
182
+
183
+ ### Evaluation Dataset
184
+
185
+ #### Unnamed Dataset
186
+
187
+
188
+ * Size: 20 evaluation samples
189
+ * Columns: <code>query</code> and <code>answer</code>
190
+ * Approximate statistics based on the first 1000 samples:
191
+ | | query | answer |
192
+ |:--------|:----------------------------------------------------------------------------------|:---------------------------------------------------------------------------------|
193
+ | type | string | string |
194
+ | details | <ul><li>min: 11 tokens</li><li>mean: 17.4 tokens</li><li>max: 23 tokens</li></ul> | <ul><li>min: 5 tokens</li><li>mean: 17.2 tokens</li><li>max: 29 tokens</li></ul> |
195
+ * Samples:
196
+ | query | answer |
197
+ |:--------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------|
198
+ | <code>What new power does the Central Bank have regarding the assessment of bank license applications?</code> | <code>The Central Bank can assess whether granting a license is in the interest of the banking system and national economy</code> |
199
+ | <code>What new definition is provided for 'unlawful activity' in the Act?</code> | <code>It has the same meaning as in the Prevention of Money Laundering Act, No. 5 of 2006</code> |
200
+ | <code>What new requirement is there for licensed commercial banks regarding offshore banking?</code> | <code>They must conduct offshore banking business only with non-residents and certain residents as determined by the Central Bank</code> |
201
+ * Loss: [<code>MultipleNegativesRankingLoss</code>](https://sbert.net/docs/package_reference/sentence_transformer/losses.html#multiplenegativesrankingloss) with these parameters:
202
+ ```json
203
+ {
204
+ "scale": 20.0,
205
+ "similarity_fct": "cos_sim"
206
+ }
207
+ ```
208
+
209
+ ### Training Hyperparameters
210
+ #### Non-Default Hyperparameters
211
+
212
+ - `eval_strategy`: epoch
213
+ - `per_device_eval_batch_size`: 16
214
+ - `learning_rate`: 3e-05
215
+ - `warmup_ratio`: 0.1
216
+ - `fp16`: True
217
+ - `load_best_model_at_end`: True
218
+ - `ddp_find_unused_parameters`: False
219
+
220
+ #### All Hyperparameters
221
+ <details><summary>Click to expand</summary>
222
+
223
+ - `overwrite_output_dir`: False
224
+ - `do_predict`: False
225
+ - `eval_strategy`: epoch
226
+ - `prediction_loss_only`: True
227
+ - `per_device_train_batch_size`: 8
228
+ - `per_device_eval_batch_size`: 16
229
+ - `per_gpu_train_batch_size`: None
230
+ - `per_gpu_eval_batch_size`: None
231
+ - `gradient_accumulation_steps`: 1
232
+ - `eval_accumulation_steps`: None
233
+ - `torch_empty_cache_steps`: None
234
+ - `learning_rate`: 3e-05
235
+ - `weight_decay`: 0.0
236
+ - `adam_beta1`: 0.9
237
+ - `adam_beta2`: 0.999
238
+ - `adam_epsilon`: 1e-08
239
+ - `max_grad_norm`: 1.0
240
+ - `num_train_epochs`: 3
241
+ - `max_steps`: -1
242
+ - `lr_scheduler_type`: linear
243
+ - `lr_scheduler_kwargs`: {}
244
+ - `warmup_ratio`: 0.1
245
+ - `warmup_steps`: 0
246
+ - `log_level`: passive
247
+ - `log_level_replica`: warning
248
+ - `log_on_each_node`: True
249
+ - `logging_nan_inf_filter`: True
250
+ - `save_safetensors`: True
251
+ - `save_on_each_node`: False
252
+ - `save_only_model`: False
253
+ - `restore_callback_states_from_checkpoint`: False
254
+ - `no_cuda`: False
255
+ - `use_cpu`: False
256
+ - `use_mps_device`: False
257
+ - `seed`: 42
258
+ - `data_seed`: None
259
+ - `jit_mode_eval`: False
260
+ - `use_ipex`: False
261
+ - `bf16`: False
262
+ - `fp16`: True
263
+ - `fp16_opt_level`: O1
264
+ - `half_precision_backend`: auto
265
+ - `bf16_full_eval`: False
266
+ - `fp16_full_eval`: False
267
+ - `tf32`: None
268
+ - `local_rank`: 0
269
+ - `ddp_backend`: None
270
+ - `tpu_num_cores`: None
271
+ - `tpu_metrics_debug`: False
272
+ - `debug`: []
273
+ - `dataloader_drop_last`: False
274
+ - `dataloader_num_workers`: 0
275
+ - `dataloader_prefetch_factor`: None
276
+ - `past_index`: -1
277
+ - `disable_tqdm`: False
278
+ - `remove_unused_columns`: True
279
+ - `label_names`: None
280
+ - `load_best_model_at_end`: True
281
+ - `ignore_data_skip`: False
282
+ - `fsdp`: []
283
+ - `fsdp_min_num_params`: 0
284
+ - `fsdp_config`: {'min_num_params': 0, 'xla': False, 'xla_fsdp_v2': False, 'xla_fsdp_grad_ckpt': False}
285
+ - `fsdp_transformer_layer_cls_to_wrap`: None
286
+ - `accelerator_config`: {'split_batches': False, 'dispatch_batches': None, 'even_batches': True, 'use_seedable_sampler': True, 'non_blocking': False, 'gradient_accumulation_kwargs': None}
287
+ - `deepspeed`: None
288
+ - `label_smoothing_factor`: 0.0
289
+ - `optim`: adamw_torch
290
+ - `optim_args`: None
291
+ - `adafactor`: False
292
+ - `group_by_length`: False
293
+ - `length_column_name`: length
294
+ - `ddp_find_unused_parameters`: False
295
+ - `ddp_bucket_cap_mb`: None
296
+ - `ddp_broadcast_buffers`: False
297
+ - `dataloader_pin_memory`: True
298
+ - `dataloader_persistent_workers`: False
299
+ - `skip_memory_metrics`: True
300
+ - `use_legacy_prediction_loop`: False
301
+ - `push_to_hub`: False
302
+ - `resume_from_checkpoint`: None
303
+ - `hub_model_id`: None
304
+ - `hub_strategy`: every_save
305
+ - `hub_private_repo`: False
306
+ - `hub_always_push`: False
307
+ - `gradient_checkpointing`: False
308
+ - `gradient_checkpointing_kwargs`: None
309
+ - `include_inputs_for_metrics`: False
310
+ - `eval_do_concat_batches`: True
311
+ - `fp16_backend`: auto
312
+ - `push_to_hub_model_id`: None
313
+ - `push_to_hub_organization`: None
314
+ - `mp_parameters`:
315
+ - `auto_find_batch_size`: False
316
+ - `full_determinism`: False
317
+ - `torchdynamo`: None
318
+ - `ray_scope`: last
319
+ - `ddp_timeout`: 1800
320
+ - `torch_compile`: False
321
+ - `torch_compile_backend`: None
322
+ - `torch_compile_mode`: None
323
+ - `dispatch_batches`: None
324
+ - `split_batches`: None
325
+ - `include_tokens_per_second`: False
326
+ - `include_num_input_tokens_seen`: False
327
+ - `neftune_noise_alpha`: None
328
+ - `optim_target_modules`: None
329
+ - `batch_eval_metrics`: False
330
+ - `eval_on_start`: False
331
+ - `eval_use_gather_object`: False
332
+ - `batch_sampler`: batch_sampler
333
+ - `multi_dataset_batch_sampler`: proportional
334
+
335
+ </details>
336
+
337
+ ### Training Logs
338
+ | Epoch | Step | Training Loss | loss |
339
+ |:-----:|:----:|:-------------:|:------:|
340
+ | 0.2 | 2 | 1.1686 | - |
341
+ | 0.4 | 4 | 1.0061 | - |
342
+ | 0.6 | 6 | 0.8377 | - |
343
+ | 0.8 | 8 | 0.8121 | - |
344
+ | 1.0 | 10 | 0.267 | 0.8161 |
345
+ | 1.2 | 12 | 0.3282 | - |
346
+ | 1.4 | 14 | 0.1546 | - |
347
+ | 1.6 | 16 | 0.3546 | - |
348
+ | 1.8 | 18 | 0.0544 | - |
349
+ | 2.0 | 20 | 0.0271 | 0.6723 |
350
+ | 2.2 | 22 | 0.1496 | - |
351
+ | 2.4 | 24 | 0.0569 | - |
352
+ | 2.6 | 26 | 0.1682 | - |
353
+ | 2.8 | 28 | 0.0452 | - |
354
+ | 3.0 | 30 | 0.0261 | 0.6644 |
355
+
356
+
357
+ ### Framework Versions
358
+ - Python: 3.10.14
359
+ - Sentence Transformers: 3.0.1
360
+ - Transformers: 4.43.1
361
+ - PyTorch: 2.3.0
362
+ - Accelerate: 0.32.0
363
+ - Datasets: 2.19.1
364
+ - Tokenizers: 0.19.1
365
+
366
+ ## Citation
367
+
368
+ ### BibTeX
369
+
370
+ #### Sentence Transformers
371
+ ```bibtex
372
+ @inproceedings{reimers-2019-sentence-bert,
373
+ title = "Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks",
374
+ author = "Reimers, Nils and Gurevych, Iryna",
375
+ booktitle = "Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing",
376
+ month = "11",
377
+ year = "2019",
378
+ publisher = "Association for Computational Linguistics",
379
+ url = "https://arxiv.org/abs/1908.10084",
380
+ }
381
+ ```
382
+
383
+ #### MultipleNegativesRankingLoss
384
+ ```bibtex
385
+ @misc{henderson2017efficient,
386
+ title={Efficient Natural Language Response Suggestion for Smart Reply},
387
+ author={Matthew Henderson and Rami Al-Rfou and Brian Strope and Yun-hsuan Sung and Laszlo Lukacs and Ruiqi Guo and Sanjiv Kumar and Balint Miklos and Ray Kurzweil},
388
+ year={2017},
389
+ eprint={1705.00652},
390
+ archivePrefix={arXiv},
391
+ primaryClass={cs.CL}
392
+ }
393
+ ```
394
+
395
+ <!--
396
+ ## Glossary
397
+
398
+ *Clearly define terms in order to be accessible across audiences.*
399
+ -->
400
+
401
+ <!--
402
+ ## Model Card Authors
403
+
404
+ *Lists the people who create the model card, providing recognition and accountability for the detailed work that goes into its construction.*
405
+ -->
406
+
407
+ <!--
408
+ ## Model Card Contact
409
+
410
+ *Provides a way for people who have updates to the Model Card, suggestions, or questions, to contact the Model Card authors.*
411
+ -->
checkpoint-30/config.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "sentence-transformers/all-mpnet-base-v2",
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.43.1",
23
+ "vocab_size": 30527
24
+ }
checkpoint-30/config_sentence_transformers.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "__version__": {
3
+ "sentence_transformers": "3.0.1",
4
+ "transformers": "4.43.1",
5
+ "pytorch": "2.3.0"
6
+ },
7
+ "prompts": {},
8
+ "default_prompt_name": null,
9
+ "similarity_fn_name": null
10
+ }
checkpoint-30/model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:443a0b647d1bcf171edcab67cb2387c7b72a7c2b001baaded1f4a5c149b8fe30
3
+ size 437967672
checkpoint-30/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
+ ]
checkpoint-30/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:727317a82f04d7598d0ea599a8a8bec610a6946d4507be28eebb43b8dd92525b
3
+ size 871326266
checkpoint-30/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6825edb646cd1252f66c83eeb4e7a27f3e59ce3601e1b1bb01f13cc4f1bcf727
3
+ size 13990
checkpoint-30/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e61694caed75a4de60717c7522cd2bcddf9803313b4abf292318bb17a445487e
3
+ size 1064
checkpoint-30/sentence_bert_config.json ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {
2
+ "max_seq_length": 384,
3
+ "do_lower_case": false
4
+ }
checkpoint-30/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
+ }
checkpoint-30/tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-30/tokenizer_config.json ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": true,
54
+ "cls_token": "<s>",
55
+ "do_lower_case": true,
56
+ "eos_token": "</s>",
57
+ "mask_token": "<mask>",
58
+ "max_length": 128,
59
+ "model_max_length": 384,
60
+ "pad_to_multiple_of": null,
61
+ "pad_token": "<pad>",
62
+ "pad_token_type_id": 0,
63
+ "padding_side": "right",
64
+ "sep_token": "</s>",
65
+ "stride": 0,
66
+ "strip_accents": null,
67
+ "tokenize_chinese_chars": true,
68
+ "tokenizer_class": "MPNetTokenizer",
69
+ "truncation_side": "right",
70
+ "truncation_strategy": "longest_first",
71
+ "unk_token": "[UNK]"
72
+ }
checkpoint-30/trainer_state.json ADDED
@@ -0,0 +1,171 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": 0.6643959283828735,
3
+ "best_model_checkpoint": "autotrain-nrfmc-2jyt8/checkpoint-30",
4
+ "epoch": 3.0,
5
+ "eval_steps": 500,
6
+ "global_step": 30,
7
+ "is_hyper_param_search": false,
8
+ "is_local_process_zero": true,
9
+ "is_world_process_zero": true,
10
+ "log_history": [
11
+ {
12
+ "epoch": 0.2,
13
+ "grad_norm": 26.13092613220215,
14
+ "learning_rate": 1.9999999999999998e-05,
15
+ "loss": 1.1686,
16
+ "step": 2
17
+ },
18
+ {
19
+ "epoch": 0.4,
20
+ "grad_norm": 30.14020538330078,
21
+ "learning_rate": 2.8888888888888888e-05,
22
+ "loss": 1.0061,
23
+ "step": 4
24
+ },
25
+ {
26
+ "epoch": 0.6,
27
+ "grad_norm": 15.682801246643066,
28
+ "learning_rate": 2.6666666666666667e-05,
29
+ "loss": 0.8377,
30
+ "step": 6
31
+ },
32
+ {
33
+ "epoch": 0.8,
34
+ "grad_norm": 29.871631622314453,
35
+ "learning_rate": 2.4444444444444445e-05,
36
+ "loss": 0.8121,
37
+ "step": 8
38
+ },
39
+ {
40
+ "epoch": 1.0,
41
+ "grad_norm": 20.27342414855957,
42
+ "learning_rate": 2.222222222222222e-05,
43
+ "loss": 0.267,
44
+ "step": 10
45
+ },
46
+ {
47
+ "epoch": 1.0,
48
+ "eval_loss": 0.8160585761070251,
49
+ "eval_runtime": 1.2681,
50
+ "eval_samples_per_second": 15.772,
51
+ "eval_steps_per_second": 1.577,
52
+ "step": 10
53
+ },
54
+ {
55
+ "epoch": 1.2,
56
+ "grad_norm": 0.6646674275398254,
57
+ "learning_rate": 1.9999999999999998e-05,
58
+ "loss": 0.3282,
59
+ "step": 12
60
+ },
61
+ {
62
+ "epoch": 1.4,
63
+ "grad_norm": 0.6697103381156921,
64
+ "learning_rate": 1.7777777777777777e-05,
65
+ "loss": 0.1546,
66
+ "step": 14
67
+ },
68
+ {
69
+ "epoch": 1.6,
70
+ "grad_norm": 17.40393829345703,
71
+ "learning_rate": 1.5555555555555555e-05,
72
+ "loss": 0.3546,
73
+ "step": 16
74
+ },
75
+ {
76
+ "epoch": 1.8,
77
+ "grad_norm": 4.753979206085205,
78
+ "learning_rate": 1.3333333333333333e-05,
79
+ "loss": 0.0544,
80
+ "step": 18
81
+ },
82
+ {
83
+ "epoch": 2.0,
84
+ "grad_norm": 1.4014124870300293,
85
+ "learning_rate": 1.111111111111111e-05,
86
+ "loss": 0.0271,
87
+ "step": 20
88
+ },
89
+ {
90
+ "epoch": 2.0,
91
+ "eval_loss": 0.6722619533538818,
92
+ "eval_runtime": 1.2679,
93
+ "eval_samples_per_second": 15.775,
94
+ "eval_steps_per_second": 1.577,
95
+ "step": 20
96
+ },
97
+ {
98
+ "epoch": 2.2,
99
+ "grad_norm": 7.9671711921691895,
100
+ "learning_rate": 8.888888888888888e-06,
101
+ "loss": 0.1496,
102
+ "step": 22
103
+ },
104
+ {
105
+ "epoch": 2.4,
106
+ "grad_norm": 0.3083266615867615,
107
+ "learning_rate": 6.666666666666667e-06,
108
+ "loss": 0.0569,
109
+ "step": 24
110
+ },
111
+ {
112
+ "epoch": 2.6,
113
+ "grad_norm": 7.790665149688721,
114
+ "learning_rate": 4.444444444444444e-06,
115
+ "loss": 0.1682,
116
+ "step": 26
117
+ },
118
+ {
119
+ "epoch": 2.8,
120
+ "grad_norm": 5.577910423278809,
121
+ "learning_rate": 2.222222222222222e-06,
122
+ "loss": 0.0452,
123
+ "step": 28
124
+ },
125
+ {
126
+ "epoch": 3.0,
127
+ "grad_norm": 2.360410213470459,
128
+ "learning_rate": 0.0,
129
+ "loss": 0.0261,
130
+ "step": 30
131
+ },
132
+ {
133
+ "epoch": 3.0,
134
+ "eval_loss": 0.6643959283828735,
135
+ "eval_runtime": 1.2533,
136
+ "eval_samples_per_second": 15.958,
137
+ "eval_steps_per_second": 1.596,
138
+ "step": 30
139
+ }
140
+ ],
141
+ "logging_steps": 2,
142
+ "max_steps": 30,
143
+ "num_input_tokens_seen": 0,
144
+ "num_train_epochs": 3,
145
+ "save_steps": 500,
146
+ "stateful_callbacks": {
147
+ "EarlyStoppingCallback": {
148
+ "args": {
149
+ "early_stopping_patience": 5,
150
+ "early_stopping_threshold": 0.01
151
+ },
152
+ "attributes": {
153
+ "early_stopping_patience_counter": 0
154
+ }
155
+ },
156
+ "TrainerControl": {
157
+ "args": {
158
+ "should_epoch_stop": false,
159
+ "should_evaluate": false,
160
+ "should_log": false,
161
+ "should_save": true,
162
+ "should_training_stop": true
163
+ },
164
+ "attributes": {}
165
+ }
166
+ },
167
+ "total_flos": 0.0,
168
+ "train_batch_size": 8,
169
+ "trial_name": null,
170
+ "trial_params": null
171
+ }
checkpoint-30/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f384f85a746c8bd82502677d5e142556e1dfe6f7a56913f453f84d14f137f25c
3
+ size 5496
checkpoint-30/vocab.txt ADDED
The diff for this file is too large to render. See raw diff
 
config.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "sentence-transformers/all-mpnet-base-v2",
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.43.1",
23
+ "vocab_size": 30527
24
+ }
config_sentence_transformers.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "__version__": {
3
+ "sentence_transformers": "3.0.1",
4
+ "transformers": "4.43.1",
5
+ "pytorch": "2.3.0"
6
+ },
7
+ "prompts": {},
8
+ "default_prompt_name": null,
9
+ "similarity_fn_name": null
10
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:443a0b647d1bcf171edcab67cb2387c7b72a7c2b001baaded1f4a5c149b8fe30
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
+ ]
runs/Aug05_08-16-56_r-bhawanahettiarachchi-newspace-3l8s6eng-79099-rq2gf/events.out.tfevents.1722845818.r-bhawanahettiarachchi-newspace-3l8s6eng-79099-rq2gf.91.0 CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:8a90922c60f1800015c963a8469e5eea2ff1ba5f4345472c78fb3a34561ff00c
3
- size 4312
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:24490ff628f2cf56c2260f7d9d01e239e1ffdc02a66744ea76b644ffe464ed79
3
+ size 8563
runs/Aug05_08-16-56_r-bhawanahettiarachchi-newspace-3l8s6eng-79099-rq2gf/events.out.tfevents.1722845905.r-bhawanahettiarachchi-newspace-3l8s6eng-79099-rq2gf.91.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:93ad941c04551b4b1734bb2b2cbc2515493f74f9c12541af92238d445a599289
3
+ size 354
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,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": true,
54
+ "cls_token": "<s>",
55
+ "do_lower_case": true,
56
+ "eos_token": "</s>",
57
+ "mask_token": "<mask>",
58
+ "max_length": 128,
59
+ "model_max_length": 384,
60
+ "pad_to_multiple_of": null,
61
+ "pad_token": "<pad>",
62
+ "pad_token_type_id": 0,
63
+ "padding_side": "right",
64
+ "sep_token": "</s>",
65
+ "stride": 0,
66
+ "strip_accents": null,
67
+ "tokenize_chinese_chars": true,
68
+ "tokenizer_class": "MPNetTokenizer",
69
+ "truncation_side": "right",
70
+ "truncation_strategy": "longest_first",
71
+ "unk_token": "[UNK]"
72
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f384f85a746c8bd82502677d5e142556e1dfe6f7a56913f453f84d14f137f25c
3
+ size 5496
training_params.json ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "data_path": "autotrain-nrfmc-2jyt8/autotrain-data",
3
+ "model": "sentence-transformers/all-mpnet-base-v2",
4
+ "lr": 3e-05,
5
+ "epochs": 3,
6
+ "max_seq_length": 128,
7
+ "batch_size": 8,
8
+ "warmup_ratio": 0.1,
9
+ "gradient_accumulation": 1,
10
+ "optimizer": "adamw_torch",
11
+ "scheduler": "linear",
12
+ "weight_decay": 0.0,
13
+ "max_grad_norm": 1.0,
14
+ "seed": 42,
15
+ "train_split": "train",
16
+ "valid_split": "validation",
17
+ "logging_steps": -1,
18
+ "project_name": "autotrain-nrfmc-2jyt8",
19
+ "auto_find_batch_size": false,
20
+ "mixed_precision": "fp16",
21
+ "save_total_limit": 1,
22
+ "push_to_hub": true,
23
+ "eval_strategy": "epoch",
24
+ "username": "bhawanahettiarachchi",
25
+ "log": "tensorboard",
26
+ "early_stopping_patience": 5,
27
+ "early_stopping_threshold": 0.01,
28
+ "trainer": "qa",
29
+ "sentence1_column": "autotrain_sentence1",
30
+ "sentence2_column": "autotrain_sentence2",
31
+ "sentence3_column": "autotrain_sentence3",
32
+ "target_column": "autotrain_target"
33
+ }
vocab.txt ADDED
The diff for this file is too large to render. See raw diff