paulaschez commited on
Commit
73c0a4d
·
verified ·
1 Parent(s): 93e70f9

Upload folder using huggingface_hub

Browse files
README.md ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: unsloth/mistral-7b-bnb-4bit
3
+ library_name: peft
4
+ model_name: mistral-chef-v2
5
+ tags:
6
+ - base_model:adapter:unsloth/mistral-7b-bnb-4bit
7
+ - lora
8
+ - sft
9
+ - transformers
10
+ - trl
11
+ - unsloth
12
+ licence: license
13
+ pipeline_tag: text-generation
14
+ ---
15
+
16
+ # Model Card for mistral-chef-v2
17
+
18
+ This model is a fine-tuned version of [unsloth/mistral-7b-bnb-4bit](https://huggingface.co/unsloth/mistral-7b-bnb-4bit).
19
+ It has been trained using [TRL](https://github.com/huggingface/trl).
20
+
21
+ ## Quick start
22
+
23
+ ```python
24
+ from transformers import pipeline
25
+
26
+ 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?"
27
+ generator = pipeline("text-generation", model="None", device="cuda")
28
+ output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
29
+ print(output["generated_text"])
30
+ ```
31
+
32
+ ## Training procedure
33
+
34
+
35
+
36
+
37
+ This model was trained with SFT.
38
+
39
+ ### Framework versions
40
+
41
+ - PEFT 0.19.1
42
+ - TRL: 0.23.0
43
+ - Transformers: 4.57.2
44
+ - Pytorch: 2.10.0+cu128
45
+ - Datasets: 4.3.0
46
+ - Tokenizers: 0.22.2
47
+
48
+ ## Citations
49
+
50
+
51
+
52
+ Cite TRL as:
53
+
54
+ ```bibtex
55
+ @misc{vonwerra2022trl,
56
+ title = {{TRL: Transformer Reinforcement Learning}},
57
+ 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},
58
+ year = 2020,
59
+ journal = {GitHub repository},
60
+ publisher = {GitHub},
61
+ howpublished = {\url{https://github.com/huggingface/trl}}
62
+ }
63
+ ```
adapter_config.json ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": {
6
+ "base_model_class": "MistralForCausalLM",
7
+ "parent_library": "transformers.models.mistral.modeling_mistral",
8
+ "unsloth_fixed": true
9
+ },
10
+ "base_model_name_or_path": "unsloth/mistral-7b-bnb-4bit",
11
+ "bias": "none",
12
+ "corda_config": null,
13
+ "ensure_weight_tying": false,
14
+ "eva_config": null,
15
+ "exclude_modules": null,
16
+ "fan_in_fan_out": false,
17
+ "inference_mode": true,
18
+ "init_lora_weights": true,
19
+ "layer_replication": null,
20
+ "layers_pattern": null,
21
+ "layers_to_transform": null,
22
+ "loftq_config": {},
23
+ "lora_alpha": 16,
24
+ "lora_bias": false,
25
+ "lora_dropout": 0,
26
+ "lora_ga_config": null,
27
+ "megatron_config": null,
28
+ "megatron_core": "megatron.core",
29
+ "modules_to_save": null,
30
+ "peft_type": "LORA",
31
+ "peft_version": "0.19.1",
32
+ "qalora_group_size": 16,
33
+ "r": 16,
34
+ "rank_pattern": {},
35
+ "revision": null,
36
+ "target_modules": [
37
+ "q_proj",
38
+ "k_proj",
39
+ "gate_proj",
40
+ "v_proj",
41
+ "o_proj",
42
+ "up_proj",
43
+ "down_proj"
44
+ ],
45
+ "target_parameters": null,
46
+ "task_type": "CAUSAL_LM",
47
+ "trainable_token_indices": null,
48
+ "use_bdlora": null,
49
+ "use_dora": false,
50
+ "use_qalora": false,
51
+ "use_rslora": false
52
+ }
adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:466359270900c8fe15fa9500f9c0d038d49e5ccab59bb8c02ddcae10912d0f24
3
+ size 167832240
checkpoint-375/README.md ADDED
@@ -0,0 +1,210 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: unsloth/mistral-7b-bnb-4bit
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:unsloth/mistral-7b-bnb-4bit
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.19.1
checkpoint-375/adapter_config.json ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": {
6
+ "base_model_class": "MistralForCausalLM",
7
+ "parent_library": "transformers.models.mistral.modeling_mistral",
8
+ "unsloth_fixed": true
9
+ },
10
+ "base_model_name_or_path": "unsloth/mistral-7b-bnb-4bit",
11
+ "bias": "none",
12
+ "corda_config": null,
13
+ "ensure_weight_tying": false,
14
+ "eva_config": null,
15
+ "exclude_modules": null,
16
+ "fan_in_fan_out": false,
17
+ "inference_mode": true,
18
+ "init_lora_weights": true,
19
+ "layer_replication": null,
20
+ "layers_pattern": null,
21
+ "layers_to_transform": null,
22
+ "loftq_config": {},
23
+ "lora_alpha": 16,
24
+ "lora_bias": false,
25
+ "lora_dropout": 0,
26
+ "lora_ga_config": null,
27
+ "megatron_config": null,
28
+ "megatron_core": "megatron.core",
29
+ "modules_to_save": null,
30
+ "peft_type": "LORA",
31
+ "peft_version": "0.19.1",
32
+ "qalora_group_size": 16,
33
+ "r": 16,
34
+ "rank_pattern": {},
35
+ "revision": null,
36
+ "target_modules": [
37
+ "q_proj",
38
+ "k_proj",
39
+ "gate_proj",
40
+ "v_proj",
41
+ "o_proj",
42
+ "up_proj",
43
+ "down_proj"
44
+ ],
45
+ "target_parameters": null,
46
+ "task_type": "CAUSAL_LM",
47
+ "trainable_token_indices": null,
48
+ "use_bdlora": null,
49
+ "use_dora": false,
50
+ "use_qalora": false,
51
+ "use_rslora": false
52
+ }
checkpoint-375/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:466359270900c8fe15fa9500f9c0d038d49e5ccab59bb8c02ddcae10912d0f24
3
+ size 167832240
checkpoint-375/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:048308bb02262274c989a4f1367d7caead53d280cf9abcd647e10f5f0309580c
3
+ size 85728677
checkpoint-375/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3d6d8fafcd1ee268414be5acf0366296af5b03d60871978712eac1979cb42d65
3
+ size 14645
checkpoint-375/scaler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ac58ef7454dc327cdd1497d560e3c1cadc5881183c106e69fda6701af10248e8
3
+ size 1383
checkpoint-375/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:10f65deb4559fff2991071b84be83ca06cd954d4b603e0a7bd2a48a5a6ba559f
3
+ size 1465
checkpoint-375/special_tokens_map.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<s>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "</s>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": {
17
+ "content": "<unk>",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ },
23
+ "unk_token": {
24
+ "content": "<unk>",
25
+ "lstrip": false,
26
+ "normalized": false,
27
+ "rstrip": false,
28
+ "single_word": false
29
+ }
30
+ }
checkpoint-375/tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-375/tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dadfd56d766715c61d2ef780a525ab43b8e6da4de6865bda3d95fdef5e134055
3
+ size 493443
checkpoint-375/tokenizer_config.json ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": false,
4
+ "add_prefix_space": null,
5
+ "added_tokens_decoder": {
6
+ "0": {
7
+ "content": "<unk>",
8
+ "lstrip": false,
9
+ "normalized": false,
10
+ "rstrip": false,
11
+ "single_word": false,
12
+ "special": true
13
+ },
14
+ "1": {
15
+ "content": "<s>",
16
+ "lstrip": false,
17
+ "normalized": false,
18
+ "rstrip": false,
19
+ "single_word": false,
20
+ "special": true
21
+ },
22
+ "2": {
23
+ "content": "</s>",
24
+ "lstrip": false,
25
+ "normalized": false,
26
+ "rstrip": false,
27
+ "single_word": false,
28
+ "special": true
29
+ }
30
+ },
31
+ "additional_special_tokens": [],
32
+ "bos_token": "<s>",
33
+ "clean_up_tokenization_spaces": false,
34
+ "eos_token": "</s>",
35
+ "extra_special_tokens": {},
36
+ "legacy": false,
37
+ "model_max_length": 32768,
38
+ "pad_token": "<unk>",
39
+ "padding_side": "right",
40
+ "sp_model_kwargs": {},
41
+ "spaces_between_special_tokens": false,
42
+ "tokenizer_class": "LlamaTokenizer",
43
+ "unk_token": "<unk>",
44
+ "use_default_system_prompt": false
45
+ }
checkpoint-375/trainer_state.json ADDED
@@ -0,0 +1,317 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 1.0,
6
+ "eval_steps": 100,
7
+ "global_step": 375,
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.02666666666666667,
14
+ "grad_norm": 1.1666679382324219,
15
+ "learning_rate": 0.000135,
16
+ "loss": 1.005,
17
+ "step": 10
18
+ },
19
+ {
20
+ "epoch": 0.05333333333333334,
21
+ "grad_norm": 0.39651840925216675,
22
+ "learning_rate": 0.0001463013698630137,
23
+ "loss": 0.5791,
24
+ "step": 20
25
+ },
26
+ {
27
+ "epoch": 0.08,
28
+ "grad_norm": 0.4225136339664459,
29
+ "learning_rate": 0.0001421917808219178,
30
+ "loss": 0.5666,
31
+ "step": 30
32
+ },
33
+ {
34
+ "epoch": 0.10666666666666667,
35
+ "grad_norm": 0.3511693775653839,
36
+ "learning_rate": 0.0001380821917808219,
37
+ "loss": 0.5446,
38
+ "step": 40
39
+ },
40
+ {
41
+ "epoch": 0.13333333333333333,
42
+ "grad_norm": 0.41202008724212646,
43
+ "learning_rate": 0.00013397260273972602,
44
+ "loss": 0.4963,
45
+ "step": 50
46
+ },
47
+ {
48
+ "epoch": 0.16,
49
+ "grad_norm": 0.5186659693717957,
50
+ "learning_rate": 0.00012986301369863012,
51
+ "loss": 0.4918,
52
+ "step": 60
53
+ },
54
+ {
55
+ "epoch": 0.18666666666666668,
56
+ "grad_norm": 0.4339252710342407,
57
+ "learning_rate": 0.00012575342465753425,
58
+ "loss": 0.4942,
59
+ "step": 70
60
+ },
61
+ {
62
+ "epoch": 0.21333333333333335,
63
+ "grad_norm": 0.35540297627449036,
64
+ "learning_rate": 0.00012164383561643835,
65
+ "loss": 0.459,
66
+ "step": 80
67
+ },
68
+ {
69
+ "epoch": 0.24,
70
+ "grad_norm": 0.31886568665504456,
71
+ "learning_rate": 0.00011753424657534245,
72
+ "loss": 0.478,
73
+ "step": 90
74
+ },
75
+ {
76
+ "epoch": 0.26666666666666666,
77
+ "grad_norm": 0.31149041652679443,
78
+ "learning_rate": 0.00011342465753424656,
79
+ "loss": 0.4621,
80
+ "step": 100
81
+ },
82
+ {
83
+ "epoch": 0.26666666666666666,
84
+ "eval_loss": 0.4663235545158386,
85
+ "eval_runtime": 195.2394,
86
+ "eval_samples_per_second": 1.537,
87
+ "eval_steps_per_second": 0.768,
88
+ "step": 100
89
+ },
90
+ {
91
+ "epoch": 0.29333333333333333,
92
+ "grad_norm": 0.2757165729999542,
93
+ "learning_rate": 0.00010931506849315068,
94
+ "loss": 0.4807,
95
+ "step": 110
96
+ },
97
+ {
98
+ "epoch": 0.32,
99
+ "grad_norm": 0.2738674581050873,
100
+ "learning_rate": 0.00010520547945205479,
101
+ "loss": 0.4693,
102
+ "step": 120
103
+ },
104
+ {
105
+ "epoch": 0.3466666666666667,
106
+ "grad_norm": 0.2937587797641754,
107
+ "learning_rate": 0.00010109589041095889,
108
+ "loss": 0.4524,
109
+ "step": 130
110
+ },
111
+ {
112
+ "epoch": 0.37333333333333335,
113
+ "grad_norm": 0.2990877628326416,
114
+ "learning_rate": 9.698630136986301e-05,
115
+ "loss": 0.4566,
116
+ "step": 140
117
+ },
118
+ {
119
+ "epoch": 0.4,
120
+ "grad_norm": 0.31150081753730774,
121
+ "learning_rate": 9.287671232876712e-05,
122
+ "loss": 0.4588,
123
+ "step": 150
124
+ },
125
+ {
126
+ "epoch": 0.4266666666666667,
127
+ "grad_norm": 0.3070783317089081,
128
+ "learning_rate": 8.876712328767122e-05,
129
+ "loss": 0.4868,
130
+ "step": 160
131
+ },
132
+ {
133
+ "epoch": 0.4533333333333333,
134
+ "grad_norm": 0.31298378109931946,
135
+ "learning_rate": 8.465753424657534e-05,
136
+ "loss": 0.4802,
137
+ "step": 170
138
+ },
139
+ {
140
+ "epoch": 0.48,
141
+ "grad_norm": 0.28346869349479675,
142
+ "learning_rate": 8.054794520547945e-05,
143
+ "loss": 0.4581,
144
+ "step": 180
145
+ },
146
+ {
147
+ "epoch": 0.5066666666666667,
148
+ "grad_norm": 0.27815142273902893,
149
+ "learning_rate": 7.643835616438355e-05,
150
+ "loss": 0.4427,
151
+ "step": 190
152
+ },
153
+ {
154
+ "epoch": 0.5333333333333333,
155
+ "grad_norm": 0.2744145691394806,
156
+ "learning_rate": 7.232876712328767e-05,
157
+ "loss": 0.4795,
158
+ "step": 200
159
+ },
160
+ {
161
+ "epoch": 0.5333333333333333,
162
+ "eval_loss": 0.4599311947822571,
163
+ "eval_runtime": 195.2951,
164
+ "eval_samples_per_second": 1.536,
165
+ "eval_steps_per_second": 0.768,
166
+ "step": 200
167
+ },
168
+ {
169
+ "epoch": 0.56,
170
+ "grad_norm": 0.3007442355155945,
171
+ "learning_rate": 6.821917808219178e-05,
172
+ "loss": 0.4872,
173
+ "step": 210
174
+ },
175
+ {
176
+ "epoch": 0.5866666666666667,
177
+ "grad_norm": 0.2825697362422943,
178
+ "learning_rate": 6.41095890410959e-05,
179
+ "loss": 0.4594,
180
+ "step": 220
181
+ },
182
+ {
183
+ "epoch": 0.6133333333333333,
184
+ "grad_norm": 0.2875243127346039,
185
+ "learning_rate": 5.9999999999999995e-05,
186
+ "loss": 0.4589,
187
+ "step": 230
188
+ },
189
+ {
190
+ "epoch": 0.64,
191
+ "grad_norm": 0.28670668601989746,
192
+ "learning_rate": 5.589041095890411e-05,
193
+ "loss": 0.47,
194
+ "step": 240
195
+ },
196
+ {
197
+ "epoch": 0.6666666666666666,
198
+ "grad_norm": 0.31645962595939636,
199
+ "learning_rate": 5.1780821917808216e-05,
200
+ "loss": 0.4321,
201
+ "step": 250
202
+ },
203
+ {
204
+ "epoch": 0.6933333333333334,
205
+ "grad_norm": 0.2929031252861023,
206
+ "learning_rate": 4.767123287671233e-05,
207
+ "loss": 0.4538,
208
+ "step": 260
209
+ },
210
+ {
211
+ "epoch": 0.72,
212
+ "grad_norm": 0.29874441027641296,
213
+ "learning_rate": 4.356164383561643e-05,
214
+ "loss": 0.4597,
215
+ "step": 270
216
+ },
217
+ {
218
+ "epoch": 0.7466666666666667,
219
+ "grad_norm": 0.24016378819942474,
220
+ "learning_rate": 3.945205479452054e-05,
221
+ "loss": 0.4651,
222
+ "step": 280
223
+ },
224
+ {
225
+ "epoch": 0.7733333333333333,
226
+ "grad_norm": 0.26898664236068726,
227
+ "learning_rate": 3.534246575342465e-05,
228
+ "loss": 0.4731,
229
+ "step": 290
230
+ },
231
+ {
232
+ "epoch": 0.8,
233
+ "grad_norm": 0.2705814838409424,
234
+ "learning_rate": 3.123287671232877e-05,
235
+ "loss": 0.4436,
236
+ "step": 300
237
+ },
238
+ {
239
+ "epoch": 0.8,
240
+ "eval_loss": 0.4546850621700287,
241
+ "eval_runtime": 195.2654,
242
+ "eval_samples_per_second": 1.536,
243
+ "eval_steps_per_second": 0.768,
244
+ "step": 300
245
+ },
246
+ {
247
+ "epoch": 0.8266666666666667,
248
+ "grad_norm": 0.23966531455516815,
249
+ "learning_rate": 2.7123287671232875e-05,
250
+ "loss": 0.456,
251
+ "step": 310
252
+ },
253
+ {
254
+ "epoch": 0.8533333333333334,
255
+ "grad_norm": 0.2486310750246048,
256
+ "learning_rate": 2.3013698630136985e-05,
257
+ "loss": 0.47,
258
+ "step": 320
259
+ },
260
+ {
261
+ "epoch": 0.88,
262
+ "grad_norm": 0.26778164505958557,
263
+ "learning_rate": 1.8904109589041096e-05,
264
+ "loss": 0.4552,
265
+ "step": 330
266
+ },
267
+ {
268
+ "epoch": 0.9066666666666666,
269
+ "grad_norm": 0.23956233263015747,
270
+ "learning_rate": 1.4794520547945204e-05,
271
+ "loss": 0.4775,
272
+ "step": 340
273
+ },
274
+ {
275
+ "epoch": 0.9333333333333333,
276
+ "grad_norm": 0.2919732928276062,
277
+ "learning_rate": 1.0684931506849315e-05,
278
+ "loss": 0.4856,
279
+ "step": 350
280
+ },
281
+ {
282
+ "epoch": 0.96,
283
+ "grad_norm": 0.26673752069473267,
284
+ "learning_rate": 6.5753424657534245e-06,
285
+ "loss": 0.4835,
286
+ "step": 360
287
+ },
288
+ {
289
+ "epoch": 0.9866666666666667,
290
+ "grad_norm": 0.22421975433826447,
291
+ "learning_rate": 2.4657534246575337e-06,
292
+ "loss": 0.4633,
293
+ "step": 370
294
+ }
295
+ ],
296
+ "logging_steps": 10,
297
+ "max_steps": 375,
298
+ "num_input_tokens_seen": 0,
299
+ "num_train_epochs": 1,
300
+ "save_steps": 500,
301
+ "stateful_callbacks": {
302
+ "TrainerControl": {
303
+ "args": {
304
+ "should_epoch_stop": false,
305
+ "should_evaluate": false,
306
+ "should_log": false,
307
+ "should_save": true,
308
+ "should_training_stop": true
309
+ },
310
+ "attributes": {}
311
+ }
312
+ },
313
+ "total_flos": 7.661656762230374e+16,
314
+ "train_batch_size": 2,
315
+ "trial_name": null,
316
+ "trial_params": null
317
+ }
checkpoint-375/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d78d4b0198c689d37179f1e61eea61fc77e0b4f0de529e992071442a8d83fb2f
3
+ size 6161
special_tokens_map.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<s>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "</s>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": {
17
+ "content": "<unk>",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ },
23
+ "unk_token": {
24
+ "content": "<unk>",
25
+ "lstrip": false,
26
+ "normalized": false,
27
+ "rstrip": false,
28
+ "single_word": false
29
+ }
30
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dadfd56d766715c61d2ef780a525ab43b8e6da4de6865bda3d95fdef5e134055
3
+ size 493443
tokenizer_config.json ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": false,
4
+ "add_prefix_space": null,
5
+ "added_tokens_decoder": {
6
+ "0": {
7
+ "content": "<unk>",
8
+ "lstrip": false,
9
+ "normalized": false,
10
+ "rstrip": false,
11
+ "single_word": false,
12
+ "special": true
13
+ },
14
+ "1": {
15
+ "content": "<s>",
16
+ "lstrip": false,
17
+ "normalized": false,
18
+ "rstrip": false,
19
+ "single_word": false,
20
+ "special": true
21
+ },
22
+ "2": {
23
+ "content": "</s>",
24
+ "lstrip": false,
25
+ "normalized": false,
26
+ "rstrip": false,
27
+ "single_word": false,
28
+ "special": true
29
+ }
30
+ },
31
+ "additional_special_tokens": [],
32
+ "bos_token": "<s>",
33
+ "clean_up_tokenization_spaces": false,
34
+ "eos_token": "</s>",
35
+ "extra_special_tokens": {},
36
+ "legacy": false,
37
+ "model_max_length": 32768,
38
+ "pad_token": "<unk>",
39
+ "padding_side": "left",
40
+ "sp_model_kwargs": {},
41
+ "spaces_between_special_tokens": false,
42
+ "tokenizer_class": "LlamaTokenizer",
43
+ "unk_token": "<unk>",
44
+ "use_default_system_prompt": false
45
+ }