itstalmeez commited on
Commit
a88cff4
·
verified ·
1 Parent(s): a89f61e

Upload 14 files

Browse files
README.md CHANGED
@@ -1,3 +1,63 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model: mistralai/Mistral-7B-Instruct-v0.2
4
+ tags:
5
+ - lora
6
+ - qlora
7
+ - script-writing
8
+ - ads
9
+ - youtube-shorts
10
+ - reels
11
+ - marketing
12
+ - content-creation
13
+ language:
14
+ - en
15
+ pipeline_tag: text-generation
16
+ ---
17
+
18
+ # SireIQ-Scripts 🧠✍️
19
+
20
+ **SireIQ-Scripts** is an instruction-tuned AI model for generating **viral content scripts**, including:
21
+ - Short-form video scripts (Reels, TikTok, Shorts)
22
+ - Marketing & ad copy
23
+ - Image/video storytelling scripts
24
+ - Hook-based social media content
25
+
26
+ This model is **fine-tuned using LoRA** on top of **Mistral-7B-Instruct**.
27
+
28
+ ---
29
+
30
+ ## 🔧 Model Details
31
+
32
+ - **Base Model:** mistralai/Mistral-7B-Instruct-v0.2
33
+ - **Fine-tuning:** LoRA / QLoRA
34
+ - **Training Type:** Instruction-following
35
+ - **Framework:** Hugging Face Transformers
36
+ - **Environment:** Single GPU (Colab / Ubuntu)
37
+
38
+ ---
39
+
40
+ ## 📥 How to Use
41
+
42
+ ```python
43
+ from transformers import AutoTokenizer, AutoModelForCausalLM
44
+ from peft import PeftModel
45
+
46
+ base_model = "mistralai/Mistral-7B-Instruct-v0.2"
47
+ lora_model = "your-username/SireIQ-Scripts"
48
+
49
+ tokenizer = AutoTokenizer.from_pretrained(base_model)
50
+ model = AutoModelForCausalLM.from_pretrained(
51
+ base_model,
52
+ device_map="auto",
53
+ load_in_4bit=True
54
+ )
55
+
56
+ model = PeftModel.from_pretrained(model, lora_model)
57
+
58
+ prompt = """Write a viral Instagram reel script about AI replacing jobs."""
59
+
60
+ inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
61
+ outputs = model.generate(**inputs, max_new_tokens=200)
62
+
63
+ print(tokenizer.decode(outputs[0], skip_special_tokens=True))
adapter_config.json ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": null,
6
+ "base_model_name_or_path": "mistralai/Mistral-7B-v0.1",
7
+ "bias": "none",
8
+ "corda_config": null,
9
+ "ensure_weight_tying": false,
10
+ "eva_config": null,
11
+ "exclude_modules": null,
12
+ "fan_in_fan_out": false,
13
+ "inference_mode": true,
14
+ "init_lora_weights": true,
15
+ "layer_replication": null,
16
+ "layers_pattern": null,
17
+ "layers_to_transform": null,
18
+ "loftq_config": {},
19
+ "lora_alpha": 16,
20
+ "lora_bias": false,
21
+ "lora_dropout": 0.05,
22
+ "megatron_config": null,
23
+ "megatron_core": "megatron.core",
24
+ "modules_to_save": null,
25
+ "peft_type": "LORA",
26
+ "peft_version": "0.18.1",
27
+ "qalora_group_size": 16,
28
+ "r": 8,
29
+ "rank_pattern": {},
30
+ "revision": null,
31
+ "target_modules": [
32
+ "v_proj",
33
+ "q_proj"
34
+ ],
35
+ "target_parameters": null,
36
+ "task_type": "CAUSAL_LM",
37
+ "trainable_token_indices": null,
38
+ "use_dora": false,
39
+ "use_qalora": false,
40
+ "use_rslora": false
41
+ }
adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9bf49fc9e72ee00eae9f6d99d20d50fc747e476a17d65c4e79516e5b53db95d5
3
+ size 13648432
checkpoint-680/README.md ADDED
@@ -0,0 +1,207 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: mistralai/Mistral-7B-v0.1
3
+ library_name: peft
4
+ pipeline_tag: text-generation
5
+ tags:
6
+ - base_model:adapter:mistralai/Mistral-7B-v0.1
7
+ - lora
8
+ - transformers
9
+ ---
10
+
11
+ # Model Card for Model ID
12
+
13
+ <!-- Provide a quick summary of what the model is/does. -->
14
+
15
+
16
+
17
+ ## Model Details
18
+
19
+ ### Model Description
20
+
21
+ <!-- Provide a longer summary of what this model is. -->
22
+
23
+
24
+
25
+ - **Developed by:** [More Information Needed]
26
+ - **Funded by [optional]:** [More Information Needed]
27
+ - **Shared by [optional]:** [More Information Needed]
28
+ - **Model type:** [More Information Needed]
29
+ - **Language(s) (NLP):** [More Information Needed]
30
+ - **License:** [More Information Needed]
31
+ - **Finetuned from model [optional]:** [More Information Needed]
32
+
33
+ ### Model Sources [optional]
34
+
35
+ <!-- Provide the basic links for the model. -->
36
+
37
+ - **Repository:** [More Information Needed]
38
+ - **Paper [optional]:** [More Information Needed]
39
+ - **Demo [optional]:** [More Information Needed]
40
+
41
+ ## Uses
42
+
43
+ <!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
44
+
45
+ ### Direct Use
46
+
47
+ <!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
48
+
49
+ [More Information Needed]
50
+
51
+ ### Downstream Use [optional]
52
+
53
+ <!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
54
+
55
+ [More Information Needed]
56
+
57
+ ### Out-of-Scope Use
58
+
59
+ <!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
60
+
61
+ [More Information Needed]
62
+
63
+ ## Bias, Risks, and Limitations
64
+
65
+ <!-- This section is meant to convey both technical and sociotechnical limitations. -->
66
+
67
+ [More Information Needed]
68
+
69
+ ### Recommendations
70
+
71
+ <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
72
+
73
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
74
+
75
+ ## How to Get Started with the Model
76
+
77
+ Use the code below to get started with the model.
78
+
79
+ [More Information Needed]
80
+
81
+ ## Training Details
82
+
83
+ ### Training Data
84
+
85
+ <!-- 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. -->
86
+
87
+ [More Information Needed]
88
+
89
+ ### Training Procedure
90
+
91
+ <!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
92
+
93
+ #### Preprocessing [optional]
94
+
95
+ [More Information Needed]
96
+
97
+
98
+ #### Training Hyperparameters
99
+
100
+ - **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
101
+
102
+ #### Speeds, Sizes, Times [optional]
103
+
104
+ <!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
105
+
106
+ [More Information Needed]
107
+
108
+ ## Evaluation
109
+
110
+ <!-- This section describes the evaluation protocols and provides the results. -->
111
+
112
+ ### Testing Data, Factors & Metrics
113
+
114
+ #### Testing Data
115
+
116
+ <!-- This should link to a Dataset Card if possible. -->
117
+
118
+ [More Information Needed]
119
+
120
+ #### Factors
121
+
122
+ <!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
123
+
124
+ [More Information Needed]
125
+
126
+ #### Metrics
127
+
128
+ <!-- These are the evaluation metrics being used, ideally with a description of why. -->
129
+
130
+ [More Information Needed]
131
+
132
+ ### Results
133
+
134
+ [More Information Needed]
135
+
136
+ #### Summary
137
+
138
+
139
+
140
+ ## Model Examination [optional]
141
+
142
+ <!-- Relevant interpretability work for the model goes here -->
143
+
144
+ [More Information Needed]
145
+
146
+ ## Environmental Impact
147
+
148
+ <!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
149
+
150
+ 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).
151
+
152
+ - **Hardware Type:** [More Information Needed]
153
+ - **Hours used:** [More Information Needed]
154
+ - **Cloud Provider:** [More Information Needed]
155
+ - **Compute Region:** [More Information Needed]
156
+ - **Carbon Emitted:** [More Information Needed]
157
+
158
+ ## Technical Specifications [optional]
159
+
160
+ ### Model Architecture and Objective
161
+
162
+ [More Information Needed]
163
+
164
+ ### Compute Infrastructure
165
+
166
+ [More Information Needed]
167
+
168
+ #### Hardware
169
+
170
+ [More Information Needed]
171
+
172
+ #### Software
173
+
174
+ [More Information Needed]
175
+
176
+ ## Citation [optional]
177
+
178
+ <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
179
+
180
+ **BibTeX:**
181
+
182
+ [More Information Needed]
183
+
184
+ **APA:**
185
+
186
+ [More Information Needed]
187
+
188
+ ## Glossary [optional]
189
+
190
+ <!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
191
+
192
+ [More Information Needed]
193
+
194
+ ## More Information [optional]
195
+
196
+ [More Information Needed]
197
+
198
+ ## Model Card Authors [optional]
199
+
200
+ [More Information Needed]
201
+
202
+ ## Model Card Contact
203
+
204
+ [More Information Needed]
205
+ ### Framework versions
206
+
207
+ - PEFT 0.18.1
checkpoint-680/adapter_config.json ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alora_invocation_tokens": null,
3
+ "alpha_pattern": {},
4
+ "arrow_config": null,
5
+ "auto_mapping": null,
6
+ "base_model_name_or_path": "mistralai/Mistral-7B-v0.1",
7
+ "bias": "none",
8
+ "corda_config": null,
9
+ "ensure_weight_tying": false,
10
+ "eva_config": null,
11
+ "exclude_modules": null,
12
+ "fan_in_fan_out": false,
13
+ "inference_mode": true,
14
+ "init_lora_weights": true,
15
+ "layer_replication": null,
16
+ "layers_pattern": null,
17
+ "layers_to_transform": null,
18
+ "loftq_config": {},
19
+ "lora_alpha": 16,
20
+ "lora_bias": false,
21
+ "lora_dropout": 0.05,
22
+ "megatron_config": null,
23
+ "megatron_core": "megatron.core",
24
+ "modules_to_save": null,
25
+ "peft_type": "LORA",
26
+ "peft_version": "0.18.1",
27
+ "qalora_group_size": 16,
28
+ "r": 8,
29
+ "rank_pattern": {},
30
+ "revision": null,
31
+ "target_modules": [
32
+ "v_proj",
33
+ "q_proj"
34
+ ],
35
+ "target_parameters": null,
36
+ "task_type": "CAUSAL_LM",
37
+ "trainable_token_indices": null,
38
+ "use_dora": false,
39
+ "use_qalora": false,
40
+ "use_rslora": false
41
+ }
checkpoint-680/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9bf49fc9e72ee00eae9f6d99d20d50fc747e476a17d65c4e79516e5b53db95d5
3
+ size 13648432
checkpoint-680/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ee46ab549759354660abeafd5d5e80e6fec364199278e92f47b8e8a1966db5cb
3
+ size 27367499
checkpoint-680/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3bbb8ab05cfffc5336b2b7ff7c52b82dbd134007a953eda907656635344a54c0
3
+ size 14455
checkpoint-680/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7eb32bcbaa0fd6a47ff0eb6e13e6e39edaafe04fc5ea70b593a5cbad34069705
3
+ size 1465
checkpoint-680/trainer_state.json ADDED
@@ -0,0 +1,510 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 1.0,
6
+ "eval_steps": 500,
7
+ "global_step": 680,
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.014713996689350745,
14
+ "grad_norm": 1.3101017475128174,
15
+ "learning_rate": 9.86764705882353e-05,
16
+ "loss": 2.9497,
17
+ "step": 10
18
+ },
19
+ {
20
+ "epoch": 0.02942799337870149,
21
+ "grad_norm": 1.7666537761688232,
22
+ "learning_rate": 9.720588235294117e-05,
23
+ "loss": 2.5707,
24
+ "step": 20
25
+ },
26
+ {
27
+ "epoch": 0.044141990068052236,
28
+ "grad_norm": 1.4447238445281982,
29
+ "learning_rate": 9.573529411764707e-05,
30
+ "loss": 2.281,
31
+ "step": 30
32
+ },
33
+ {
34
+ "epoch": 0.05885598675740298,
35
+ "grad_norm": 1.039144515991211,
36
+ "learning_rate": 9.426470588235294e-05,
37
+ "loss": 2.3904,
38
+ "step": 40
39
+ },
40
+ {
41
+ "epoch": 0.07356998344675372,
42
+ "grad_norm": 1.2274360656738281,
43
+ "learning_rate": 9.279411764705884e-05,
44
+ "loss": 2.5839,
45
+ "step": 50
46
+ },
47
+ {
48
+ "epoch": 0.08828398013610447,
49
+ "grad_norm": 1.1105211973190308,
50
+ "learning_rate": 9.13235294117647e-05,
51
+ "loss": 2.2987,
52
+ "step": 60
53
+ },
54
+ {
55
+ "epoch": 0.10299797682545521,
56
+ "grad_norm": 1.2184361219406128,
57
+ "learning_rate": 8.98529411764706e-05,
58
+ "loss": 2.5504,
59
+ "step": 70
60
+ },
61
+ {
62
+ "epoch": 0.11771197351480596,
63
+ "grad_norm": 1.1057401895523071,
64
+ "learning_rate": 8.838235294117647e-05,
65
+ "loss": 2.4922,
66
+ "step": 80
67
+ },
68
+ {
69
+ "epoch": 0.1324259702041567,
70
+ "grad_norm": 1.1191836595535278,
71
+ "learning_rate": 8.691176470588237e-05,
72
+ "loss": 2.6277,
73
+ "step": 90
74
+ },
75
+ {
76
+ "epoch": 0.14713996689350745,
77
+ "grad_norm": 1.2518597841262817,
78
+ "learning_rate": 8.544117647058823e-05,
79
+ "loss": 2.1856,
80
+ "step": 100
81
+ },
82
+ {
83
+ "epoch": 0.1618539635828582,
84
+ "grad_norm": 1.2593870162963867,
85
+ "learning_rate": 8.397058823529412e-05,
86
+ "loss": 2.39,
87
+ "step": 110
88
+ },
89
+ {
90
+ "epoch": 0.17656796027220895,
91
+ "grad_norm": 1.5582458972930908,
92
+ "learning_rate": 8.25e-05,
93
+ "loss": 2.2159,
94
+ "step": 120
95
+ },
96
+ {
97
+ "epoch": 0.1912819569615597,
98
+ "grad_norm": 1.1720651388168335,
99
+ "learning_rate": 8.102941176470588e-05,
100
+ "loss": 2.5332,
101
+ "step": 130
102
+ },
103
+ {
104
+ "epoch": 0.20599595365091042,
105
+ "grad_norm": 1.3537250757217407,
106
+ "learning_rate": 7.955882352941176e-05,
107
+ "loss": 2.549,
108
+ "step": 140
109
+ },
110
+ {
111
+ "epoch": 0.22070995034026117,
112
+ "grad_norm": 1.440487265586853,
113
+ "learning_rate": 7.808823529411765e-05,
114
+ "loss": 2.6141,
115
+ "step": 150
116
+ },
117
+ {
118
+ "epoch": 0.23542394702961192,
119
+ "grad_norm": 1.2468889951705933,
120
+ "learning_rate": 7.661764705882354e-05,
121
+ "loss": 2.1802,
122
+ "step": 160
123
+ },
124
+ {
125
+ "epoch": 0.25013794371896264,
126
+ "grad_norm": 1.6108534336090088,
127
+ "learning_rate": 7.514705882352941e-05,
128
+ "loss": 2.0655,
129
+ "step": 170
130
+ },
131
+ {
132
+ "epoch": 0.2648519404083134,
133
+ "grad_norm": 1.454962968826294,
134
+ "learning_rate": 7.367647058823531e-05,
135
+ "loss": 2.3067,
136
+ "step": 180
137
+ },
138
+ {
139
+ "epoch": 0.27956593709766414,
140
+ "grad_norm": 1.4071511030197144,
141
+ "learning_rate": 7.220588235294118e-05,
142
+ "loss": 2.378,
143
+ "step": 190
144
+ },
145
+ {
146
+ "epoch": 0.2942799337870149,
147
+ "grad_norm": 1.7635990381240845,
148
+ "learning_rate": 7.073529411764707e-05,
149
+ "loss": 2.6275,
150
+ "step": 200
151
+ },
152
+ {
153
+ "epoch": 0.30899393047636564,
154
+ "grad_norm": 1.4291043281555176,
155
+ "learning_rate": 6.926470588235294e-05,
156
+ "loss": 1.8871,
157
+ "step": 210
158
+ },
159
+ {
160
+ "epoch": 0.3237079271657164,
161
+ "grad_norm": 1.5699518918991089,
162
+ "learning_rate": 6.779411764705882e-05,
163
+ "loss": 2.3781,
164
+ "step": 220
165
+ },
166
+ {
167
+ "epoch": 0.33842192385506714,
168
+ "grad_norm": 1.5319325923919678,
169
+ "learning_rate": 6.632352941176471e-05,
170
+ "loss": 2.1488,
171
+ "step": 230
172
+ },
173
+ {
174
+ "epoch": 0.3531359205444179,
175
+ "grad_norm": 1.505298376083374,
176
+ "learning_rate": 6.485294117647059e-05,
177
+ "loss": 2.6991,
178
+ "step": 240
179
+ },
180
+ {
181
+ "epoch": 0.36784991723376864,
182
+ "grad_norm": 2.733734607696533,
183
+ "learning_rate": 6.338235294117647e-05,
184
+ "loss": 2.1978,
185
+ "step": 250
186
+ },
187
+ {
188
+ "epoch": 0.3825639139231194,
189
+ "grad_norm": 1.6058900356292725,
190
+ "learning_rate": 6.191176470588235e-05,
191
+ "loss": 2.1871,
192
+ "step": 260
193
+ },
194
+ {
195
+ "epoch": 0.3972779106124701,
196
+ "grad_norm": 2.072322130203247,
197
+ "learning_rate": 6.044117647058824e-05,
198
+ "loss": 2.5621,
199
+ "step": 270
200
+ },
201
+ {
202
+ "epoch": 0.41199190730182084,
203
+ "grad_norm": 1.765065312385559,
204
+ "learning_rate": 5.897058823529412e-05,
205
+ "loss": 2.1595,
206
+ "step": 280
207
+ },
208
+ {
209
+ "epoch": 0.4267059039911716,
210
+ "grad_norm": 1.5139451026916504,
211
+ "learning_rate": 5.7499999999999995e-05,
212
+ "loss": 2.2917,
213
+ "step": 290
214
+ },
215
+ {
216
+ "epoch": 0.44141990068052234,
217
+ "grad_norm": 1.7041040658950806,
218
+ "learning_rate": 5.6029411764705884e-05,
219
+ "loss": 2.4275,
220
+ "step": 300
221
+ },
222
+ {
223
+ "epoch": 0.4561338973698731,
224
+ "grad_norm": 1.5826152563095093,
225
+ "learning_rate": 5.455882352941176e-05,
226
+ "loss": 2.5011,
227
+ "step": 310
228
+ },
229
+ {
230
+ "epoch": 0.47084789405922384,
231
+ "grad_norm": 1.692821979522705,
232
+ "learning_rate": 5.308823529411765e-05,
233
+ "loss": 2.3798,
234
+ "step": 320
235
+ },
236
+ {
237
+ "epoch": 0.4855618907485746,
238
+ "grad_norm": 1.8263252973556519,
239
+ "learning_rate": 5.161764705882354e-05,
240
+ "loss": 2.6645,
241
+ "step": 330
242
+ },
243
+ {
244
+ "epoch": 0.5002758874379253,
245
+ "grad_norm": 1.7093111276626587,
246
+ "learning_rate": 5.0147058823529414e-05,
247
+ "loss": 2.4835,
248
+ "step": 340
249
+ },
250
+ {
251
+ "epoch": 0.5149898841272761,
252
+ "grad_norm": 1.7787758111953735,
253
+ "learning_rate": 4.86764705882353e-05,
254
+ "loss": 2.3779,
255
+ "step": 350
256
+ },
257
+ {
258
+ "epoch": 0.5297038808166268,
259
+ "grad_norm": 1.7382874488830566,
260
+ "learning_rate": 4.720588235294118e-05,
261
+ "loss": 2.3799,
262
+ "step": 360
263
+ },
264
+ {
265
+ "epoch": 0.5444178775059776,
266
+ "grad_norm": 1.797096848487854,
267
+ "learning_rate": 4.573529411764706e-05,
268
+ "loss": 2.2148,
269
+ "step": 370
270
+ },
271
+ {
272
+ "epoch": 0.5591318741953283,
273
+ "grad_norm": 1.781445860862732,
274
+ "learning_rate": 4.4264705882352944e-05,
275
+ "loss": 2.0308,
276
+ "step": 380
277
+ },
278
+ {
279
+ "epoch": 0.5738458708846791,
280
+ "grad_norm": 2.1444976329803467,
281
+ "learning_rate": 4.2794117647058827e-05,
282
+ "loss": 2.2169,
283
+ "step": 390
284
+ },
285
+ {
286
+ "epoch": 0.5885598675740298,
287
+ "grad_norm": 1.8745927810668945,
288
+ "learning_rate": 4.13235294117647e-05,
289
+ "loss": 1.9554,
290
+ "step": 400
291
+ },
292
+ {
293
+ "epoch": 0.6032738642633806,
294
+ "grad_norm": 1.5899605751037598,
295
+ "learning_rate": 3.985294117647059e-05,
296
+ "loss": 2.4028,
297
+ "step": 410
298
+ },
299
+ {
300
+ "epoch": 0.6179878609527313,
301
+ "grad_norm": 1.9187322854995728,
302
+ "learning_rate": 3.8382352941176474e-05,
303
+ "loss": 2.2514,
304
+ "step": 420
305
+ },
306
+ {
307
+ "epoch": 0.632701857642082,
308
+ "grad_norm": 1.5589262247085571,
309
+ "learning_rate": 3.6911764705882356e-05,
310
+ "loss": 2.343,
311
+ "step": 430
312
+ },
313
+ {
314
+ "epoch": 0.6474158543314328,
315
+ "grad_norm": 1.5984998941421509,
316
+ "learning_rate": 3.544117647058824e-05,
317
+ "loss": 1.9433,
318
+ "step": 440
319
+ },
320
+ {
321
+ "epoch": 0.6621298510207835,
322
+ "grad_norm": 1.9034677743911743,
323
+ "learning_rate": 3.397058823529412e-05,
324
+ "loss": 2.2025,
325
+ "step": 450
326
+ },
327
+ {
328
+ "epoch": 0.6768438477101343,
329
+ "grad_norm": 1.7389880418777466,
330
+ "learning_rate": 3.2500000000000004e-05,
331
+ "loss": 2.3835,
332
+ "step": 460
333
+ },
334
+ {
335
+ "epoch": 0.691557844399485,
336
+ "grad_norm": 1.8547667264938354,
337
+ "learning_rate": 3.1029411764705886e-05,
338
+ "loss": 2.2641,
339
+ "step": 470
340
+ },
341
+ {
342
+ "epoch": 0.7062718410888358,
343
+ "grad_norm": 1.6838593482971191,
344
+ "learning_rate": 2.9558823529411766e-05,
345
+ "loss": 1.8679,
346
+ "step": 480
347
+ },
348
+ {
349
+ "epoch": 0.7209858377781865,
350
+ "grad_norm": 2.003615617752075,
351
+ "learning_rate": 2.8088235294117648e-05,
352
+ "loss": 2.2402,
353
+ "step": 490
354
+ },
355
+ {
356
+ "epoch": 0.7356998344675373,
357
+ "grad_norm": 1.7946232557296753,
358
+ "learning_rate": 2.661764705882353e-05,
359
+ "loss": 1.9735,
360
+ "step": 500
361
+ },
362
+ {
363
+ "epoch": 0.750413831156888,
364
+ "grad_norm": 1.9260705709457397,
365
+ "learning_rate": 2.5147058823529413e-05,
366
+ "loss": 2.3836,
367
+ "step": 510
368
+ },
369
+ {
370
+ "epoch": 0.7651278278462388,
371
+ "grad_norm": 1.3813334703445435,
372
+ "learning_rate": 2.3676470588235295e-05,
373
+ "loss": 2.4856,
374
+ "step": 520
375
+ },
376
+ {
377
+ "epoch": 0.7798418245355895,
378
+ "grad_norm": 1.6835263967514038,
379
+ "learning_rate": 2.2205882352941178e-05,
380
+ "loss": 2.3702,
381
+ "step": 530
382
+ },
383
+ {
384
+ "epoch": 0.7945558212249402,
385
+ "grad_norm": 2.234776496887207,
386
+ "learning_rate": 2.073529411764706e-05,
387
+ "loss": 2.6312,
388
+ "step": 540
389
+ },
390
+ {
391
+ "epoch": 0.809269817914291,
392
+ "grad_norm": 1.4896553754806519,
393
+ "learning_rate": 1.9264705882352943e-05,
394
+ "loss": 2.2481,
395
+ "step": 550
396
+ },
397
+ {
398
+ "epoch": 0.8239838146036417,
399
+ "grad_norm": 1.92662513256073,
400
+ "learning_rate": 1.7794117647058825e-05,
401
+ "loss": 1.9659,
402
+ "step": 560
403
+ },
404
+ {
405
+ "epoch": 0.8386978112929925,
406
+ "grad_norm": 1.4436355829238892,
407
+ "learning_rate": 1.6323529411764708e-05,
408
+ "loss": 2.3563,
409
+ "step": 570
410
+ },
411
+ {
412
+ "epoch": 0.8534118079823432,
413
+ "grad_norm": 1.8207820653915405,
414
+ "learning_rate": 1.4852941176470589e-05,
415
+ "loss": 2.0522,
416
+ "step": 580
417
+ },
418
+ {
419
+ "epoch": 0.868125804671694,
420
+ "grad_norm": 1.8331910371780396,
421
+ "learning_rate": 1.3382352941176471e-05,
422
+ "loss": 2.4762,
423
+ "step": 590
424
+ },
425
+ {
426
+ "epoch": 0.8828398013610447,
427
+ "grad_norm": 1.7300273180007935,
428
+ "learning_rate": 1.1911764705882354e-05,
429
+ "loss": 2.4929,
430
+ "step": 600
431
+ },
432
+ {
433
+ "epoch": 0.8975537980503955,
434
+ "grad_norm": 1.7423087358474731,
435
+ "learning_rate": 1.0441176470588236e-05,
436
+ "loss": 2.065,
437
+ "step": 610
438
+ },
439
+ {
440
+ "epoch": 0.9122677947397462,
441
+ "grad_norm": 1.853888988494873,
442
+ "learning_rate": 8.970588235294119e-06,
443
+ "loss": 2.3043,
444
+ "step": 620
445
+ },
446
+ {
447
+ "epoch": 0.926981791429097,
448
+ "grad_norm": 1.6552138328552246,
449
+ "learning_rate": 7.5e-06,
450
+ "loss": 2.6556,
451
+ "step": 630
452
+ },
453
+ {
454
+ "epoch": 0.9416957881184477,
455
+ "grad_norm": 1.6745601892471313,
456
+ "learning_rate": 6.029411764705883e-06,
457
+ "loss": 2.3833,
458
+ "step": 640
459
+ },
460
+ {
461
+ "epoch": 0.9564097848077984,
462
+ "grad_norm": 1.6154053211212158,
463
+ "learning_rate": 4.558823529411764e-06,
464
+ "loss": 2.4859,
465
+ "step": 650
466
+ },
467
+ {
468
+ "epoch": 0.9711237814971492,
469
+ "grad_norm": 1.7248449325561523,
470
+ "learning_rate": 3.0882352941176472e-06,
471
+ "loss": 2.4022,
472
+ "step": 660
473
+ },
474
+ {
475
+ "epoch": 0.9858377781864999,
476
+ "grad_norm": 1.7172226905822754,
477
+ "learning_rate": 1.6176470588235297e-06,
478
+ "loss": 2.5658,
479
+ "step": 670
480
+ },
481
+ {
482
+ "epoch": 1.0,
483
+ "grad_norm": 2.6853206157684326,
484
+ "learning_rate": 1.4705882352941178e-07,
485
+ "loss": 2.1013,
486
+ "step": 680
487
+ }
488
+ ],
489
+ "logging_steps": 10,
490
+ "max_steps": 680,
491
+ "num_input_tokens_seen": 0,
492
+ "num_train_epochs": 1,
493
+ "save_steps": 500,
494
+ "stateful_callbacks": {
495
+ "TrainerControl": {
496
+ "args": {
497
+ "should_epoch_stop": false,
498
+ "should_evaluate": false,
499
+ "should_log": false,
500
+ "should_save": true,
501
+ "should_training_stop": true
502
+ },
503
+ "attributes": {}
504
+ }
505
+ },
506
+ "total_flos": 5.941123206453658e+16,
507
+ "train_batch_size": 1,
508
+ "trial_name": null,
509
+ "trial_params": null
510
+ }
checkpoint-680/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6282a1de5ad492faabf2254db8e3abd8fd7b3a11a72d08431ad0326216eb30c5
3
+ size 5841
special_tokens_map.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "</s>",
17
+ "unk_token": {
18
+ "content": "<unk>",
19
+ "lstrip": false,
20
+ "normalized": false,
21
+ "rstrip": false,
22
+ "single_word": false
23
+ }
24
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 1000000000000000019884624838656,
38
+ "pad_token": "</s>",
39
+ "sp_model_kwargs": {},
40
+ "spaces_between_special_tokens": false,
41
+ "tokenizer_class": "LlamaTokenizer",
42
+ "unk_token": "<unk>",
43
+ "use_default_system_prompt": false
44
+ }