Chattso-GPT commited on
Commit
b99cca9
·
verified ·
1 Parent(s): f5f22f2

Upload folder using huggingface_hub

Browse files
README.md CHANGED
@@ -1,3 +1,59 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: AI-MO/NuminaMath-7B-TIR
3
+ library_name: transformers
4
+ model_name: outputs
5
+ tags:
6
+ - generated_from_trainer
7
+ - sft
8
+ - unsloth
9
+ - trl
10
+ licence: license
11
+ ---
12
+
13
+ # Model Card for outputs
14
+
15
+ This model is a fine-tuned version of [AI-MO/NuminaMath-7B-TIR](https://huggingface.co/AI-MO/NuminaMath-7B-TIR).
16
+ It has been trained using [TRL](https://github.com/huggingface/trl).
17
+
18
+ ## Quick start
19
+
20
+ ```python
21
+ from transformers import pipeline
22
+
23
+ question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
24
+ generator = pipeline("text-generation", model="Chattso-GPT/outputs", device="cuda")
25
+ output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
26
+ print(output["generated_text"])
27
+ ```
28
+
29
+ ## Training procedure
30
+
31
+ [<img src="https://raw.githubusercontent.com/wandb/assets/main/wandb-github-badge-28.svg" alt="Visualize in Weights & Biases" width="150" height="24"/>](https://wandb.ai/yasuhito-yanagisawa/my-llm-finetuning/runs/j98wwc29)
32
+
33
+
34
+ This model was trained with SFT.
35
+
36
+ ### Framework versions
37
+
38
+ - TRL: 0.21.0
39
+ - Transformers: 4.55.0
40
+ - Pytorch: 2.7.1
41
+ - Datasets: 3.6.0
42
+ - Tokenizers: 0.21.4
43
+
44
+ ## Citations
45
+
46
+
47
+
48
+ Cite TRL as:
49
+
50
+ ```bibtex
51
+ @misc{vonwerra2022trl,
52
+ title = {{TRL: Transformer Reinforcement Learning}},
53
+ author = {Leandro von Werra and Younes Belkada and Lewis Tunstall and Edward Beeching and Tristan Thrush and Nathan Lambert and Shengyi Huang and Kashif Rasul and Quentin Gallou{\'e}dec},
54
+ year = 2020,
55
+ journal = {GitHub repository},
56
+ publisher = {GitHub},
57
+ howpublished = {\url{https://github.com/huggingface/trl}}
58
+ }
59
+ ```
adapter_config.json ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "AI-MO/NuminaMath-7B-TIR",
5
+ "bias": "none",
6
+ "corda_config": null,
7
+ "eva_config": null,
8
+ "exclude_modules": null,
9
+ "fan_in_fan_out": false,
10
+ "inference_mode": true,
11
+ "init_lora_weights": true,
12
+ "layer_replication": null,
13
+ "layers_pattern": null,
14
+ "layers_to_transform": null,
15
+ "loftq_config": {},
16
+ "lora_alpha": 32,
17
+ "lora_bias": false,
18
+ "lora_dropout": 0.05,
19
+ "megatron_config": null,
20
+ "megatron_core": "megatron.core",
21
+ "modules_to_save": null,
22
+ "peft_type": "LORA",
23
+ "qalora_group_size": 16,
24
+ "r": 32,
25
+ "rank_pattern": {},
26
+ "revision": null,
27
+ "target_modules": [
28
+ "down_proj",
29
+ "gate_proj",
30
+ "q_proj",
31
+ "up_proj",
32
+ "o_proj",
33
+ "k_proj",
34
+ "v_proj"
35
+ ],
36
+ "target_parameters": null,
37
+ "task_type": "CAUSAL_LM",
38
+ "trainable_token_indices": null,
39
+ "use_dora": false,
40
+ "use_qalora": false,
41
+ "use_rslora": false
42
+ }
adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:676f773377dabafa7edbe288d07e9efa58ee09b94f77c71f5e7fa5cb24e9d6ae
3
+ size 299883760
chat_template.jinja ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {% for message in messages %}{% if (message['role'] == 'system')%}{{ '' }}{% elif (message['role'] == 'user')%}{{ '### Problem: ' + message['content'] + '
2
+ ' }}{% elif (message['role'] == 'assistant')%}{{ '### Solution: ' + message['content'] + '
3
+ ' }}{% endif %}{% if loop.last and message['role'] == 'user' and add_generation_prompt %}{{ '### Solution: ' }}{% endif %}{% endfor %}
checkpoint-100/README.md ADDED
@@ -0,0 +1,210 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: AI-MO/NuminaMath-7B-TIR
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:AI-MO/NuminaMath-7B-TIR
7
+ - lora
8
+ - sft
9
+ - transformers
10
+ - trl
11
+ - unsloth
12
+ ---
13
+
14
+ # Model Card for Model ID
15
+
16
+ <!-- Provide a quick summary of what the model is/does. -->
17
+
18
+
19
+
20
+ ## Model Details
21
+
22
+ ### Model Description
23
+
24
+ <!-- Provide a longer summary of what this model is. -->
25
+
26
+
27
+
28
+ - **Developed by:** [More Information Needed]
29
+ - **Funded by [optional]:** [More Information Needed]
30
+ - **Shared by [optional]:** [More Information Needed]
31
+ - **Model type:** [More Information Needed]
32
+ - **Language(s) (NLP):** [More Information Needed]
33
+ - **License:** [More Information Needed]
34
+ - **Finetuned from model [optional]:** [More Information Needed]
35
+
36
+ ### Model Sources [optional]
37
+
38
+ <!-- Provide the basic links for the model. -->
39
+
40
+ - **Repository:** [More Information Needed]
41
+ - **Paper [optional]:** [More Information Needed]
42
+ - **Demo [optional]:** [More Information Needed]
43
+
44
+ ## Uses
45
+
46
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
47
+
48
+ ### Direct Use
49
+
50
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
51
+
52
+ [More Information Needed]
53
+
54
+ ### Downstream Use [optional]
55
+
56
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
57
+
58
+ [More Information Needed]
59
+
60
+ ### Out-of-Scope Use
61
+
62
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
63
+
64
+ [More Information Needed]
65
+
66
+ ## Bias, Risks, and Limitations
67
+
68
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
69
+
70
+ [More Information Needed]
71
+
72
+ ### Recommendations
73
+
74
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
75
+
76
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
77
+
78
+ ## How to Get Started with the Model
79
+
80
+ Use the code below to get started with the model.
81
+
82
+ [More Information Needed]
83
+
84
+ ## Training Details
85
+
86
+ ### Training Data
87
+
88
+ <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
89
+
90
+ [More Information Needed]
91
+
92
+ ### Training Procedure
93
+
94
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
95
+
96
+ #### Preprocessing [optional]
97
+
98
+ [More Information Needed]
99
+
100
+
101
+ #### Training Hyperparameters
102
+
103
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
104
+
105
+ #### Speeds, Sizes, Times [optional]
106
+
107
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
108
+
109
+ [More Information Needed]
110
+
111
+ ## Evaluation
112
+
113
+ <!-- This section describes the evaluation protocols and provides the results. -->
114
+
115
+ ### Testing Data, Factors & Metrics
116
+
117
+ #### Testing Data
118
+
119
+ <!-- This should link to a Dataset Card if possible. -->
120
+
121
+ [More Information Needed]
122
+
123
+ #### Factors
124
+
125
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
126
+
127
+ [More Information Needed]
128
+
129
+ #### Metrics
130
+
131
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
132
+
133
+ [More Information Needed]
134
+
135
+ ### Results
136
+
137
+ [More Information Needed]
138
+
139
+ #### Summary
140
+
141
+
142
+
143
+ ## Model Examination [optional]
144
+
145
+ <!-- Relevant interpretability work for the model goes here -->
146
+
147
+ [More Information Needed]
148
+
149
+ ## Environmental Impact
150
+
151
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
152
+
153
+ Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
154
+
155
+ - **Hardware Type:** [More Information Needed]
156
+ - **Hours used:** [More Information Needed]
157
+ - **Cloud Provider:** [More Information Needed]
158
+ - **Compute Region:** [More Information Needed]
159
+ - **Carbon Emitted:** [More Information Needed]
160
+
161
+ ## Technical Specifications [optional]
162
+
163
+ ### Model Architecture and Objective
164
+
165
+ [More Information Needed]
166
+
167
+ ### Compute Infrastructure
168
+
169
+ [More Information Needed]
170
+
171
+ #### Hardware
172
+
173
+ [More Information Needed]
174
+
175
+ #### Software
176
+
177
+ [More Information Needed]
178
+
179
+ ## Citation [optional]
180
+
181
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
182
+
183
+ **BibTeX:**
184
+
185
+ [More Information Needed]
186
+
187
+ **APA:**
188
+
189
+ [More Information Needed]
190
+
191
+ ## Glossary [optional]
192
+
193
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
194
+
195
+ [More Information Needed]
196
+
197
+ ## More Information [optional]
198
+
199
+ [More Information Needed]
200
+
201
+ ## Model Card Authors [optional]
202
+
203
+ [More Information Needed]
204
+
205
+ ## Model Card Contact
206
+
207
+ [More Information Needed]
208
+ ### Framework versions
209
+
210
+ - PEFT 0.17.0
checkpoint-100/adapter_config.json ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "AI-MO/NuminaMath-7B-TIR",
5
+ "bias": "none",
6
+ "corda_config": null,
7
+ "eva_config": null,
8
+ "exclude_modules": null,
9
+ "fan_in_fan_out": false,
10
+ "inference_mode": true,
11
+ "init_lora_weights": true,
12
+ "layer_replication": null,
13
+ "layers_pattern": null,
14
+ "layers_to_transform": null,
15
+ "loftq_config": {},
16
+ "lora_alpha": 32,
17
+ "lora_bias": false,
18
+ "lora_dropout": 0.05,
19
+ "megatron_config": null,
20
+ "megatron_core": "megatron.core",
21
+ "modules_to_save": null,
22
+ "peft_type": "LORA",
23
+ "qalora_group_size": 16,
24
+ "r": 32,
25
+ "rank_pattern": {},
26
+ "revision": null,
27
+ "target_modules": [
28
+ "down_proj",
29
+ "gate_proj",
30
+ "q_proj",
31
+ "up_proj",
32
+ "o_proj",
33
+ "k_proj",
34
+ "v_proj"
35
+ ],
36
+ "target_parameters": null,
37
+ "task_type": "CAUSAL_LM",
38
+ "trainable_token_indices": null,
39
+ "use_dora": false,
40
+ "use_qalora": false,
41
+ "use_rslora": false
42
+ }
checkpoint-100/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:676f773377dabafa7edbe288d07e9efa58ee09b94f77c71f5e7fa5cb24e9d6ae
3
+ size 299883760
checkpoint-100/chat_template.jinja ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {% for message in messages %}{% if (message['role'] == 'system')%}{{ '' }}{% elif (message['role'] == 'user')%}{{ '### Problem: ' + message['content'] + '
2
+ ' }}{% elif (message['role'] == 'assistant')%}{{ '### Solution: ' + message['content'] + '
3
+ ' }}{% endif %}{% if loop.last and message['role'] == 'user' and add_generation_prompt %}{{ '### Solution: ' }}{% endif %}{% endfor %}
checkpoint-100/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4694c0fe9cad1d8fb6e27115e4c0d01b9e1618c14ffbe62424004259b9f29e66
3
+ size 600009423
checkpoint-100/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5b439e90b564a7442d5bed705075ca5e89bbd9ac789efd1c03962b19e85aa86a
3
+ size 14645
checkpoint-100/scaler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c4393a84a3109995aa1202073b039b12062e3189ed89aa0b94ef0510ba843009
3
+ size 1383
checkpoint-100/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d88a70f83ca592a7838eb4a3d66823c7f6c02bdad677beb6fe30c7ece2333715
3
+ size 1465
checkpoint-100/special_tokens_map.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<|begin▁of▁sentence|>",
4
+ "lstrip": false,
5
+ "normalized": true,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "<|end▁of▁sentence|>",
11
+ "lstrip": false,
12
+ "normalized": true,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": "<|PAD_TOKEN|>"
17
+ }
checkpoint-100/tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-100/tokenizer_config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": false,
4
+ "add_prefix_space": null,
5
+ "added_tokens_decoder": {
6
+ "100000": {
7
+ "content": "<|begin▁of▁sentence|>",
8
+ "lstrip": false,
9
+ "normalized": true,
10
+ "rstrip": false,
11
+ "single_word": false,
12
+ "special": true
13
+ },
14
+ "100001": {
15
+ "content": "<|end▁of▁sentence|>",
16
+ "lstrip": false,
17
+ "normalized": true,
18
+ "rstrip": false,
19
+ "single_word": false,
20
+ "special": true
21
+ },
22
+ "100002": {
23
+ "content": "<|PAD_TOKEN|>",
24
+ "lstrip": false,
25
+ "normalized": false,
26
+ "rstrip": false,
27
+ "single_word": false,
28
+ "special": true
29
+ }
30
+ },
31
+ "bos_token": "<|begin▁of▁sentence|>",
32
+ "clean_up_tokenization_spaces": false,
33
+ "eos_token": "<|end▁of▁sentence|>",
34
+ "extra_special_tokens": {},
35
+ "legacy": true,
36
+ "model_max_length": 4096,
37
+ "pad_token": "<|PAD_TOKEN|>",
38
+ "padding_side": "right",
39
+ "sp_model_kwargs": {},
40
+ "tokenizer_class": "LlamaTokenizerFast",
41
+ "unk_token": null,
42
+ "use_default_system_prompt": false
43
+ }
checkpoint-100/trainer_state.json ADDED
@@ -0,0 +1,734 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 0.028070175438596492,
6
+ "eval_steps": 500,
7
+ "global_step": 100,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "epoch": 0.0002807017543859649,
14
+ "grad_norm": 0.7608377933502197,
15
+ "learning_rate": 0.0,
16
+ "loss": 1.7214,
17
+ "step": 1
18
+ },
19
+ {
20
+ "epoch": 0.0005614035087719298,
21
+ "grad_norm": 0.8957514762878418,
22
+ "learning_rate": 4e-05,
23
+ "loss": 1.9895,
24
+ "step": 2
25
+ },
26
+ {
27
+ "epoch": 0.0008421052631578948,
28
+ "grad_norm": 1.089669942855835,
29
+ "learning_rate": 8e-05,
30
+ "loss": 2.072,
31
+ "step": 3
32
+ },
33
+ {
34
+ "epoch": 0.0011228070175438596,
35
+ "grad_norm": 1.0289334058761597,
36
+ "learning_rate": 0.00012,
37
+ "loss": 1.8603,
38
+ "step": 4
39
+ },
40
+ {
41
+ "epoch": 0.0014035087719298245,
42
+ "grad_norm": 0.767257809638977,
43
+ "learning_rate": 0.00016,
44
+ "loss": 1.4284,
45
+ "step": 5
46
+ },
47
+ {
48
+ "epoch": 0.0016842105263157896,
49
+ "grad_norm": 0.5978246331214905,
50
+ "learning_rate": 0.0002,
51
+ "loss": 1.2488,
52
+ "step": 6
53
+ },
54
+ {
55
+ "epoch": 0.0019649122807017545,
56
+ "grad_norm": 0.4895220100879669,
57
+ "learning_rate": 0.00019789473684210526,
58
+ "loss": 0.8206,
59
+ "step": 7
60
+ },
61
+ {
62
+ "epoch": 0.002245614035087719,
63
+ "grad_norm": 0.4384584426879883,
64
+ "learning_rate": 0.00019578947368421054,
65
+ "loss": 0.7915,
66
+ "step": 8
67
+ },
68
+ {
69
+ "epoch": 0.0025263157894736842,
70
+ "grad_norm": 0.44429001212120056,
71
+ "learning_rate": 0.0001936842105263158,
72
+ "loss": 0.9091,
73
+ "step": 9
74
+ },
75
+ {
76
+ "epoch": 0.002807017543859649,
77
+ "grad_norm": 0.3982425332069397,
78
+ "learning_rate": 0.00019157894736842104,
79
+ "loss": 1.0326,
80
+ "step": 10
81
+ },
82
+ {
83
+ "epoch": 0.003087719298245614,
84
+ "grad_norm": 0.386045902967453,
85
+ "learning_rate": 0.00018947368421052632,
86
+ "loss": 0.8021,
87
+ "step": 11
88
+ },
89
+ {
90
+ "epoch": 0.003368421052631579,
91
+ "grad_norm": 0.22769981622695923,
92
+ "learning_rate": 0.0001873684210526316,
93
+ "loss": 0.7192,
94
+ "step": 12
95
+ },
96
+ {
97
+ "epoch": 0.003649122807017544,
98
+ "grad_norm": 0.2643820643424988,
99
+ "learning_rate": 0.00018526315789473685,
100
+ "loss": 0.8537,
101
+ "step": 13
102
+ },
103
+ {
104
+ "epoch": 0.003929824561403509,
105
+ "grad_norm": 0.29013004899024963,
106
+ "learning_rate": 0.0001831578947368421,
107
+ "loss": 0.7323,
108
+ "step": 14
109
+ },
110
+ {
111
+ "epoch": 0.004210526315789474,
112
+ "grad_norm": 0.28618916869163513,
113
+ "learning_rate": 0.00018105263157894739,
114
+ "loss": 0.8345,
115
+ "step": 15
116
+ },
117
+ {
118
+ "epoch": 0.004491228070175438,
119
+ "grad_norm": 0.2927887439727783,
120
+ "learning_rate": 0.00017894736842105264,
121
+ "loss": 0.6711,
122
+ "step": 16
123
+ },
124
+ {
125
+ "epoch": 0.004771929824561404,
126
+ "grad_norm": 0.3290823996067047,
127
+ "learning_rate": 0.0001768421052631579,
128
+ "loss": 0.9138,
129
+ "step": 17
130
+ },
131
+ {
132
+ "epoch": 0.0050526315789473685,
133
+ "grad_norm": 0.4104742109775543,
134
+ "learning_rate": 0.00017473684210526317,
135
+ "loss": 0.7287,
136
+ "step": 18
137
+ },
138
+ {
139
+ "epoch": 0.005333333333333333,
140
+ "grad_norm": 0.3225669860839844,
141
+ "learning_rate": 0.00017263157894736842,
142
+ "loss": 0.7856,
143
+ "step": 19
144
+ },
145
+ {
146
+ "epoch": 0.005614035087719298,
147
+ "grad_norm": 0.2503960430622101,
148
+ "learning_rate": 0.0001705263157894737,
149
+ "loss": 0.7148,
150
+ "step": 20
151
+ },
152
+ {
153
+ "epoch": 0.005894736842105263,
154
+ "grad_norm": 0.3453228771686554,
155
+ "learning_rate": 0.00016842105263157895,
156
+ "loss": 0.7775,
157
+ "step": 21
158
+ },
159
+ {
160
+ "epoch": 0.006175438596491228,
161
+ "grad_norm": 0.26591363549232483,
162
+ "learning_rate": 0.00016631578947368423,
163
+ "loss": 0.6831,
164
+ "step": 22
165
+ },
166
+ {
167
+ "epoch": 0.006456140350877193,
168
+ "grad_norm": 0.41043636202812195,
169
+ "learning_rate": 0.00016421052631578948,
170
+ "loss": 0.57,
171
+ "step": 23
172
+ },
173
+ {
174
+ "epoch": 0.006736842105263158,
175
+ "grad_norm": 0.21183069050312042,
176
+ "learning_rate": 0.00016210526315789473,
177
+ "loss": 0.7367,
178
+ "step": 24
179
+ },
180
+ {
181
+ "epoch": 0.007017543859649123,
182
+ "grad_norm": 0.22407041490077972,
183
+ "learning_rate": 0.00016,
184
+ "loss": 0.5179,
185
+ "step": 25
186
+ },
187
+ {
188
+ "epoch": 0.007298245614035088,
189
+ "grad_norm": 0.2489241659641266,
190
+ "learning_rate": 0.00015789473684210527,
191
+ "loss": 0.5823,
192
+ "step": 26
193
+ },
194
+ {
195
+ "epoch": 0.007578947368421052,
196
+ "grad_norm": 0.2461841106414795,
197
+ "learning_rate": 0.00015578947368421052,
198
+ "loss": 0.6216,
199
+ "step": 27
200
+ },
201
+ {
202
+ "epoch": 0.007859649122807018,
203
+ "grad_norm": 0.22744964063167572,
204
+ "learning_rate": 0.0001536842105263158,
205
+ "loss": 0.4537,
206
+ "step": 28
207
+ },
208
+ {
209
+ "epoch": 0.008140350877192983,
210
+ "grad_norm": 0.27331238985061646,
211
+ "learning_rate": 0.00015157894736842108,
212
+ "loss": 0.5216,
213
+ "step": 29
214
+ },
215
+ {
216
+ "epoch": 0.008421052631578947,
217
+ "grad_norm": 0.21308669447898865,
218
+ "learning_rate": 0.00014947368421052633,
219
+ "loss": 0.6252,
220
+ "step": 30
221
+ },
222
+ {
223
+ "epoch": 0.008701754385964912,
224
+ "grad_norm": 0.26308220624923706,
225
+ "learning_rate": 0.00014736842105263158,
226
+ "loss": 0.7632,
227
+ "step": 31
228
+ },
229
+ {
230
+ "epoch": 0.008982456140350877,
231
+ "grad_norm": 0.23341232538223267,
232
+ "learning_rate": 0.00014526315789473686,
233
+ "loss": 0.7243,
234
+ "step": 32
235
+ },
236
+ {
237
+ "epoch": 0.009263157894736843,
238
+ "grad_norm": 0.328726589679718,
239
+ "learning_rate": 0.0001431578947368421,
240
+ "loss": 0.7539,
241
+ "step": 33
242
+ },
243
+ {
244
+ "epoch": 0.009543859649122808,
245
+ "grad_norm": 0.2569667398929596,
246
+ "learning_rate": 0.00014105263157894736,
247
+ "loss": 0.7572,
248
+ "step": 34
249
+ },
250
+ {
251
+ "epoch": 0.009824561403508772,
252
+ "grad_norm": 0.23884397745132446,
253
+ "learning_rate": 0.00013894736842105264,
254
+ "loss": 0.6237,
255
+ "step": 35
256
+ },
257
+ {
258
+ "epoch": 0.010105263157894737,
259
+ "grad_norm": 0.19555659592151642,
260
+ "learning_rate": 0.0001368421052631579,
261
+ "loss": 0.6168,
262
+ "step": 36
263
+ },
264
+ {
265
+ "epoch": 0.010385964912280702,
266
+ "grad_norm": 0.18646731972694397,
267
+ "learning_rate": 0.00013473684210526317,
268
+ "loss": 0.5538,
269
+ "step": 37
270
+ },
271
+ {
272
+ "epoch": 0.010666666666666666,
273
+ "grad_norm": 0.22244583070278168,
274
+ "learning_rate": 0.00013263157894736842,
275
+ "loss": 0.695,
276
+ "step": 38
277
+ },
278
+ {
279
+ "epoch": 0.010947368421052631,
280
+ "grad_norm": 0.1918996125459671,
281
+ "learning_rate": 0.0001305263157894737,
282
+ "loss": 0.4743,
283
+ "step": 39
284
+ },
285
+ {
286
+ "epoch": 0.011228070175438596,
287
+ "grad_norm": 0.2257566899061203,
288
+ "learning_rate": 0.00012842105263157895,
289
+ "loss": 0.6041,
290
+ "step": 40
291
+ },
292
+ {
293
+ "epoch": 0.011508771929824562,
294
+ "grad_norm": 0.23808154463768005,
295
+ "learning_rate": 0.0001263157894736842,
296
+ "loss": 0.6772,
297
+ "step": 41
298
+ },
299
+ {
300
+ "epoch": 0.011789473684210527,
301
+ "grad_norm": 0.16062161326408386,
302
+ "learning_rate": 0.00012421052631578949,
303
+ "loss": 0.4744,
304
+ "step": 42
305
+ },
306
+ {
307
+ "epoch": 0.012070175438596491,
308
+ "grad_norm": 0.27486950159072876,
309
+ "learning_rate": 0.00012210526315789474,
310
+ "loss": 0.6789,
311
+ "step": 43
312
+ },
313
+ {
314
+ "epoch": 0.012350877192982456,
315
+ "grad_norm": 0.22151979804039001,
316
+ "learning_rate": 0.00012,
317
+ "loss": 0.5758,
318
+ "step": 44
319
+ },
320
+ {
321
+ "epoch": 0.01263157894736842,
322
+ "grad_norm": 0.25173574686050415,
323
+ "learning_rate": 0.00011789473684210525,
324
+ "loss": 0.5524,
325
+ "step": 45
326
+ },
327
+ {
328
+ "epoch": 0.012912280701754385,
329
+ "grad_norm": 0.18759620189666748,
330
+ "learning_rate": 0.00011578947368421053,
331
+ "loss": 0.5261,
332
+ "step": 46
333
+ },
334
+ {
335
+ "epoch": 0.01319298245614035,
336
+ "grad_norm": 0.1941239982843399,
337
+ "learning_rate": 0.0001136842105263158,
338
+ "loss": 0.7774,
339
+ "step": 47
340
+ },
341
+ {
342
+ "epoch": 0.013473684210526317,
343
+ "grad_norm": 0.21030020713806152,
344
+ "learning_rate": 0.00011157894736842105,
345
+ "loss": 0.61,
346
+ "step": 48
347
+ },
348
+ {
349
+ "epoch": 0.013754385964912281,
350
+ "grad_norm": 0.20546339452266693,
351
+ "learning_rate": 0.00010947368421052633,
352
+ "loss": 0.605,
353
+ "step": 49
354
+ },
355
+ {
356
+ "epoch": 0.014035087719298246,
357
+ "grad_norm": 0.1955367475748062,
358
+ "learning_rate": 0.00010736842105263158,
359
+ "loss": 0.4951,
360
+ "step": 50
361
+ },
362
+ {
363
+ "epoch": 0.01431578947368421,
364
+ "grad_norm": 0.2012670934200287,
365
+ "learning_rate": 0.00010526315789473685,
366
+ "loss": 0.5174,
367
+ "step": 51
368
+ },
369
+ {
370
+ "epoch": 0.014596491228070175,
371
+ "grad_norm": 0.21794946491718292,
372
+ "learning_rate": 0.00010315789473684211,
373
+ "loss": 0.6387,
374
+ "step": 52
375
+ },
376
+ {
377
+ "epoch": 0.01487719298245614,
378
+ "grad_norm": 0.1851382851600647,
379
+ "learning_rate": 0.00010105263157894738,
380
+ "loss": 0.4906,
381
+ "step": 53
382
+ },
383
+ {
384
+ "epoch": 0.015157894736842105,
385
+ "grad_norm": 0.19877484440803528,
386
+ "learning_rate": 9.894736842105263e-05,
387
+ "loss": 0.5981,
388
+ "step": 54
389
+ },
390
+ {
391
+ "epoch": 0.015438596491228071,
392
+ "grad_norm": 0.28672927618026733,
393
+ "learning_rate": 9.68421052631579e-05,
394
+ "loss": 0.7185,
395
+ "step": 55
396
+ },
397
+ {
398
+ "epoch": 0.015719298245614036,
399
+ "grad_norm": 0.24410443007946014,
400
+ "learning_rate": 9.473684210526316e-05,
401
+ "loss": 0.4882,
402
+ "step": 56
403
+ },
404
+ {
405
+ "epoch": 0.016,
406
+ "grad_norm": 0.2676307260990143,
407
+ "learning_rate": 9.263157894736843e-05,
408
+ "loss": 0.628,
409
+ "step": 57
410
+ },
411
+ {
412
+ "epoch": 0.016280701754385965,
413
+ "grad_norm": 0.2523461878299713,
414
+ "learning_rate": 9.052631578947369e-05,
415
+ "loss": 0.478,
416
+ "step": 58
417
+ },
418
+ {
419
+ "epoch": 0.01656140350877193,
420
+ "grad_norm": 0.2071600705385208,
421
+ "learning_rate": 8.842105263157894e-05,
422
+ "loss": 0.5096,
423
+ "step": 59
424
+ },
425
+ {
426
+ "epoch": 0.016842105263157894,
427
+ "grad_norm": 0.20321086049079895,
428
+ "learning_rate": 8.631578947368421e-05,
429
+ "loss": 0.5864,
430
+ "step": 60
431
+ },
432
+ {
433
+ "epoch": 0.01712280701754386,
434
+ "grad_norm": 0.20558391511440277,
435
+ "learning_rate": 8.421052631578948e-05,
436
+ "loss": 0.6181,
437
+ "step": 61
438
+ },
439
+ {
440
+ "epoch": 0.017403508771929824,
441
+ "grad_norm": 0.22859832644462585,
442
+ "learning_rate": 8.210526315789474e-05,
443
+ "loss": 0.8814,
444
+ "step": 62
445
+ },
446
+ {
447
+ "epoch": 0.01768421052631579,
448
+ "grad_norm": 0.20681747794151306,
449
+ "learning_rate": 8e-05,
450
+ "loss": 0.7479,
451
+ "step": 63
452
+ },
453
+ {
454
+ "epoch": 0.017964912280701753,
455
+ "grad_norm": 0.26385411620140076,
456
+ "learning_rate": 7.789473684210526e-05,
457
+ "loss": 0.5815,
458
+ "step": 64
459
+ },
460
+ {
461
+ "epoch": 0.018245614035087718,
462
+ "grad_norm": 0.21943461894989014,
463
+ "learning_rate": 7.578947368421054e-05,
464
+ "loss": 0.657,
465
+ "step": 65
466
+ },
467
+ {
468
+ "epoch": 0.018526315789473686,
469
+ "grad_norm": 0.24849221110343933,
470
+ "learning_rate": 7.368421052631579e-05,
471
+ "loss": 0.5341,
472
+ "step": 66
473
+ },
474
+ {
475
+ "epoch": 0.01880701754385965,
476
+ "grad_norm": 0.2595747411251068,
477
+ "learning_rate": 7.157894736842105e-05,
478
+ "loss": 0.5888,
479
+ "step": 67
480
+ },
481
+ {
482
+ "epoch": 0.019087719298245615,
483
+ "grad_norm": 0.23266763985157013,
484
+ "learning_rate": 6.947368421052632e-05,
485
+ "loss": 0.4899,
486
+ "step": 68
487
+ },
488
+ {
489
+ "epoch": 0.01936842105263158,
490
+ "grad_norm": 0.2767358720302582,
491
+ "learning_rate": 6.736842105263159e-05,
492
+ "loss": 0.6119,
493
+ "step": 69
494
+ },
495
+ {
496
+ "epoch": 0.019649122807017545,
497
+ "grad_norm": 0.23197737336158752,
498
+ "learning_rate": 6.526315789473685e-05,
499
+ "loss": 0.6986,
500
+ "step": 70
501
+ },
502
+ {
503
+ "epoch": 0.01992982456140351,
504
+ "grad_norm": 0.218978613615036,
505
+ "learning_rate": 6.31578947368421e-05,
506
+ "loss": 0.582,
507
+ "step": 71
508
+ },
509
+ {
510
+ "epoch": 0.020210526315789474,
511
+ "grad_norm": 0.2475346177816391,
512
+ "learning_rate": 6.105263157894737e-05,
513
+ "loss": 0.615,
514
+ "step": 72
515
+ },
516
+ {
517
+ "epoch": 0.02049122807017544,
518
+ "grad_norm": 0.21986079216003418,
519
+ "learning_rate": 5.894736842105263e-05,
520
+ "loss": 0.6171,
521
+ "step": 73
522
+ },
523
+ {
524
+ "epoch": 0.020771929824561403,
525
+ "grad_norm": 0.2430456131696701,
526
+ "learning_rate": 5.68421052631579e-05,
527
+ "loss": 0.6572,
528
+ "step": 74
529
+ },
530
+ {
531
+ "epoch": 0.021052631578947368,
532
+ "grad_norm": 0.20442380011081696,
533
+ "learning_rate": 5.4736842105263165e-05,
534
+ "loss": 0.5898,
535
+ "step": 75
536
+ },
537
+ {
538
+ "epoch": 0.021333333333333333,
539
+ "grad_norm": 0.2875303328037262,
540
+ "learning_rate": 5.2631578947368424e-05,
541
+ "loss": 0.7135,
542
+ "step": 76
543
+ },
544
+ {
545
+ "epoch": 0.021614035087719297,
546
+ "grad_norm": 0.26638996601104736,
547
+ "learning_rate": 5.052631578947369e-05,
548
+ "loss": 0.564,
549
+ "step": 77
550
+ },
551
+ {
552
+ "epoch": 0.021894736842105262,
553
+ "grad_norm": 0.23086141049861908,
554
+ "learning_rate": 4.842105263157895e-05,
555
+ "loss": 0.5978,
556
+ "step": 78
557
+ },
558
+ {
559
+ "epoch": 0.022175438596491227,
560
+ "grad_norm": 0.24883733689785004,
561
+ "learning_rate": 4.6315789473684214e-05,
562
+ "loss": 0.7299,
563
+ "step": 79
564
+ },
565
+ {
566
+ "epoch": 0.02245614035087719,
567
+ "grad_norm": 0.1697564423084259,
568
+ "learning_rate": 4.421052631578947e-05,
569
+ "loss": 0.4933,
570
+ "step": 80
571
+ },
572
+ {
573
+ "epoch": 0.02273684210526316,
574
+ "grad_norm": 0.20351547002792358,
575
+ "learning_rate": 4.210526315789474e-05,
576
+ "loss": 0.5148,
577
+ "step": 81
578
+ },
579
+ {
580
+ "epoch": 0.023017543859649124,
581
+ "grad_norm": 0.1920584887266159,
582
+ "learning_rate": 4e-05,
583
+ "loss": 0.4831,
584
+ "step": 82
585
+ },
586
+ {
587
+ "epoch": 0.02329824561403509,
588
+ "grad_norm": 0.1843676120042801,
589
+ "learning_rate": 3.789473684210527e-05,
590
+ "loss": 0.5108,
591
+ "step": 83
592
+ },
593
+ {
594
+ "epoch": 0.023578947368421053,
595
+ "grad_norm": 0.2634964883327484,
596
+ "learning_rate": 3.578947368421053e-05,
597
+ "loss": 0.6499,
598
+ "step": 84
599
+ },
600
+ {
601
+ "epoch": 0.023859649122807018,
602
+ "grad_norm": 0.19457034766674042,
603
+ "learning_rate": 3.368421052631579e-05,
604
+ "loss": 0.4723,
605
+ "step": 85
606
+ },
607
+ {
608
+ "epoch": 0.024140350877192983,
609
+ "grad_norm": 0.2747279405593872,
610
+ "learning_rate": 3.157894736842105e-05,
611
+ "loss": 0.5834,
612
+ "step": 86
613
+ },
614
+ {
615
+ "epoch": 0.024421052631578948,
616
+ "grad_norm": 0.24927914142608643,
617
+ "learning_rate": 2.9473684210526314e-05,
618
+ "loss": 0.7072,
619
+ "step": 87
620
+ },
621
+ {
622
+ "epoch": 0.024701754385964912,
623
+ "grad_norm": 0.1812397688627243,
624
+ "learning_rate": 2.7368421052631583e-05,
625
+ "loss": 0.4519,
626
+ "step": 88
627
+ },
628
+ {
629
+ "epoch": 0.024982456140350877,
630
+ "grad_norm": 0.1891927719116211,
631
+ "learning_rate": 2.5263157894736845e-05,
632
+ "loss": 0.4875,
633
+ "step": 89
634
+ },
635
+ {
636
+ "epoch": 0.02526315789473684,
637
+ "grad_norm": 0.1999116688966751,
638
+ "learning_rate": 2.3157894736842107e-05,
639
+ "loss": 0.6227,
640
+ "step": 90
641
+ },
642
+ {
643
+ "epoch": 0.025543859649122806,
644
+ "grad_norm": 0.1899036467075348,
645
+ "learning_rate": 2.105263157894737e-05,
646
+ "loss": 0.6303,
647
+ "step": 91
648
+ },
649
+ {
650
+ "epoch": 0.02582456140350877,
651
+ "grad_norm": 0.20942147076129913,
652
+ "learning_rate": 1.8947368421052634e-05,
653
+ "loss": 0.6452,
654
+ "step": 92
655
+ },
656
+ {
657
+ "epoch": 0.026105263157894736,
658
+ "grad_norm": 0.19382309913635254,
659
+ "learning_rate": 1.6842105263157896e-05,
660
+ "loss": 0.5471,
661
+ "step": 93
662
+ },
663
+ {
664
+ "epoch": 0.0263859649122807,
665
+ "grad_norm": 0.24067223072052002,
666
+ "learning_rate": 1.4736842105263157e-05,
667
+ "loss": 0.6691,
668
+ "step": 94
669
+ },
670
+ {
671
+ "epoch": 0.02666666666666667,
672
+ "grad_norm": 0.15286678075790405,
673
+ "learning_rate": 1.2631578947368422e-05,
674
+ "loss": 0.4751,
675
+ "step": 95
676
+ },
677
+ {
678
+ "epoch": 0.026947368421052633,
679
+ "grad_norm": 0.3723171055316925,
680
+ "learning_rate": 1.0526315789473684e-05,
681
+ "loss": 0.554,
682
+ "step": 96
683
+ },
684
+ {
685
+ "epoch": 0.027228070175438598,
686
+ "grad_norm": 0.22701109945774078,
687
+ "learning_rate": 8.421052631578948e-06,
688
+ "loss": 0.6832,
689
+ "step": 97
690
+ },
691
+ {
692
+ "epoch": 0.027508771929824562,
693
+ "grad_norm": 0.2766507565975189,
694
+ "learning_rate": 6.315789473684211e-06,
695
+ "loss": 0.6373,
696
+ "step": 98
697
+ },
698
+ {
699
+ "epoch": 0.027789473684210527,
700
+ "grad_norm": 0.24072766304016113,
701
+ "learning_rate": 4.210526315789474e-06,
702
+ "loss": 0.4333,
703
+ "step": 99
704
+ },
705
+ {
706
+ "epoch": 0.028070175438596492,
707
+ "grad_norm": 0.2390160858631134,
708
+ "learning_rate": 2.105263157894737e-06,
709
+ "loss": 0.6499,
710
+ "step": 100
711
+ }
712
+ ],
713
+ "logging_steps": 1,
714
+ "max_steps": 100,
715
+ "num_input_tokens_seen": 0,
716
+ "num_train_epochs": 1,
717
+ "save_steps": 500,
718
+ "stateful_callbacks": {
719
+ "TrainerControl": {
720
+ "args": {
721
+ "should_epoch_stop": false,
722
+ "should_evaluate": false,
723
+ "should_log": false,
724
+ "should_save": true,
725
+ "should_training_stop": true
726
+ },
727
+ "attributes": {}
728
+ }
729
+ },
730
+ "total_flos": 7364055070973952.0,
731
+ "train_batch_size": 1,
732
+ "trial_name": null,
733
+ "trial_params": null
734
+ }
checkpoint-100/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e523a4ec0f93a8547b1b2df96f5c7bf966ab09f19986f4e935f3b88f26640a60
3
+ size 6097
special_tokens_map.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<|begin▁of▁sentence|>",
4
+ "lstrip": false,
5
+ "normalized": true,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "<|end▁of▁sentence|>",
11
+ "lstrip": false,
12
+ "normalized": true,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": "<|PAD_TOKEN|>"
17
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": false,
4
+ "add_prefix_space": null,
5
+ "added_tokens_decoder": {
6
+ "100000": {
7
+ "content": "<|begin▁of▁sentence|>",
8
+ "lstrip": false,
9
+ "normalized": true,
10
+ "rstrip": false,
11
+ "single_word": false,
12
+ "special": true
13
+ },
14
+ "100001": {
15
+ "content": "<|end▁of▁sentence|>",
16
+ "lstrip": false,
17
+ "normalized": true,
18
+ "rstrip": false,
19
+ "single_word": false,
20
+ "special": true
21
+ },
22
+ "100002": {
23
+ "content": "<|PAD_TOKEN|>",
24
+ "lstrip": false,
25
+ "normalized": false,
26
+ "rstrip": false,
27
+ "single_word": false,
28
+ "special": true
29
+ }
30
+ },
31
+ "bos_token": "<|begin▁of▁sentence|>",
32
+ "clean_up_tokenization_spaces": false,
33
+ "eos_token": "<|end▁of▁sentence|>",
34
+ "extra_special_tokens": {},
35
+ "legacy": true,
36
+ "model_max_length": 4096,
37
+ "pad_token": "<|PAD_TOKEN|>",
38
+ "padding_side": "right",
39
+ "sp_model_kwargs": {},
40
+ "tokenizer_class": "LlamaTokenizerFast",
41
+ "unk_token": null,
42
+ "use_default_system_prompt": false
43
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e523a4ec0f93a8547b1b2df96f5c7bf966ab09f19986f4e935f3b88f26640a60
3
+ size 6097