minh132 commited on
Commit
0acac25
1 Parent(s): 7aa6b25

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
1_Pooling/config.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "word_embedding_dimension": 1024,
3
+ "pooling_mode_cls_token": true,
4
+ "pooling_mode_mean_tokens": false,
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,141 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - sentence-transformers
4
+ - sentence-similarity
5
+ - feature-extraction
6
+ pipeline_tag: sentence-similarity
7
+ library_name: sentence-transformers
8
+ ---
9
+
10
+ # SentenceTransformer
11
+
12
+ This is a [sentence-transformers](https://www.SBERT.net) model trained. It maps sentences & paragraphs to a 1024-dimensional dense vector space and can be used for semantic textual similarity, semantic search, paraphrase mining, text classification, clustering, and more.
13
+
14
+ ## Model Details
15
+
16
+ ### Model Description
17
+ - **Model Type:** Sentence Transformer
18
+ <!-- - **Base model:** [Unknown](https://huggingface.co/unknown) -->
19
+ - **Maximum Sequence Length:** 8192 tokens
20
+ - **Output Dimensionality:** 1024 tokens
21
+ - **Similarity Function:** Cosine Similarity
22
+ <!-- - **Training Dataset:** Unknown -->
23
+ <!-- - **Language:** Unknown -->
24
+ <!-- - **License:** Unknown -->
25
+
26
+ ### Model Sources
27
+
28
+ - **Documentation:** [Sentence Transformers Documentation](https://sbert.net)
29
+ - **Repository:** [Sentence Transformers on GitHub](https://github.com/UKPLab/sentence-transformers)
30
+ - **Hugging Face:** [Sentence Transformers on Hugging Face](https://huggingface.co/models?library=sentence-transformers)
31
+
32
+ ### Full Model Architecture
33
+
34
+ ```
35
+ SentenceTransformer(
36
+ (0): Transformer({'max_seq_length': 8192, 'do_lower_case': False}) with Transformer model: XLMRobertaModel
37
+ (1): Pooling({'word_embedding_dimension': 1024, 'pooling_mode_cls_token': True, 'pooling_mode_mean_tokens': False, 'pooling_mode_max_tokens': False, 'pooling_mode_mean_sqrt_len_tokens': False, 'pooling_mode_weightedmean_tokens': False, 'pooling_mode_lasttoken': False, 'include_prompt': True})
38
+ (2): Normalize()
39
+ )
40
+ ```
41
+
42
+ ## Usage
43
+
44
+ ### Direct Usage (Sentence Transformers)
45
+
46
+ First install the Sentence Transformers library:
47
+
48
+ ```bash
49
+ pip install -U sentence-transformers
50
+ ```
51
+
52
+ Then you can load this model and run inference.
53
+ ```python
54
+ from sentence_transformers import SentenceTransformer
55
+
56
+ # Download from the 🤗 Hub
57
+ model = SentenceTransformer("sentence_transformers_model_id")
58
+ # Run inference
59
+ sentences = [
60
+ 'The weather is lovely today.',
61
+ "It's so sunny outside!",
62
+ 'He drove to the stadium.',
63
+ ]
64
+ embeddings = model.encode(sentences)
65
+ print(embeddings.shape)
66
+ # [3, 1024]
67
+
68
+ # Get the similarity scores for the embeddings
69
+ similarities = model.similarity(embeddings, embeddings)
70
+ print(similarities.shape)
71
+ # [3, 3]
72
+ ```
73
+
74
+ <!--
75
+ ### Direct Usage (Transformers)
76
+
77
+ <details><summary>Click to see the direct usage in Transformers</summary>
78
+
79
+ </details>
80
+ -->
81
+
82
+ <!--
83
+ ### Downstream Usage (Sentence Transformers)
84
+
85
+ You can finetune this model on your own dataset.
86
+
87
+ <details><summary>Click to expand</summary>
88
+
89
+ </details>
90
+ -->
91
+
92
+ <!--
93
+ ### Out-of-Scope Use
94
+
95
+ *List how the model may foreseeably be misused and address what users ought not to do with the model.*
96
+ -->
97
+
98
+ <!--
99
+ ## Bias, Risks and Limitations
100
+
101
+ *What are the known or foreseeable issues stemming from this model? You could also flag here known failure cases or weaknesses of the model.*
102
+ -->
103
+
104
+ <!--
105
+ ### Recommendations
106
+
107
+ *What are recommendations with respect to the foreseeable issues? For example, filtering explicit content.*
108
+ -->
109
+
110
+ ## Training Details
111
+
112
+ ### Framework Versions
113
+ - Python: 3.10.15
114
+ - Sentence Transformers: 3.2.0
115
+ - Transformers: 4.45.2
116
+ - PyTorch: 2.5.0+cu124
117
+ - Accelerate: 1.0.1
118
+ - Datasets: 3.0.1
119
+ - Tokenizers: 0.20.1
120
+
121
+ ## Citation
122
+
123
+ ### BibTeX
124
+
125
+ <!--
126
+ ## Glossary
127
+
128
+ *Clearly define terms in order to be accessible across audiences.*
129
+ -->
130
+
131
+ <!--
132
+ ## Model Card Authors
133
+
134
+ *Lists the people who create the model card, providing recognition and accountability for the detailed work that goes into its construction.*
135
+ -->
136
+
137
+ <!--
138
+ ## Model Card Contact
139
+
140
+ *Provides a way for people who have updates to the Model Card, suggestions, or questions, to contact the Model Card authors.*
141
+ -->
config.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "/root/FlagEmbedding/model/checkpoint-1000",
3
+ "architectures": [
4
+ "XLMRobertaModel"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "bos_token_id": 0,
8
+ "classifier_dropout": null,
9
+ "eos_token_id": 2,
10
+ "hidden_act": "gelu",
11
+ "hidden_dropout_prob": 0.1,
12
+ "hidden_size": 1024,
13
+ "initializer_range": 0.02,
14
+ "intermediate_size": 4096,
15
+ "layer_norm_eps": 1e-05,
16
+ "max_position_embeddings": 8194,
17
+ "model_type": "xlm-roberta",
18
+ "num_attention_heads": 16,
19
+ "num_hidden_layers": 24,
20
+ "output_past": true,
21
+ "pad_token_id": 1,
22
+ "position_embedding_type": "absolute",
23
+ "torch_dtype": "float32",
24
+ "transformers_version": "4.45.2",
25
+ "type_vocab_size": 1,
26
+ "use_cache": true,
27
+ "vocab_size": 250002
28
+ }
config_sentence_transformers.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "__version__": {
3
+ "sentence_transformers": "3.2.0",
4
+ "transformers": "4.45.2",
5
+ "pytorch": "2.5.0+cu124"
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:acc084f415a8143e0ed902b0fa5a31a46580f31595ac921772f16283c257d9b1
3
+ size 2271064456
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
+ ]
optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:daaf08a5921c5d8904a82f8567d6fe7978bfb5d781f39e00a89fcf860be09a81
3
+ size 4533972233
rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d5b801ae866328c0fc70d4ceee606053130a7c2c233d3fcbf60cb4cdc20feb8f
3
+ size 14308
scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5b0a3e7fcb2190532bf3ec1d72999db0e0b9b355630fba59249e99dd669c6408
3
+ size 1064
sentence_bert_config.json ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {
2
+ "max_seq_length": 8192,
3
+ "do_lower_case": false
4
+ }
sentencepiece.bpe.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cfc8146abe2a0488e9e2a0c56de7952f7c11ab059eca145a0a727afce0db2865
3
+ size 5069051
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
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b74659c780d49afad7a7b9799868f75cbd3014fb6c34956e85a793028d38094a
3
+ size 17098251
tokenizer_config.json ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "250001": {
36
+ "content": "<mask>",
37
+ "lstrip": true,
38
+ "normalized": false,
39
+ "rstrip": false,
40
+ "single_word": false,
41
+ "special": true
42
+ }
43
+ },
44
+ "bos_token": "<s>",
45
+ "clean_up_tokenization_spaces": true,
46
+ "cls_token": "<s>",
47
+ "eos_token": "</s>",
48
+ "mask_token": "<mask>",
49
+ "model_max_length": 8192,
50
+ "pad_token": "<pad>",
51
+ "sep_token": "</s>",
52
+ "sp_model_kwargs": {},
53
+ "tokenizer_class": "XLMRobertaTokenizer",
54
+ "unk_token": "<unk>"
55
+ }
trainer_state.json ADDED
@@ -0,0 +1,733 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": null,
3
+ "best_model_checkpoint": null,
4
+ "epoch": 1.6447368421052633,
5
+ "eval_steps": 500,
6
+ "global_step": 1000,
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.01644736842105263,
13
+ "grad_norm": NaN,
14
+ "learning_rate": 1e-05,
15
+ "loss": 0.7345,
16
+ "step": 10
17
+ },
18
+ {
19
+ "epoch": 0.03289473684210526,
20
+ "grad_norm": NaN,
21
+ "learning_rate": 1e-05,
22
+ "loss": 0.5846,
23
+ "step": 20
24
+ },
25
+ {
26
+ "epoch": 0.049342105263157895,
27
+ "grad_norm": 56.480621337890625,
28
+ "learning_rate": 9.998355263157894e-06,
29
+ "loss": 0.8864,
30
+ "step": 30
31
+ },
32
+ {
33
+ "epoch": 0.06578947368421052,
34
+ "grad_norm": NaN,
35
+ "learning_rate": 9.998355263157894e-06,
36
+ "loss": 0.4863,
37
+ "step": 40
38
+ },
39
+ {
40
+ "epoch": 0.08223684210526316,
41
+ "grad_norm": NaN,
42
+ "learning_rate": 9.99671052631579e-06,
43
+ "loss": 0.4998,
44
+ "step": 50
45
+ },
46
+ {
47
+ "epoch": 0.09868421052631579,
48
+ "grad_norm": NaN,
49
+ "learning_rate": 9.99671052631579e-06,
50
+ "loss": 0.7638,
51
+ "step": 60
52
+ },
53
+ {
54
+ "epoch": 0.11513157894736842,
55
+ "grad_norm": NaN,
56
+ "learning_rate": 9.99671052631579e-06,
57
+ "loss": 0.561,
58
+ "step": 70
59
+ },
60
+ {
61
+ "epoch": 0.13157894736842105,
62
+ "grad_norm": NaN,
63
+ "learning_rate": 9.99671052631579e-06,
64
+ "loss": 0.5553,
65
+ "step": 80
66
+ },
67
+ {
68
+ "epoch": 0.14802631578947367,
69
+ "grad_norm": NaN,
70
+ "learning_rate": 9.99671052631579e-06,
71
+ "loss": 0.4243,
72
+ "step": 90
73
+ },
74
+ {
75
+ "epoch": 0.16447368421052633,
76
+ "grad_norm": NaN,
77
+ "learning_rate": 9.99671052631579e-06,
78
+ "loss": 0.5658,
79
+ "step": 100
80
+ },
81
+ {
82
+ "epoch": 0.18092105263157895,
83
+ "grad_norm": NaN,
84
+ "learning_rate": 9.99671052631579e-06,
85
+ "loss": 0.6598,
86
+ "step": 110
87
+ },
88
+ {
89
+ "epoch": 0.19736842105263158,
90
+ "grad_norm": NaN,
91
+ "learning_rate": 9.99671052631579e-06,
92
+ "loss": 0.6398,
93
+ "step": 120
94
+ },
95
+ {
96
+ "epoch": 0.2138157894736842,
97
+ "grad_norm": NaN,
98
+ "learning_rate": 9.99671052631579e-06,
99
+ "loss": 0.5054,
100
+ "step": 130
101
+ },
102
+ {
103
+ "epoch": 0.23026315789473684,
104
+ "grad_norm": NaN,
105
+ "learning_rate": 9.99671052631579e-06,
106
+ "loss": 0.5486,
107
+ "step": 140
108
+ },
109
+ {
110
+ "epoch": 0.24671052631578946,
111
+ "grad_norm": NaN,
112
+ "learning_rate": 9.99342105263158e-06,
113
+ "loss": 0.361,
114
+ "step": 150
115
+ },
116
+ {
117
+ "epoch": 0.2631578947368421,
118
+ "grad_norm": NaN,
119
+ "learning_rate": 9.991776315789474e-06,
120
+ "loss": 0.6621,
121
+ "step": 160
122
+ },
123
+ {
124
+ "epoch": 0.27960526315789475,
125
+ "grad_norm": NaN,
126
+ "learning_rate": 9.991776315789474e-06,
127
+ "loss": 0.0,
128
+ "step": 170
129
+ },
130
+ {
131
+ "epoch": 0.29605263157894735,
132
+ "grad_norm": NaN,
133
+ "learning_rate": 9.991776315789474e-06,
134
+ "loss": 0.0,
135
+ "step": 180
136
+ },
137
+ {
138
+ "epoch": 0.3125,
139
+ "grad_norm": NaN,
140
+ "learning_rate": 9.991776315789474e-06,
141
+ "loss": 0.0,
142
+ "step": 190
143
+ },
144
+ {
145
+ "epoch": 0.32894736842105265,
146
+ "grad_norm": NaN,
147
+ "learning_rate": 9.991776315789474e-06,
148
+ "loss": 0.0,
149
+ "step": 200
150
+ },
151
+ {
152
+ "epoch": 0.34539473684210525,
153
+ "grad_norm": NaN,
154
+ "learning_rate": 9.991776315789474e-06,
155
+ "loss": 0.0,
156
+ "step": 210
157
+ },
158
+ {
159
+ "epoch": 0.3618421052631579,
160
+ "grad_norm": NaN,
161
+ "learning_rate": 9.991776315789474e-06,
162
+ "loss": 0.0,
163
+ "step": 220
164
+ },
165
+ {
166
+ "epoch": 0.3782894736842105,
167
+ "grad_norm": NaN,
168
+ "learning_rate": 9.991776315789474e-06,
169
+ "loss": 0.0,
170
+ "step": 230
171
+ },
172
+ {
173
+ "epoch": 0.39473684210526316,
174
+ "grad_norm": NaN,
175
+ "learning_rate": 9.991776315789474e-06,
176
+ "loss": 0.0,
177
+ "step": 240
178
+ },
179
+ {
180
+ "epoch": 0.41118421052631576,
181
+ "grad_norm": NaN,
182
+ "learning_rate": 9.991776315789474e-06,
183
+ "loss": 0.0,
184
+ "step": 250
185
+ },
186
+ {
187
+ "epoch": 0.4276315789473684,
188
+ "grad_norm": NaN,
189
+ "learning_rate": 9.991776315789474e-06,
190
+ "loss": 0.0,
191
+ "step": 260
192
+ },
193
+ {
194
+ "epoch": 0.4440789473684211,
195
+ "grad_norm": NaN,
196
+ "learning_rate": 9.991776315789474e-06,
197
+ "loss": 0.0,
198
+ "step": 270
199
+ },
200
+ {
201
+ "epoch": 0.4605263157894737,
202
+ "grad_norm": NaN,
203
+ "learning_rate": 9.991776315789474e-06,
204
+ "loss": 0.0,
205
+ "step": 280
206
+ },
207
+ {
208
+ "epoch": 0.4769736842105263,
209
+ "grad_norm": NaN,
210
+ "learning_rate": 9.991776315789474e-06,
211
+ "loss": 0.0,
212
+ "step": 290
213
+ },
214
+ {
215
+ "epoch": 0.4934210526315789,
216
+ "grad_norm": NaN,
217
+ "learning_rate": 9.991776315789474e-06,
218
+ "loss": 0.0,
219
+ "step": 300
220
+ },
221
+ {
222
+ "epoch": 0.5098684210526315,
223
+ "grad_norm": NaN,
224
+ "learning_rate": 9.991776315789474e-06,
225
+ "loss": 0.0,
226
+ "step": 310
227
+ },
228
+ {
229
+ "epoch": 0.5263157894736842,
230
+ "grad_norm": NaN,
231
+ "learning_rate": 9.991776315789474e-06,
232
+ "loss": 0.0,
233
+ "step": 320
234
+ },
235
+ {
236
+ "epoch": 0.5427631578947368,
237
+ "grad_norm": NaN,
238
+ "learning_rate": 9.991776315789474e-06,
239
+ "loss": 0.0,
240
+ "step": 330
241
+ },
242
+ {
243
+ "epoch": 0.5592105263157895,
244
+ "grad_norm": NaN,
245
+ "learning_rate": 9.991776315789474e-06,
246
+ "loss": 0.0,
247
+ "step": 340
248
+ },
249
+ {
250
+ "epoch": 0.5756578947368421,
251
+ "grad_norm": NaN,
252
+ "learning_rate": 9.991776315789474e-06,
253
+ "loss": 0.0,
254
+ "step": 350
255
+ },
256
+ {
257
+ "epoch": 0.5921052631578947,
258
+ "grad_norm": NaN,
259
+ "learning_rate": 9.991776315789474e-06,
260
+ "loss": 0.0,
261
+ "step": 360
262
+ },
263
+ {
264
+ "epoch": 0.6085526315789473,
265
+ "grad_norm": NaN,
266
+ "learning_rate": 9.991776315789474e-06,
267
+ "loss": 0.0,
268
+ "step": 370
269
+ },
270
+ {
271
+ "epoch": 0.625,
272
+ "grad_norm": NaN,
273
+ "learning_rate": 9.991776315789474e-06,
274
+ "loss": 0.0,
275
+ "step": 380
276
+ },
277
+ {
278
+ "epoch": 0.6414473684210527,
279
+ "grad_norm": NaN,
280
+ "learning_rate": 9.991776315789474e-06,
281
+ "loss": 0.0,
282
+ "step": 390
283
+ },
284
+ {
285
+ "epoch": 0.6578947368421053,
286
+ "grad_norm": NaN,
287
+ "learning_rate": 9.991776315789474e-06,
288
+ "loss": 0.0,
289
+ "step": 400
290
+ },
291
+ {
292
+ "epoch": 0.6743421052631579,
293
+ "grad_norm": NaN,
294
+ "learning_rate": 9.991776315789474e-06,
295
+ "loss": 0.0,
296
+ "step": 410
297
+ },
298
+ {
299
+ "epoch": 0.6907894736842105,
300
+ "grad_norm": NaN,
301
+ "learning_rate": 9.991776315789474e-06,
302
+ "loss": 0.0,
303
+ "step": 420
304
+ },
305
+ {
306
+ "epoch": 0.7072368421052632,
307
+ "grad_norm": NaN,
308
+ "learning_rate": 9.991776315789474e-06,
309
+ "loss": 0.0,
310
+ "step": 430
311
+ },
312
+ {
313
+ "epoch": 0.7236842105263158,
314
+ "grad_norm": NaN,
315
+ "learning_rate": 9.991776315789474e-06,
316
+ "loss": 0.0,
317
+ "step": 440
318
+ },
319
+ {
320
+ "epoch": 0.7401315789473685,
321
+ "grad_norm": NaN,
322
+ "learning_rate": 9.991776315789474e-06,
323
+ "loss": 0.0,
324
+ "step": 450
325
+ },
326
+ {
327
+ "epoch": 0.756578947368421,
328
+ "grad_norm": NaN,
329
+ "learning_rate": 9.991776315789474e-06,
330
+ "loss": 0.0,
331
+ "step": 460
332
+ },
333
+ {
334
+ "epoch": 0.7730263157894737,
335
+ "grad_norm": NaN,
336
+ "learning_rate": 9.991776315789474e-06,
337
+ "loss": 0.0,
338
+ "step": 470
339
+ },
340
+ {
341
+ "epoch": 0.7894736842105263,
342
+ "grad_norm": NaN,
343
+ "learning_rate": 9.991776315789474e-06,
344
+ "loss": 0.0,
345
+ "step": 480
346
+ },
347
+ {
348
+ "epoch": 0.805921052631579,
349
+ "grad_norm": NaN,
350
+ "learning_rate": 9.991776315789474e-06,
351
+ "loss": 0.0,
352
+ "step": 490
353
+ },
354
+ {
355
+ "epoch": 0.8223684210526315,
356
+ "grad_norm": NaN,
357
+ "learning_rate": 9.991776315789474e-06,
358
+ "loss": 0.0,
359
+ "step": 500
360
+ },
361
+ {
362
+ "epoch": 0.8388157894736842,
363
+ "grad_norm": NaN,
364
+ "learning_rate": 9.991776315789474e-06,
365
+ "loss": 0.0,
366
+ "step": 510
367
+ },
368
+ {
369
+ "epoch": 0.8552631578947368,
370
+ "grad_norm": NaN,
371
+ "learning_rate": 9.991776315789474e-06,
372
+ "loss": 0.0,
373
+ "step": 520
374
+ },
375
+ {
376
+ "epoch": 0.8717105263157895,
377
+ "grad_norm": NaN,
378
+ "learning_rate": 9.991776315789474e-06,
379
+ "loss": 0.0,
380
+ "step": 530
381
+ },
382
+ {
383
+ "epoch": 0.8881578947368421,
384
+ "grad_norm": NaN,
385
+ "learning_rate": 9.991776315789474e-06,
386
+ "loss": 0.0,
387
+ "step": 540
388
+ },
389
+ {
390
+ "epoch": 0.9046052631578947,
391
+ "grad_norm": NaN,
392
+ "learning_rate": 9.991776315789474e-06,
393
+ "loss": 0.0,
394
+ "step": 550
395
+ },
396
+ {
397
+ "epoch": 0.9210526315789473,
398
+ "grad_norm": NaN,
399
+ "learning_rate": 9.991776315789474e-06,
400
+ "loss": 0.0,
401
+ "step": 560
402
+ },
403
+ {
404
+ "epoch": 0.9375,
405
+ "grad_norm": NaN,
406
+ "learning_rate": 9.991776315789474e-06,
407
+ "loss": 0.0,
408
+ "step": 570
409
+ },
410
+ {
411
+ "epoch": 0.9539473684210527,
412
+ "grad_norm": NaN,
413
+ "learning_rate": 9.991776315789474e-06,
414
+ "loss": 0.0,
415
+ "step": 580
416
+ },
417
+ {
418
+ "epoch": 0.9703947368421053,
419
+ "grad_norm": NaN,
420
+ "learning_rate": 9.991776315789474e-06,
421
+ "loss": 0.0,
422
+ "step": 590
423
+ },
424
+ {
425
+ "epoch": 0.9868421052631579,
426
+ "grad_norm": NaN,
427
+ "learning_rate": 9.991776315789474e-06,
428
+ "loss": 0.0,
429
+ "step": 600
430
+ },
431
+ {
432
+ "epoch": 1.0032894736842106,
433
+ "grad_norm": NaN,
434
+ "learning_rate": 9.991776315789474e-06,
435
+ "loss": 0.0,
436
+ "step": 610
437
+ },
438
+ {
439
+ "epoch": 1.019736842105263,
440
+ "grad_norm": NaN,
441
+ "learning_rate": 9.991776315789474e-06,
442
+ "loss": 0.0,
443
+ "step": 620
444
+ },
445
+ {
446
+ "epoch": 1.0361842105263157,
447
+ "grad_norm": NaN,
448
+ "learning_rate": 9.991776315789474e-06,
449
+ "loss": 0.0,
450
+ "step": 630
451
+ },
452
+ {
453
+ "epoch": 1.0526315789473684,
454
+ "grad_norm": NaN,
455
+ "learning_rate": 9.991776315789474e-06,
456
+ "loss": 0.0,
457
+ "step": 640
458
+ },
459
+ {
460
+ "epoch": 1.069078947368421,
461
+ "grad_norm": NaN,
462
+ "learning_rate": 9.991776315789474e-06,
463
+ "loss": 0.0,
464
+ "step": 650
465
+ },
466
+ {
467
+ "epoch": 1.0855263157894737,
468
+ "grad_norm": NaN,
469
+ "learning_rate": 9.991776315789474e-06,
470
+ "loss": 0.0,
471
+ "step": 660
472
+ },
473
+ {
474
+ "epoch": 1.1019736842105263,
475
+ "grad_norm": NaN,
476
+ "learning_rate": 9.991776315789474e-06,
477
+ "loss": 0.0,
478
+ "step": 670
479
+ },
480
+ {
481
+ "epoch": 1.118421052631579,
482
+ "grad_norm": NaN,
483
+ "learning_rate": 9.991776315789474e-06,
484
+ "loss": 0.0,
485
+ "step": 680
486
+ },
487
+ {
488
+ "epoch": 1.1348684210526316,
489
+ "grad_norm": NaN,
490
+ "learning_rate": 9.991776315789474e-06,
491
+ "loss": 0.0,
492
+ "step": 690
493
+ },
494
+ {
495
+ "epoch": 1.1513157894736843,
496
+ "grad_norm": NaN,
497
+ "learning_rate": 9.991776315789474e-06,
498
+ "loss": 0.0,
499
+ "step": 700
500
+ },
501
+ {
502
+ "epoch": 1.1677631578947367,
503
+ "grad_norm": NaN,
504
+ "learning_rate": 9.991776315789474e-06,
505
+ "loss": 0.0,
506
+ "step": 710
507
+ },
508
+ {
509
+ "epoch": 1.1842105263157894,
510
+ "grad_norm": NaN,
511
+ "learning_rate": 9.991776315789474e-06,
512
+ "loss": 0.0,
513
+ "step": 720
514
+ },
515
+ {
516
+ "epoch": 1.200657894736842,
517
+ "grad_norm": NaN,
518
+ "learning_rate": 9.991776315789474e-06,
519
+ "loss": 0.0,
520
+ "step": 730
521
+ },
522
+ {
523
+ "epoch": 1.2171052631578947,
524
+ "grad_norm": NaN,
525
+ "learning_rate": 9.991776315789474e-06,
526
+ "loss": 0.0,
527
+ "step": 740
528
+ },
529
+ {
530
+ "epoch": 1.2335526315789473,
531
+ "grad_norm": NaN,
532
+ "learning_rate": 9.991776315789474e-06,
533
+ "loss": 0.0,
534
+ "step": 750
535
+ },
536
+ {
537
+ "epoch": 1.25,
538
+ "grad_norm": NaN,
539
+ "learning_rate": 9.991776315789474e-06,
540
+ "loss": 0.0,
541
+ "step": 760
542
+ },
543
+ {
544
+ "epoch": 1.2664473684210527,
545
+ "grad_norm": NaN,
546
+ "learning_rate": 9.991776315789474e-06,
547
+ "loss": 0.0,
548
+ "step": 770
549
+ },
550
+ {
551
+ "epoch": 1.2828947368421053,
552
+ "grad_norm": NaN,
553
+ "learning_rate": 9.991776315789474e-06,
554
+ "loss": 0.0,
555
+ "step": 780
556
+ },
557
+ {
558
+ "epoch": 1.299342105263158,
559
+ "grad_norm": NaN,
560
+ "learning_rate": 9.991776315789474e-06,
561
+ "loss": 0.0,
562
+ "step": 790
563
+ },
564
+ {
565
+ "epoch": 1.3157894736842106,
566
+ "grad_norm": NaN,
567
+ "learning_rate": 9.991776315789474e-06,
568
+ "loss": 0.0,
569
+ "step": 800
570
+ },
571
+ {
572
+ "epoch": 1.3322368421052633,
573
+ "grad_norm": NaN,
574
+ "learning_rate": 9.991776315789474e-06,
575
+ "loss": 0.0,
576
+ "step": 810
577
+ },
578
+ {
579
+ "epoch": 1.3486842105263157,
580
+ "grad_norm": NaN,
581
+ "learning_rate": 9.991776315789474e-06,
582
+ "loss": 0.0,
583
+ "step": 820
584
+ },
585
+ {
586
+ "epoch": 1.3651315789473684,
587
+ "grad_norm": NaN,
588
+ "learning_rate": 9.991776315789474e-06,
589
+ "loss": 0.0,
590
+ "step": 830
591
+ },
592
+ {
593
+ "epoch": 1.381578947368421,
594
+ "grad_norm": NaN,
595
+ "learning_rate": 9.991776315789474e-06,
596
+ "loss": 0.0,
597
+ "step": 840
598
+ },
599
+ {
600
+ "epoch": 1.3980263157894737,
601
+ "grad_norm": NaN,
602
+ "learning_rate": 9.991776315789474e-06,
603
+ "loss": 0.0,
604
+ "step": 850
605
+ },
606
+ {
607
+ "epoch": 1.4144736842105263,
608
+ "grad_norm": NaN,
609
+ "learning_rate": 9.991776315789474e-06,
610
+ "loss": 0.0,
611
+ "step": 860
612
+ },
613
+ {
614
+ "epoch": 1.430921052631579,
615
+ "grad_norm": NaN,
616
+ "learning_rate": 9.991776315789474e-06,
617
+ "loss": 0.0,
618
+ "step": 870
619
+ },
620
+ {
621
+ "epoch": 1.4473684210526316,
622
+ "grad_norm": NaN,
623
+ "learning_rate": 9.991776315789474e-06,
624
+ "loss": 0.0,
625
+ "step": 880
626
+ },
627
+ {
628
+ "epoch": 1.4638157894736843,
629
+ "grad_norm": NaN,
630
+ "learning_rate": 9.991776315789474e-06,
631
+ "loss": 0.0,
632
+ "step": 890
633
+ },
634
+ {
635
+ "epoch": 1.4802631578947367,
636
+ "grad_norm": NaN,
637
+ "learning_rate": 9.991776315789474e-06,
638
+ "loss": 0.0,
639
+ "step": 900
640
+ },
641
+ {
642
+ "epoch": 1.4967105263157894,
643
+ "grad_norm": NaN,
644
+ "learning_rate": 9.991776315789474e-06,
645
+ "loss": 0.0,
646
+ "step": 910
647
+ },
648
+ {
649
+ "epoch": 1.513157894736842,
650
+ "grad_norm": NaN,
651
+ "learning_rate": 9.991776315789474e-06,
652
+ "loss": 0.0,
653
+ "step": 920
654
+ },
655
+ {
656
+ "epoch": 1.5296052631578947,
657
+ "grad_norm": NaN,
658
+ "learning_rate": 9.991776315789474e-06,
659
+ "loss": 0.0,
660
+ "step": 930
661
+ },
662
+ {
663
+ "epoch": 1.5460526315789473,
664
+ "grad_norm": NaN,
665
+ "learning_rate": 9.991776315789474e-06,
666
+ "loss": 0.0,
667
+ "step": 940
668
+ },
669
+ {
670
+ "epoch": 1.5625,
671
+ "grad_norm": NaN,
672
+ "learning_rate": 9.991776315789474e-06,
673
+ "loss": 0.0,
674
+ "step": 950
675
+ },
676
+ {
677
+ "epoch": 1.5789473684210527,
678
+ "grad_norm": NaN,
679
+ "learning_rate": 9.991776315789474e-06,
680
+ "loss": 0.0,
681
+ "step": 960
682
+ },
683
+ {
684
+ "epoch": 1.5953947368421053,
685
+ "grad_norm": NaN,
686
+ "learning_rate": 9.991776315789474e-06,
687
+ "loss": 0.0,
688
+ "step": 970
689
+ },
690
+ {
691
+ "epoch": 1.611842105263158,
692
+ "grad_norm": NaN,
693
+ "learning_rate": 9.991776315789474e-06,
694
+ "loss": 0.0,
695
+ "step": 980
696
+ },
697
+ {
698
+ "epoch": 1.6282894736842106,
699
+ "grad_norm": NaN,
700
+ "learning_rate": 9.991776315789474e-06,
701
+ "loss": 0.0,
702
+ "step": 990
703
+ },
704
+ {
705
+ "epoch": 1.6447368421052633,
706
+ "grad_norm": NaN,
707
+ "learning_rate": 9.991776315789474e-06,
708
+ "loss": 0.0,
709
+ "step": 1000
710
+ }
711
+ ],
712
+ "logging_steps": 10,
713
+ "max_steps": 6080,
714
+ "num_input_tokens_seen": 0,
715
+ "num_train_epochs": 10,
716
+ "save_steps": 1000,
717
+ "stateful_callbacks": {
718
+ "TrainerControl": {
719
+ "args": {
720
+ "should_epoch_stop": false,
721
+ "should_evaluate": false,
722
+ "should_log": false,
723
+ "should_save": true,
724
+ "should_training_stop": false
725
+ },
726
+ "attributes": {}
727
+ }
728
+ },
729
+ "total_flos": 0.0,
730
+ "train_batch_size": 16,
731
+ "trial_name": null,
732
+ "trial_params": null
733
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:22f491e3b3d534472aa9bd4d8770f4a67c73de86804b7385ee37f5ad2c607beb
3
+ size 5432