dbswldnjs commited on
Commit
e9bf8b5
1 Parent(s): bd2fac8

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: google-bert/bert-base-multilingual-cased
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: 1.0433918237686157
25
+
26
+ runtime: 63.0935
27
+
28
+ samples_per_second: 2.599
29
+
30
+ steps_per_second: 0.174
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-474/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-474/README.md ADDED
@@ -0,0 +1,414 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: google-bert/bert-base-multilingual-cased
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:1890
13
+ - loss:MultipleNegativesRankingLoss
14
+ widget:
15
+ - source_sentence: 32세 여자가 목을 매다가 가족에게 발견되어 병원에 왔다. 임신 16주였으며 1개월 전부터 식사를 하지 않고 누워만
16
+ 지냈다고 한다. 기분이 우울하고 아무것도 하기가 싫다고 한다. 아이를 잘 키울 자신도 없고 살고 싶지 않으니 죽게 내버려 두라고 한다. 치료는?
17
+ sentences:
18
+ - 전기경련요법
19
+ - 항응고제
20
+ - 괜찮다고 안심시킴
21
+ - source_sentence: 59세 여자가 질분비물이 있고 외음부가 건조하고 따가워 병원에 왔다. 보습제를 사용하여도 증상이 지속되었다. 40세에
22
+ 자궁근종으로 자궁절제술을 받았고 왼쪽 다리의 깊은정맥혈전증으로 약물을 복용 중이다. 안면홍조와 불면증이 50대 초반에 있었다가 현재는 없고
23
+ 성교통이 있다. 골반검사에서 외음부 위축이 관찰되었고 질분비물의 젖은펴바른표본검사에서는 이상이 없다. 처치는?
24
+ sentences:
25
+ - 시상하부기능이상
26
+ - 경질 에스트로겐
27
+ - 면허 취소일부터 3년 경과
28
+ - source_sentence: '15세 여자가 5일 전부터 열이 나고 오한이 든다며 병원에 왔다. 음식을 삼킬 때 목이 아프다고 한다. 혈압 100/60
29
+ mmHg, 맥박 75회/분, 호흡 18회/분, 체온 38.0℃이다. 목의 양쪽 여러 군데에서 1 cm 이하 크기의 림프절이 만져진다. 림프절은
30
+ 압통이 있으나 주위 조직에 고정되어 있지 않다. 몸에서 발진은 보이지 않는다. 혈액검사 결과는 다음과 같다. 다음 검사는?백혈구 13,780/mm^3
31
+ (중성구 25%, 림프구 64%) 혈색소 13.3 g/dL, 혈소판 209,000/mm^3 혈액요소질소 7 mg/dL, 크레아티닌 0.5
32
+ mg/dL, 아스파르테이트아미노전달효소 266 U/L 알라닌아미노전달효소 298 U/L 총빌리루빈 0.7 mg/dL, 알칼리인산분해효소 146
33
+ U/L (참고치, 33~96) C-반응단백질 13 mg/L (참고치, <10) '
34
+ sentences:
35
+ - 혈청 바이러스캡시드항원(VCA) IgM 항체
36
+ - 측정 바이어스
37
+ - 날트렉손
38
+ - source_sentence: 임신나이 27주, 출생체중 750 g으로 태어난 신생아가 생후 5일째 갑자기 청색증이 발생하였다. 출생 직후 폐표면활성제를
39
+ 투여받았고, 이후 기계환기치료 중이다. 심박 170회/분, 호흡 80회/분, 경피산소포화도는 오른손과 왼발에서 모두 60% 이다. 앞가슴이
40
+ 팽창되고, 오른쪽 가슴 청진에서 호흡음이 잘 들리지 않는다. 검사는?
41
+ sentences:
42
+ - 요청에 응함
43
+ - 비전형적 양상 동반 주요우울장애
44
+ - 가슴 X선사진
45
+ - source_sentence: '58세 남자가 7시간 전부터 윗배가 아파서 병원에 왔다. 평소에 알코올간경화로 치료를 받고 있으며 소화궤양에 의한
46
+ 천공으로 수술을 받을 예정이다. 혈압 130/90 mmHg, 맥박 95회/분, 호흡 22회/분, 체온 37.5℃이다. 배 전체가 딱딱하고 배에
47
+ 압통과 반동압통이 있다. 혈액검사 결과는 다음과 같다. 수술 전 투여해야 할 제제는?혈색소 10.3 g/dL, 백혈구 22,000/mm^3,
48
+ 혈소판 120,000/mm^3 프로트롬빈시간 20초(참고치, 12.7~15.4) 활성화부분트롬보플라스틴시간 30초(참고치, 26.3~39.4)
49
+ 총단백질 6.5 g/dL, 알부민 3.0 g/dL,총빌리루빈 3.5 mg/dL, '
50
+ sentences:
51
+ - “전파 가능성이 이렇게 높은데도 다른 사람에게 전파를 매개하는 행위를 하면 형사처벌을 받을 수도 있습니다.”
52
+ - 신선동결혈장
53
+ - 면허자격 정지
54
+ ---
55
+
56
+ # SentenceTransformer based on google-bert/bert-base-multilingual-cased
57
+
58
+ This is a [sentence-transformers](https://www.SBERT.net) model finetuned from [google-bert/bert-base-multilingual-cased](https://huggingface.co/google-bert/bert-base-multilingual-cased). 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.
59
+
60
+ ## Model Details
61
+
62
+ ### Model Description
63
+ - **Model Type:** Sentence Transformer
64
+ - **Base model:** [google-bert/bert-base-multilingual-cased](https://huggingface.co/google-bert/bert-base-multilingual-cased) <!-- at revision 3f076fdb1ab68d5b2880cb87a0886f315b8146f8 -->
65
+ - **Maximum Sequence Length:** 512 tokens
66
+ - **Output Dimensionality:** 768 tokens
67
+ - **Similarity Function:** Cosine Similarity
68
+ <!-- - **Training Dataset:** Unknown -->
69
+ <!-- - **Language:** Unknown -->
70
+ <!-- - **License:** Unknown -->
71
+
72
+ ### Model Sources
73
+
74
+ - **Documentation:** [Sentence Transformers Documentation](https://sbert.net)
75
+ - **Repository:** [Sentence Transformers on GitHub](https://github.com/UKPLab/sentence-transformers)
76
+ - **Hugging Face:** [Sentence Transformers on Hugging Face](https://huggingface.co/models?library=sentence-transformers)
77
+
78
+ ### Full Model Architecture
79
+
80
+ ```
81
+ SentenceTransformer(
82
+ (0): Transformer({'max_seq_length': 512, 'do_lower_case': False}) with Transformer model: BertModel
83
+ (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})
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
+ '58세 남자가 7시간 전부터 윗배가 아파서 병원에 왔다. 평소에 알코올간경화로 치료를 받고 있으며 소화궤양에 의한 천공으로 수술을 받을 예정이다. 혈압 130/90 mmHg, 맥박 95회/분, 호흡 22회/분, 체온 37.5℃이다. 배 전체가 딱딱하고 배에 압통과 반동압통이 있다. 혈액검사 결과는 다음과 같다. 수술 전 투여해야 할 제제는?혈색소 10.3 g/dL, 백혈구 22,000/mm^3, 혈소판 120,000/mm^3 프로트롬빈시간 20초(참고치, 12.7~15.4) 활성화부분트롬보플라스틴시간 30초(참고치, 26.3~39.4) 총단백질 6.5 g/dL, 알부민 3.0 g/dL,총빌리루빈 3.5 mg/dL, ',
106
+ '신선동결혈장',
107
+ '면허자격 정지',
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: 1,890 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: 11 tokens</li><li>mean: 112.75 tokens</li><li>max: 316 tokens</li></ul> | <ul><li>min: 3 tokens</li><li>mean: 8.62 tokens</li><li>max: 33 tokens</li></ul> |
169
+ * Samples:
170
+ | query | answer |
171
+ |:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------|
172
+ | <code>항문압 측정 검사에서 항문 압력이 증가하는 경우는?</code> | <code>항문열창(anal fissure)</code> |
173
+ | <code>복부대동맥(abdominal aorta) 에서 처음 분지(first branch) 되는 동맥은?</code> | <code>돌잘록창자동맥(ileocolic artery)</code> |
174
+ | <code>58세 남자가 대량 장절제 후 짧은창자증후군(short bowel syndrome) 으로 4개월 간 완전비경구<br>영양요법을 받고 있는 중이다. 채혈 후 피가 잘 멎지 않았다. 혈액검사 결과는 다음과 같다.<br>결핍이 의심되는 것은?<br>혈색소 13.5 g/dL, 백혈구 4,500/mm^3, 혈소판 220,000/mm^3 <br>알부민 3.7 g/dL, 총 빌리루빈 1.0 mg/dL, 알칼리 인산분해효소(ALP) 90 U/L,<br>아스파르테이트 아미노전달효소(AST) 22 U/L, 알라닌 아미노전달효소(ALT) 16 U/L,<br>프로트롬빈시간 30.5초 (참고치, 12.7~15.4),<br>활성화부분트롬보플라스틴시간 34.5초 (참고치, 26.3~39.4) </code> | <code>트롬빈</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: 164 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: 18 tokens</li><li>mean: 153.24 tokens</li><li>max: 369 tokens</li></ul> | <ul><li>min: 3 tokens</li><li>mean: 9.71 tokens</li><li>max: 40 tokens</li></ul> |
195
+ * Samples:
196
+ | query | answer |
197
+ |:-----------------------------------------------------------------------------------------------------------|:----------------------|
198
+ | <code>광역시 소재 대학병원에 소속된 내과 전문의 A가 콜레라 환자를 진단했다. A가 할 조치는?</code> | <code>병원장에게 보고</code> |
199
+ | <code>A는 제1급 감염병으로 진단을 받았다. B는 마스크를 착용하지 않은 채 A와 밀접하게 접촉했다. B는 증상이 없다. 역학조사관은 이 단계에서 B를 무엇으로 분류하는가?</code> | <code>감염병 의심자</code> |
200
+ | <code>검역소 내 격리병동에 격리되어 있던 콜레라 환자 A의 감염력이 없어진 것이 확인되었다. A에 대한 조치는?</code> | <code>격리 해제</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
+ - `learning_rate`: 3e-05
234
+ - `weight_decay`: 0.0
235
+ - `adam_beta1`: 0.9
236
+ - `adam_beta2`: 0.999
237
+ - `adam_epsilon`: 1e-08
238
+ - `max_grad_norm`: 1.0
239
+ - `num_train_epochs`: 3
240
+ - `max_steps`: -1
241
+ - `lr_scheduler_type`: linear
242
+ - `lr_scheduler_kwargs`: {}
243
+ - `warmup_ratio`: 0.1
244
+ - `warmup_steps`: 0
245
+ - `log_level`: passive
246
+ - `log_level_replica`: warning
247
+ - `log_on_each_node`: True
248
+ - `logging_nan_inf_filter`: True
249
+ - `save_safetensors`: True
250
+ - `save_on_each_node`: False
251
+ - `save_only_model`: False
252
+ - `restore_callback_states_from_checkpoint`: False
253
+ - `no_cuda`: False
254
+ - `use_cpu`: False
255
+ - `use_mps_device`: False
256
+ - `seed`: 42
257
+ - `data_seed`: None
258
+ - `jit_mode_eval`: False
259
+ - `use_ipex`: False
260
+ - `bf16`: False
261
+ - `fp16`: True
262
+ - `fp16_opt_level`: O1
263
+ - `half_precision_backend`: auto
264
+ - `bf16_full_eval`: False
265
+ - `fp16_full_eval`: False
266
+ - `tf32`: None
267
+ - `local_rank`: 0
268
+ - `ddp_backend`: None
269
+ - `tpu_num_cores`: None
270
+ - `tpu_metrics_debug`: False
271
+ - `debug`: []
272
+ - `dataloader_drop_last`: False
273
+ - `dataloader_num_workers`: 0
274
+ - `dataloader_prefetch_factor`: None
275
+ - `past_index`: -1
276
+ - `disable_tqdm`: False
277
+ - `remove_unused_columns`: True
278
+ - `label_names`: None
279
+ - `load_best_model_at_end`: True
280
+ - `ignore_data_skip`: False
281
+ - `fsdp`: []
282
+ - `fsdp_min_num_params`: 0
283
+ - `fsdp_config`: {'min_num_params': 0, 'xla': False, 'xla_fsdp_v2': False, 'xla_fsdp_grad_ckpt': False}
284
+ - `fsdp_transformer_layer_cls_to_wrap`: None
285
+ - `accelerator_config`: {'split_batches': False, 'dispatch_batches': None, 'even_batches': True, 'use_seedable_sampler': True, 'non_blocking': False, 'gradient_accumulation_kwargs': None}
286
+ - `deepspeed`: None
287
+ - `label_smoothing_factor`: 0.0
288
+ - `optim`: adamw_torch
289
+ - `optim_args`: None
290
+ - `adafactor`: False
291
+ - `group_by_length`: False
292
+ - `length_column_name`: length
293
+ - `ddp_find_unused_parameters`: False
294
+ - `ddp_bucket_cap_mb`: None
295
+ - `ddp_broadcast_buffers`: False
296
+ - `dataloader_pin_memory`: True
297
+ - `dataloader_persistent_workers`: False
298
+ - `skip_memory_metrics`: True
299
+ - `use_legacy_prediction_loop`: False
300
+ - `push_to_hub`: False
301
+ - `resume_from_checkpoint`: None
302
+ - `hub_model_id`: None
303
+ - `hub_strategy`: every_save
304
+ - `hub_private_repo`: False
305
+ - `hub_always_push`: False
306
+ - `gradient_checkpointing`: False
307
+ - `gradient_checkpointing_kwargs`: None
308
+ - `include_inputs_for_metrics`: False
309
+ - `eval_do_concat_batches`: True
310
+ - `fp16_backend`: auto
311
+ - `push_to_hub_model_id`: None
312
+ - `push_to_hub_organization`: None
313
+ - `mp_parameters`:
314
+ - `auto_find_batch_size`: False
315
+ - `full_determinism`: False
316
+ - `torchdynamo`: None
317
+ - `ray_scope`: last
318
+ - `ddp_timeout`: 1800
319
+ - `torch_compile`: False
320
+ - `torch_compile_backend`: None
321
+ - `torch_compile_mode`: None
322
+ - `dispatch_batches`: None
323
+ - `split_batches`: None
324
+ - `include_tokens_per_second`: False
325
+ - `include_num_input_tokens_seen`: False
326
+ - `neftune_noise_alpha`: None
327
+ - `optim_target_modules`: None
328
+ - `batch_eval_metrics`: False
329
+ - `eval_on_start`: False
330
+ - `batch_sampler`: batch_sampler
331
+ - `multi_dataset_batch_sampler`: proportional
332
+
333
+ </details>
334
+
335
+ ### Training Logs
336
+ | Epoch | Step | Training Loss | loss |
337
+ |:------:|:----:|:-------------:|:------:|
338
+ | 0.1055 | 25 | 2.4397 | - |
339
+ | 0.2110 | 50 | 1.986 | - |
340
+ | 0.3165 | 75 | 1.881 | - |
341
+ | 0.4219 | 100 | 1.8105 | - |
342
+ | 0.5274 | 125 | 1.7378 | - |
343
+ | 0.6329 | 150 | 1.5942 | - |
344
+ | 0.7384 | 175 | 1.4586 | - |
345
+ | 0.8439 | 200 | 1.3904 | - |
346
+ | 0.9494 | 225 | 1.4707 | - |
347
+ | 1.0 | 237 | - | 1.3109 |
348
+ | 1.0549 | 250 | 1.234 | - |
349
+ | 1.1603 | 275 | 1.1867 | - |
350
+ | 1.2658 | 300 | 1.0103 | - |
351
+ | 1.3713 | 325 | 1.088 | - |
352
+ | 1.4768 | 350 | 1.1066 | - |
353
+ | 1.5823 | 375 | 1.049 | - |
354
+ | 1.6878 | 400 | 1.0639 | - |
355
+ | 1.7932 | 425 | 1.1133 | - |
356
+ | 1.8987 | 450 | 0.9188 | - |
357
+ | 2.0 | 474 | - | 1.0434 |
358
+
359
+
360
+ ### Framework Versions
361
+ - Python: 3.10.14
362
+ - Sentence Transformers: 3.0.1
363
+ - Transformers: 4.42.2
364
+ - PyTorch: 2.3.0
365
+ - Accelerate: 0.31.0
366
+ - Datasets: 2.19.1
367
+ - Tokenizers: 0.19.1
368
+
369
+ ## Citation
370
+
371
+ ### BibTeX
372
+
373
+ #### Sentence Transformers
374
+ ```bibtex
375
+ @inproceedings{reimers-2019-sentence-bert,
376
+ title = "Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks",
377
+ author = "Reimers, Nils and Gurevych, Iryna",
378
+ booktitle = "Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing",
379
+ month = "11",
380
+ year = "2019",
381
+ publisher = "Association for Computational Linguistics",
382
+ url = "https://arxiv.org/abs/1908.10084",
383
+ }
384
+ ```
385
+
386
+ #### MultipleNegativesRankingLoss
387
+ ```bibtex
388
+ @misc{henderson2017efficient,
389
+ title={Efficient Natural Language Response Suggestion for Smart Reply},
390
+ 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},
391
+ year={2017},
392
+ eprint={1705.00652},
393
+ archivePrefix={arXiv},
394
+ primaryClass={cs.CL}
395
+ }
396
+ ```
397
+
398
+ <!--
399
+ ## Glossary
400
+
401
+ *Clearly define terms in order to be accessible across audiences.*
402
+ -->
403
+
404
+ <!--
405
+ ## Model Card Authors
406
+
407
+ *Lists the people who create the model card, providing recognition and accountability for the detailed work that goes into its construction.*
408
+ -->
409
+
410
+ <!--
411
+ ## Model Card Contact
412
+
413
+ *Provides a way for people who have updates to the Model Card, suggestions, or questions, to contact the Model Card authors.*
414
+ -->
checkpoint-474/config.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "google-bert/bert-base-multilingual-cased",
3
+ "architectures": [
4
+ "BertModel"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "classifier_dropout": null,
8
+ "directionality": "bidi",
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-12,
15
+ "max_position_embeddings": 512,
16
+ "model_type": "bert",
17
+ "num_attention_heads": 12,
18
+ "num_hidden_layers": 12,
19
+ "pad_token_id": 0,
20
+ "pooler_fc_size": 768,
21
+ "pooler_num_attention_heads": 12,
22
+ "pooler_num_fc_layers": 3,
23
+ "pooler_size_per_head": 128,
24
+ "pooler_type": "first_token_transform",
25
+ "position_embedding_type": "absolute",
26
+ "torch_dtype": "float32",
27
+ "transformers_version": "4.42.2",
28
+ "type_vocab_size": 2,
29
+ "use_cache": true,
30
+ "vocab_size": 119547
31
+ }
checkpoint-474/config_sentence_transformers.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "__version__": {
3
+ "sentence_transformers": "3.0.1",
4
+ "transformers": "4.42.2",
5
+ "pytorch": "2.3.0"
6
+ },
7
+ "prompts": {},
8
+ "default_prompt_name": null,
9
+ "similarity_fn_name": null
10
+ }
checkpoint-474/model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c98dd888e29d9fa10c08e67eeb3c0be1034350309c4ed2d18082c0ebb168ebe9
3
+ size 711436136
checkpoint-474/modules.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ ]
checkpoint-474/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1bcd0591cf80220cc8de4814d7cd19e9636f9c0452f11f2cf4cf193e021a26db
3
+ size 1418262074
checkpoint-474/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:caf2bfebfe820596adc11776ed6db4c892c0efa9a655a7ffeaa1618a8b8a06c3
3
+ size 13990
checkpoint-474/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d450dfea6f4c5a7f460e6c81b97527fa43938d4e7bb4f1fd28c28e1facc75110
3
+ size 1064
checkpoint-474/sentence_bert_config.json ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {
2
+ "max_seq_length": 512,
3
+ "do_lower_case": false
4
+ }
checkpoint-474/special_tokens_map.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "mask_token": "[MASK]",
4
+ "pad_token": "[PAD]",
5
+ "sep_token": "[SEP]",
6
+ "unk_token": "[UNK]"
7
+ }
checkpoint-474/tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-474/tokenizer_config.json ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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_lower_case": false,
47
+ "mask_token": "[MASK]",
48
+ "model_max_length": 512,
49
+ "pad_token": "[PAD]",
50
+ "sep_token": "[SEP]",
51
+ "strip_accents": null,
52
+ "tokenize_chinese_chars": true,
53
+ "tokenizer_class": "BertTokenizer",
54
+ "unk_token": "[UNK]"
55
+ }
checkpoint-474/trainer_state.json ADDED
@@ -0,0 +1,184 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": 1.0433918237686157,
3
+ "best_model_checkpoint": "autotrain-khjb3-w8jbx/checkpoint-474",
4
+ "epoch": 2.0,
5
+ "eval_steps": 500,
6
+ "global_step": 474,
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.10548523206751055,
13
+ "grad_norm": 34.03109359741211,
14
+ "learning_rate": 1.0416666666666666e-05,
15
+ "loss": 2.4397,
16
+ "step": 25
17
+ },
18
+ {
19
+ "epoch": 0.2109704641350211,
20
+ "grad_norm": 90.00489807128906,
21
+ "learning_rate": 2.0833333333333333e-05,
22
+ "loss": 1.986,
23
+ "step": 50
24
+ },
25
+ {
26
+ "epoch": 0.31645569620253167,
27
+ "grad_norm": 26.834562301635742,
28
+ "learning_rate": 2.9859154929577468e-05,
29
+ "loss": 1.881,
30
+ "step": 75
31
+ },
32
+ {
33
+ "epoch": 0.4219409282700422,
34
+ "grad_norm": 19.74114418029785,
35
+ "learning_rate": 2.8685446009389673e-05,
36
+ "loss": 1.8105,
37
+ "step": 100
38
+ },
39
+ {
40
+ "epoch": 0.5274261603375527,
41
+ "grad_norm": 22.13190460205078,
42
+ "learning_rate": 2.751173708920188e-05,
43
+ "loss": 1.7378,
44
+ "step": 125
45
+ },
46
+ {
47
+ "epoch": 0.6329113924050633,
48
+ "grad_norm": 20.573028564453125,
49
+ "learning_rate": 2.6338028169014085e-05,
50
+ "loss": 1.5942,
51
+ "step": 150
52
+ },
53
+ {
54
+ "epoch": 0.7383966244725738,
55
+ "grad_norm": 30.517986297607422,
56
+ "learning_rate": 2.5164319248826293e-05,
57
+ "loss": 1.4586,
58
+ "step": 175
59
+ },
60
+ {
61
+ "epoch": 0.8438818565400844,
62
+ "grad_norm": 23.457304000854492,
63
+ "learning_rate": 2.3990610328638498e-05,
64
+ "loss": 1.3904,
65
+ "step": 200
66
+ },
67
+ {
68
+ "epoch": 0.9493670886075949,
69
+ "grad_norm": 31.64182472229004,
70
+ "learning_rate": 2.2816901408450703e-05,
71
+ "loss": 1.4707,
72
+ "step": 225
73
+ },
74
+ {
75
+ "epoch": 1.0,
76
+ "eval_loss": 1.3109228610992432,
77
+ "eval_runtime": 60.4201,
78
+ "eval_samples_per_second": 2.714,
79
+ "eval_steps_per_second": 0.182,
80
+ "step": 237
81
+ },
82
+ {
83
+ "epoch": 1.0548523206751055,
84
+ "grad_norm": 24.206829071044922,
85
+ "learning_rate": 2.164319248826291e-05,
86
+ "loss": 1.234,
87
+ "step": 250
88
+ },
89
+ {
90
+ "epoch": 1.160337552742616,
91
+ "grad_norm": 15.992789268493652,
92
+ "learning_rate": 2.0469483568075116e-05,
93
+ "loss": 1.1867,
94
+ "step": 275
95
+ },
96
+ {
97
+ "epoch": 1.2658227848101267,
98
+ "grad_norm": 38.054229736328125,
99
+ "learning_rate": 1.9295774647887324e-05,
100
+ "loss": 1.0103,
101
+ "step": 300
102
+ },
103
+ {
104
+ "epoch": 1.371308016877637,
105
+ "grad_norm": 23.401416778564453,
106
+ "learning_rate": 1.812206572769953e-05,
107
+ "loss": 1.088,
108
+ "step": 325
109
+ },
110
+ {
111
+ "epoch": 1.4767932489451476,
112
+ "grad_norm": 16.83168601989746,
113
+ "learning_rate": 1.694835680751174e-05,
114
+ "loss": 1.1066,
115
+ "step": 350
116
+ },
117
+ {
118
+ "epoch": 1.5822784810126582,
119
+ "grad_norm": 25.251529693603516,
120
+ "learning_rate": 1.5774647887323945e-05,
121
+ "loss": 1.049,
122
+ "step": 375
123
+ },
124
+ {
125
+ "epoch": 1.6877637130801688,
126
+ "grad_norm": 14.522319793701172,
127
+ "learning_rate": 1.460093896713615e-05,
128
+ "loss": 1.0639,
129
+ "step": 400
130
+ },
131
+ {
132
+ "epoch": 1.7932489451476794,
133
+ "grad_norm": 28.719419479370117,
134
+ "learning_rate": 1.3427230046948357e-05,
135
+ "loss": 1.1133,
136
+ "step": 425
137
+ },
138
+ {
139
+ "epoch": 1.8987341772151898,
140
+ "grad_norm": 23.55721664428711,
141
+ "learning_rate": 1.2253521126760564e-05,
142
+ "loss": 0.9188,
143
+ "step": 450
144
+ },
145
+ {
146
+ "epoch": 2.0,
147
+ "eval_loss": 1.0433918237686157,
148
+ "eval_runtime": 63.4764,
149
+ "eval_samples_per_second": 2.584,
150
+ "eval_steps_per_second": 0.173,
151
+ "step": 474
152
+ }
153
+ ],
154
+ "logging_steps": 25,
155
+ "max_steps": 711,
156
+ "num_input_tokens_seen": 0,
157
+ "num_train_epochs": 3,
158
+ "save_steps": 500,
159
+ "stateful_callbacks": {
160
+ "EarlyStoppingCallback": {
161
+ "args": {
162
+ "early_stopping_patience": 5,
163
+ "early_stopping_threshold": 0.01
164
+ },
165
+ "attributes": {
166
+ "early_stopping_patience_counter": 0
167
+ }
168
+ },
169
+ "TrainerControl": {
170
+ "args": {
171
+ "should_epoch_stop": false,
172
+ "should_evaluate": false,
173
+ "should_log": false,
174
+ "should_save": true,
175
+ "should_training_stop": false
176
+ },
177
+ "attributes": {}
178
+ }
179
+ },
180
+ "total_flos": 0.0,
181
+ "train_batch_size": 8,
182
+ "trial_name": null,
183
+ "trial_params": null
184
+ }
checkpoint-474/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0770d98336ee4ff0dc7e1a9ffa95659023457f080d7a2f628b395701143e049f
3
+ size 5432
checkpoint-474/vocab.txt ADDED
The diff for this file is too large to render. See raw diff
 
config.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "google-bert/bert-base-multilingual-cased",
3
+ "architectures": [
4
+ "BertModel"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "classifier_dropout": null,
8
+ "directionality": "bidi",
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-12,
15
+ "max_position_embeddings": 512,
16
+ "model_type": "bert",
17
+ "num_attention_heads": 12,
18
+ "num_hidden_layers": 12,
19
+ "pad_token_id": 0,
20
+ "pooler_fc_size": 768,
21
+ "pooler_num_attention_heads": 12,
22
+ "pooler_num_fc_layers": 3,
23
+ "pooler_size_per_head": 128,
24
+ "pooler_type": "first_token_transform",
25
+ "position_embedding_type": "absolute",
26
+ "torch_dtype": "float32",
27
+ "transformers_version": "4.42.2",
28
+ "type_vocab_size": 2,
29
+ "use_cache": true,
30
+ "vocab_size": 119547
31
+ }
config_sentence_transformers.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "__version__": {
3
+ "sentence_transformers": "3.0.1",
4
+ "transformers": "4.42.2",
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:c98dd888e29d9fa10c08e67eeb3c0be1034350309c4ed2d18082c0ebb168ebe9
3
+ size 711436136
modules.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ ]
runs/Jun30_05-38-36_r-dbswldnjs-testing-space-f9oh3kzl-8f168-m4v0x/events.out.tfevents.1719725918.r-dbswldnjs-testing-space-f9oh3kzl-8f168-m4v0x.97.0 CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:f6fd3ad41cfd9be1e5f178f3ed16fe80685af4b48af7d7104aeb18aa7b5a1b8f
3
- size 10245
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:efa5fd6d42b01705066bd11f9c3ab5fc5a40d9456504a114ac238a41d90c47a2
3
+ size 11292
runs/Jun30_05-38-36_r-dbswldnjs-testing-space-f9oh3kzl-8f168-m4v0x/events.out.tfevents.1719733508.r-dbswldnjs-testing-space-f9oh3kzl-8f168-m4v0x.97.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b780d0580e6b34352a7b3c5d45b904aa9581c933031fbd1c6d7ff3d6a8c50126
3
+ size 359
sentence_bert_config.json ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {
2
+ "max_seq_length": 512,
3
+ "do_lower_case": false
4
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "mask_token": "[MASK]",
4
+ "pad_token": "[PAD]",
5
+ "sep_token": "[SEP]",
6
+ "unk_token": "[UNK]"
7
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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_lower_case": false,
47
+ "mask_token": "[MASK]",
48
+ "model_max_length": 512,
49
+ "pad_token": "[PAD]",
50
+ "sep_token": "[SEP]",
51
+ "strip_accents": null,
52
+ "tokenize_chinese_chars": true,
53
+ "tokenizer_class": "BertTokenizer",
54
+ "unk_token": "[UNK]"
55
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0770d98336ee4ff0dc7e1a9ffa95659023457f080d7a2f628b395701143e049f
3
+ size 5432
training_params.json ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "data_path": "autotrain-khjb3-w8jbx/autotrain-data",
3
+ "model": "google-bert/bert-base-multilingual-cased",
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-khjb3-w8jbx",
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": "dbswldnjs",
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