colinw2292
commited on
Commit
•
c8b4b59
1
Parent(s):
69be56b
Upload folder using huggingface_hub
Browse files- README.md +40 -0
- adapter_config.json +26 -0
- adapter_model.safetensors +3 -0
- checkpoint-1158/README.md +204 -0
- checkpoint-1158/adapter_config.json +26 -0
- checkpoint-1158/adapter_model.safetensors +3 -0
- checkpoint-1158/optimizer.pt +3 -0
- checkpoint-1158/rng_state.pth +3 -0
- checkpoint-1158/scheduler.pt +3 -0
- checkpoint-1158/special_tokens_map.json +29 -0
- checkpoint-1158/tokenizer.json +0 -0
- checkpoint-1158/tokenizer.model +3 -0
- checkpoint-1158/tokenizer_config.json +47 -0
- checkpoint-1158/trainer_state.json +231 -0
- checkpoint-1158/training_args.bin +3 -0
- handler.py +31 -0
- requirements.txt +2 -0
- runs/Jan26_18-18-48_r-colinw2292-writer-z6tg4mi9-b5869-b5qt7/events.out.tfevents.1706293130.r-colinw2292-writer-z6tg4mi9-b5869-b5qt7.102.0 +3 -0
- special_tokens_map.json +29 -0
- tokenizer.json +0 -0
- tokenizer.model +3 -0
- tokenizer_config.json +47 -0
- training_args.bin +3 -0
- training_params.json +47 -0
README.md
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
tags:
|
3 |
+
- autotrain
|
4 |
+
- text-generation
|
5 |
+
widget:
|
6 |
+
- text: "I love AutoTrain because "
|
7 |
+
license: other
|
8 |
+
---
|
9 |
+
|
10 |
+
# Model Trained Using AutoTrain
|
11 |
+
|
12 |
+
This model was trained using AutoTrain. For more information, please visit [AutoTrain](https://hf.co/docs/autotrain).
|
13 |
+
|
14 |
+
# Usage
|
15 |
+
|
16 |
+
```python
|
17 |
+
|
18 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
19 |
+
|
20 |
+
model_path = "PATH_TO_THIS_REPO"
|
21 |
+
|
22 |
+
tokenizer = AutoTokenizer.from_pretrained(model_path)
|
23 |
+
model = AutoModelForCausalLM.from_pretrained(
|
24 |
+
model_path,
|
25 |
+
device_map="auto",
|
26 |
+
torch_dtype='auto'
|
27 |
+
).eval()
|
28 |
+
|
29 |
+
# Prompt content: "hi"
|
30 |
+
messages = [
|
31 |
+
{"role": "user", "content": "hi"}
|
32 |
+
]
|
33 |
+
|
34 |
+
input_ids = tokenizer.apply_chat_template(conversation=messages, tokenize=True, add_generation_prompt=True, return_tensors='pt')
|
35 |
+
output_ids = model.generate(input_ids.to('cuda'))
|
36 |
+
response = tokenizer.decode(output_ids[0][input_ids.shape[1]:], skip_special_tokens=True)
|
37 |
+
|
38 |
+
# Model response: "Hello! How can I assist you today?"
|
39 |
+
print(response)
|
40 |
+
```
|
adapter_config.json
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"alpha_pattern": {},
|
3 |
+
"auto_mapping": null,
|
4 |
+
"base_model_name_or_path": "NousResearch/Yarn-Mistral-7b-128k",
|
5 |
+
"bias": "none",
|
6 |
+
"fan_in_fan_out": false,
|
7 |
+
"inference_mode": true,
|
8 |
+
"init_lora_weights": true,
|
9 |
+
"layers_pattern": null,
|
10 |
+
"layers_to_transform": null,
|
11 |
+
"loftq_config": {},
|
12 |
+
"lora_alpha": 32,
|
13 |
+
"lora_dropout": 0.05,
|
14 |
+
"megatron_config": null,
|
15 |
+
"megatron_core": "megatron.core",
|
16 |
+
"modules_to_save": null,
|
17 |
+
"peft_type": "LORA",
|
18 |
+
"r": 16,
|
19 |
+
"rank_pattern": {},
|
20 |
+
"revision": null,
|
21 |
+
"target_modules": [
|
22 |
+
"q_proj",
|
23 |
+
"v_proj"
|
24 |
+
],
|
25 |
+
"task_type": "CAUSAL_LM"
|
26 |
+
}
|
adapter_model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fc101799c3576f4b2c07ac3b6ca7d592cf53cfcad1056f8b447ebf5c9848c206
|
3 |
+
size 27280152
|
checkpoint-1158/README.md
ADDED
@@ -0,0 +1,204 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
library_name: peft
|
3 |
+
base_model: NousResearch/Yarn-Mistral-7b-128k
|
4 |
+
---
|
5 |
+
|
6 |
+
# Model Card for Model ID
|
7 |
+
|
8 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
9 |
+
|
10 |
+
|
11 |
+
|
12 |
+
## Model Details
|
13 |
+
|
14 |
+
### Model Description
|
15 |
+
|
16 |
+
<!-- Provide a longer summary of what this model is. -->
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
- **Developed by:** [More Information Needed]
|
21 |
+
- **Funded by [optional]:** [More Information Needed]
|
22 |
+
- **Shared by [optional]:** [More Information Needed]
|
23 |
+
- **Model type:** [More Information Needed]
|
24 |
+
- **Language(s) (NLP):** [More Information Needed]
|
25 |
+
- **License:** [More Information Needed]
|
26 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
27 |
+
|
28 |
+
### Model Sources [optional]
|
29 |
+
|
30 |
+
<!-- Provide the basic links for the model. -->
|
31 |
+
|
32 |
+
- **Repository:** [More Information Needed]
|
33 |
+
- **Paper [optional]:** [More Information Needed]
|
34 |
+
- **Demo [optional]:** [More Information Needed]
|
35 |
+
|
36 |
+
## Uses
|
37 |
+
|
38 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
39 |
+
|
40 |
+
### Direct Use
|
41 |
+
|
42 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
43 |
+
|
44 |
+
[More Information Needed]
|
45 |
+
|
46 |
+
### Downstream Use [optional]
|
47 |
+
|
48 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
49 |
+
|
50 |
+
[More Information Needed]
|
51 |
+
|
52 |
+
### Out-of-Scope Use
|
53 |
+
|
54 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
55 |
+
|
56 |
+
[More Information Needed]
|
57 |
+
|
58 |
+
## Bias, Risks, and Limitations
|
59 |
+
|
60 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
61 |
+
|
62 |
+
[More Information Needed]
|
63 |
+
|
64 |
+
### Recommendations
|
65 |
+
|
66 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
67 |
+
|
68 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
69 |
+
|
70 |
+
## How to Get Started with the Model
|
71 |
+
|
72 |
+
Use the code below to get started with the model.
|
73 |
+
|
74 |
+
[More Information Needed]
|
75 |
+
|
76 |
+
## Training Details
|
77 |
+
|
78 |
+
### Training Data
|
79 |
+
|
80 |
+
<!-- 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. -->
|
81 |
+
|
82 |
+
[More Information Needed]
|
83 |
+
|
84 |
+
### Training Procedure
|
85 |
+
|
86 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
87 |
+
|
88 |
+
#### Preprocessing [optional]
|
89 |
+
|
90 |
+
[More Information Needed]
|
91 |
+
|
92 |
+
|
93 |
+
#### Training Hyperparameters
|
94 |
+
|
95 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
96 |
+
|
97 |
+
#### Speeds, Sizes, Times [optional]
|
98 |
+
|
99 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
100 |
+
|
101 |
+
[More Information Needed]
|
102 |
+
|
103 |
+
## Evaluation
|
104 |
+
|
105 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
106 |
+
|
107 |
+
### Testing Data, Factors & Metrics
|
108 |
+
|
109 |
+
#### Testing Data
|
110 |
+
|
111 |
+
<!-- This should link to a Dataset Card if possible. -->
|
112 |
+
|
113 |
+
[More Information Needed]
|
114 |
+
|
115 |
+
#### Factors
|
116 |
+
|
117 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
118 |
+
|
119 |
+
[More Information Needed]
|
120 |
+
|
121 |
+
#### Metrics
|
122 |
+
|
123 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
124 |
+
|
125 |
+
[More Information Needed]
|
126 |
+
|
127 |
+
### Results
|
128 |
+
|
129 |
+
[More Information Needed]
|
130 |
+
|
131 |
+
#### Summary
|
132 |
+
|
133 |
+
|
134 |
+
|
135 |
+
## Model Examination [optional]
|
136 |
+
|
137 |
+
<!-- Relevant interpretability work for the model goes here -->
|
138 |
+
|
139 |
+
[More Information Needed]
|
140 |
+
|
141 |
+
## Environmental Impact
|
142 |
+
|
143 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
144 |
+
|
145 |
+
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).
|
146 |
+
|
147 |
+
- **Hardware Type:** [More Information Needed]
|
148 |
+
- **Hours used:** [More Information Needed]
|
149 |
+
- **Cloud Provider:** [More Information Needed]
|
150 |
+
- **Compute Region:** [More Information Needed]
|
151 |
+
- **Carbon Emitted:** [More Information Needed]
|
152 |
+
|
153 |
+
## Technical Specifications [optional]
|
154 |
+
|
155 |
+
### Model Architecture and Objective
|
156 |
+
|
157 |
+
[More Information Needed]
|
158 |
+
|
159 |
+
### Compute Infrastructure
|
160 |
+
|
161 |
+
[More Information Needed]
|
162 |
+
|
163 |
+
#### Hardware
|
164 |
+
|
165 |
+
[More Information Needed]
|
166 |
+
|
167 |
+
#### Software
|
168 |
+
|
169 |
+
[More Information Needed]
|
170 |
+
|
171 |
+
## Citation [optional]
|
172 |
+
|
173 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
174 |
+
|
175 |
+
**BibTeX:**
|
176 |
+
|
177 |
+
[More Information Needed]
|
178 |
+
|
179 |
+
**APA:**
|
180 |
+
|
181 |
+
[More Information Needed]
|
182 |
+
|
183 |
+
## Glossary [optional]
|
184 |
+
|
185 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
186 |
+
|
187 |
+
[More Information Needed]
|
188 |
+
|
189 |
+
## More Information [optional]
|
190 |
+
|
191 |
+
[More Information Needed]
|
192 |
+
|
193 |
+
## Model Card Authors [optional]
|
194 |
+
|
195 |
+
[More Information Needed]
|
196 |
+
|
197 |
+
## Model Card Contact
|
198 |
+
|
199 |
+
[More Information Needed]
|
200 |
+
|
201 |
+
|
202 |
+
### Framework versions
|
203 |
+
|
204 |
+
- PEFT 0.7.1
|
checkpoint-1158/adapter_config.json
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"alpha_pattern": {},
|
3 |
+
"auto_mapping": null,
|
4 |
+
"base_model_name_or_path": "NousResearch/Yarn-Mistral-7b-128k",
|
5 |
+
"bias": "none",
|
6 |
+
"fan_in_fan_out": false,
|
7 |
+
"inference_mode": true,
|
8 |
+
"init_lora_weights": true,
|
9 |
+
"layers_pattern": null,
|
10 |
+
"layers_to_transform": null,
|
11 |
+
"loftq_config": {},
|
12 |
+
"lora_alpha": 32,
|
13 |
+
"lora_dropout": 0.05,
|
14 |
+
"megatron_config": null,
|
15 |
+
"megatron_core": "megatron.core",
|
16 |
+
"modules_to_save": null,
|
17 |
+
"peft_type": "LORA",
|
18 |
+
"r": 16,
|
19 |
+
"rank_pattern": {},
|
20 |
+
"revision": null,
|
21 |
+
"target_modules": [
|
22 |
+
"q_proj",
|
23 |
+
"v_proj"
|
24 |
+
],
|
25 |
+
"task_type": "CAUSAL_LM"
|
26 |
+
}
|
checkpoint-1158/adapter_model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fc101799c3576f4b2c07ac3b6ca7d592cf53cfcad1056f8b447ebf5c9848c206
|
3 |
+
size 27280152
|
checkpoint-1158/optimizer.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:48904194eddf9eef969953c8c36f7fb528ce935e442edd9bb0e73b9611ab8057
|
3 |
+
size 54633978
|
checkpoint-1158/rng_state.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9196a1e708bf24d6abba41cce3f8558820acc3e50f9394c5955e29eb41ffea3d
|
3 |
+
size 14244
|
checkpoint-1158/scheduler.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b69e51a284887657459af81ce19ceca19be238d40d5865e56e890b70caa49db9
|
3 |
+
size 1064
|
checkpoint-1158/special_tokens_map.json
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"additional_special_tokens": [
|
3 |
+
"<unk>",
|
4 |
+
"<s>",
|
5 |
+
"</s>"
|
6 |
+
],
|
7 |
+
"bos_token": {
|
8 |
+
"content": "<s>",
|
9 |
+
"lstrip": false,
|
10 |
+
"normalized": false,
|
11 |
+
"rstrip": false,
|
12 |
+
"single_word": false
|
13 |
+
},
|
14 |
+
"eos_token": {
|
15 |
+
"content": "</s>",
|
16 |
+
"lstrip": false,
|
17 |
+
"normalized": false,
|
18 |
+
"rstrip": false,
|
19 |
+
"single_word": false
|
20 |
+
},
|
21 |
+
"pad_token": "</s>",
|
22 |
+
"unk_token": {
|
23 |
+
"content": "<unk>",
|
24 |
+
"lstrip": false,
|
25 |
+
"normalized": false,
|
26 |
+
"rstrip": false,
|
27 |
+
"single_word": false
|
28 |
+
}
|
29 |
+
}
|
checkpoint-1158/tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
checkpoint-1158/tokenizer.model
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:dadfd56d766715c61d2ef780a525ab43b8e6da4de6865bda3d95fdef5e134055
|
3 |
+
size 493443
|
checkpoint-1158/tokenizer_config.json
ADDED
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"add_bos_token": true,
|
3 |
+
"add_eos_token": false,
|
4 |
+
"added_tokens_decoder": {
|
5 |
+
"0": {
|
6 |
+
"content": "<unk>",
|
7 |
+
"lstrip": false,
|
8 |
+
"normalized": false,
|
9 |
+
"rstrip": false,
|
10 |
+
"single_word": false,
|
11 |
+
"special": true
|
12 |
+
},
|
13 |
+
"1": {
|
14 |
+
"content": "<s>",
|
15 |
+
"lstrip": false,
|
16 |
+
"normalized": false,
|
17 |
+
"rstrip": false,
|
18 |
+
"single_word": false,
|
19 |
+
"special": true
|
20 |
+
},
|
21 |
+
"2": {
|
22 |
+
"content": "</s>",
|
23 |
+
"lstrip": false,
|
24 |
+
"normalized": false,
|
25 |
+
"rstrip": false,
|
26 |
+
"single_word": false,
|
27 |
+
"special": true
|
28 |
+
}
|
29 |
+
},
|
30 |
+
"additional_special_tokens": [
|
31 |
+
"<unk>",
|
32 |
+
"<s>",
|
33 |
+
"</s>"
|
34 |
+
],
|
35 |
+
"bos_token": "<s>",
|
36 |
+
"chat_template": "{% if not add_generation_prompt is defined %}{% set add_generation_prompt = false %}{% endif %}{% for message in messages %}{{'<|im_start|>' + message['role'] + '\n' + message['content'] + '<|im_end|>' + '\n'}}{% endfor %}{% if add_generation_prompt %}{{ '<|im_start|>assistant\n' }}{% endif %}",
|
37 |
+
"clean_up_tokenization_spaces": false,
|
38 |
+
"eos_token": "</s>",
|
39 |
+
"legacy": true,
|
40 |
+
"model_max_length": 2048,
|
41 |
+
"pad_token": "</s>",
|
42 |
+
"sp_model_kwargs": {},
|
43 |
+
"spaces_between_special_tokens": false,
|
44 |
+
"tokenizer_class": "LlamaTokenizer",
|
45 |
+
"unk_token": "<unk>",
|
46 |
+
"use_default_system_prompt": true
|
47 |
+
}
|
checkpoint-1158/trainer_state.json
ADDED
@@ -0,0 +1,231 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_metric": null,
|
3 |
+
"best_model_checkpoint": null,
|
4 |
+
"epoch": 3.0,
|
5 |
+
"eval_steps": 500,
|
6 |
+
"global_step": 1158,
|
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.2,
|
13 |
+
"learning_rate": 1.9137931034482762e-05,
|
14 |
+
"logits/chosen": -2.7039783000946045,
|
15 |
+
"logits/rejected": -2.699718713760376,
|
16 |
+
"logps/chosen": -178.0665283203125,
|
17 |
+
"logps/rejected": -202.87210083007812,
|
18 |
+
"loss": 0.65,
|
19 |
+
"rewards/accuracies": 0.798701286315918,
|
20 |
+
"rewards/chosen": -0.09282779693603516,
|
21 |
+
"rewards/margins": 0.09910193085670471,
|
22 |
+
"rewards/rejected": -0.19192971289157867,
|
23 |
+
"step": 77
|
24 |
+
},
|
25 |
+
{
|
26 |
+
"epoch": 0.4,
|
27 |
+
"learning_rate": 2.899232245681382e-05,
|
28 |
+
"logits/chosen": -2.7582526206970215,
|
29 |
+
"logits/rejected": -2.6498587131500244,
|
30 |
+
"logps/chosen": -206.910888671875,
|
31 |
+
"logps/rejected": -244.54962158203125,
|
32 |
+
"loss": 0.3215,
|
33 |
+
"rewards/accuracies": 0.9740259647369385,
|
34 |
+
"rewards/chosen": -2.6819589138031006,
|
35 |
+
"rewards/margins": 1.8207621574401855,
|
36 |
+
"rewards/rejected": -4.502721309661865,
|
37 |
+
"step": 154
|
38 |
+
},
|
39 |
+
{
|
40 |
+
"epoch": 0.6,
|
41 |
+
"learning_rate": 2.6833013435700576e-05,
|
42 |
+
"logits/chosen": -3.261249542236328,
|
43 |
+
"logits/rejected": -3.26186203956604,
|
44 |
+
"logps/chosen": -636.440673828125,
|
45 |
+
"logps/rejected": -844.8958740234375,
|
46 |
+
"loss": 0.1384,
|
47 |
+
"rewards/accuracies": 0.9675324559211731,
|
48 |
+
"rewards/chosen": -45.84988021850586,
|
49 |
+
"rewards/margins": 18.366718292236328,
|
50 |
+
"rewards/rejected": -64.21659088134766,
|
51 |
+
"step": 231
|
52 |
+
},
|
53 |
+
{
|
54 |
+
"epoch": 0.8,
|
55 |
+
"learning_rate": 2.4644913627639156e-05,
|
56 |
+
"logits/chosen": -3.799668788909912,
|
57 |
+
"logits/rejected": -3.877474308013916,
|
58 |
+
"logps/chosen": -1188.7479248046875,
|
59 |
+
"logps/rejected": -1513.479248046875,
|
60 |
+
"loss": 0.1428,
|
61 |
+
"rewards/accuracies": 0.9675324559211731,
|
62 |
+
"rewards/chosen": -100.75252532958984,
|
63 |
+
"rewards/margins": 30.6811580657959,
|
64 |
+
"rewards/rejected": -131.4336700439453,
|
65 |
+
"step": 308
|
66 |
+
},
|
67 |
+
{
|
68 |
+
"epoch": 1.0,
|
69 |
+
"learning_rate": 2.2428023032629558e-05,
|
70 |
+
"logits/chosen": -3.48297119140625,
|
71 |
+
"logits/rejected": -3.503549098968506,
|
72 |
+
"logps/chosen": -1211.92041015625,
|
73 |
+
"logps/rejected": -1585.6292724609375,
|
74 |
+
"loss": 0.3247,
|
75 |
+
"rewards/accuracies": 0.9545454382896423,
|
76 |
+
"rewards/chosen": -102.89164733886719,
|
77 |
+
"rewards/margins": 35.46805953979492,
|
78 |
+
"rewards/rejected": -138.3596954345703,
|
79 |
+
"step": 385
|
80 |
+
},
|
81 |
+
{
|
82 |
+
"epoch": 1.2,
|
83 |
+
"learning_rate": 2.0211132437619963e-05,
|
84 |
+
"logits/chosen": -3.9055564403533936,
|
85 |
+
"logits/rejected": -3.94558048248291,
|
86 |
+
"logps/chosen": -1156.05908203125,
|
87 |
+
"logps/rejected": -1524.2059326171875,
|
88 |
+
"loss": 0.2889,
|
89 |
+
"rewards/accuracies": 0.9545454382896423,
|
90 |
+
"rewards/chosen": -97.4389877319336,
|
91 |
+
"rewards/margins": 34.911155700683594,
|
92 |
+
"rewards/rejected": -132.3501434326172,
|
93 |
+
"step": 462
|
94 |
+
},
|
95 |
+
{
|
96 |
+
"epoch": 1.4,
|
97 |
+
"learning_rate": 1.7994241842610365e-05,
|
98 |
+
"logits/chosen": -4.063717365264893,
|
99 |
+
"logits/rejected": -4.160610675811768,
|
100 |
+
"logps/chosen": -1216.2169189453125,
|
101 |
+
"logps/rejected": -1579.79931640625,
|
102 |
+
"loss": 0.0666,
|
103 |
+
"rewards/accuracies": 0.9935064911842346,
|
104 |
+
"rewards/chosen": -103.59471130371094,
|
105 |
+
"rewards/margins": 34.364356994628906,
|
106 |
+
"rewards/rejected": -137.95909118652344,
|
107 |
+
"step": 539
|
108 |
+
},
|
109 |
+
{
|
110 |
+
"epoch": 1.6,
|
111 |
+
"learning_rate": 1.577735124760077e-05,
|
112 |
+
"logits/chosen": -3.7622299194335938,
|
113 |
+
"logits/rejected": -3.8654086589813232,
|
114 |
+
"logps/chosen": -1256.462158203125,
|
115 |
+
"logps/rejected": -1670.1668701171875,
|
116 |
+
"loss": 0.3068,
|
117 |
+
"rewards/accuracies": 0.9545454382896423,
|
118 |
+
"rewards/chosen": -107.87626647949219,
|
119 |
+
"rewards/margins": 38.972930908203125,
|
120 |
+
"rewards/rejected": -146.8491973876953,
|
121 |
+
"step": 616
|
122 |
+
},
|
123 |
+
{
|
124 |
+
"epoch": 1.8,
|
125 |
+
"learning_rate": 1.3589251439539348e-05,
|
126 |
+
"logits/chosen": -3.9780585765838623,
|
127 |
+
"logits/rejected": -4.0323262214660645,
|
128 |
+
"logps/chosen": -1205.580322265625,
|
129 |
+
"logps/rejected": -1609.4249267578125,
|
130 |
+
"loss": 0.0732,
|
131 |
+
"rewards/accuracies": 0.9675324559211731,
|
132 |
+
"rewards/chosen": -102.83528137207031,
|
133 |
+
"rewards/margins": 38.15076446533203,
|
134 |
+
"rewards/rejected": -140.9860382080078,
|
135 |
+
"step": 693
|
136 |
+
},
|
137 |
+
{
|
138 |
+
"epoch": 1.99,
|
139 |
+
"learning_rate": 1.137236084452975e-05,
|
140 |
+
"logits/chosen": -3.9996836185455322,
|
141 |
+
"logits/rejected": -4.038970947265625,
|
142 |
+
"logps/chosen": -1479.3536376953125,
|
143 |
+
"logps/rejected": -1951.1041259765625,
|
144 |
+
"loss": 0.2627,
|
145 |
+
"rewards/accuracies": 0.9935064911842346,
|
146 |
+
"rewards/chosen": -129.55506896972656,
|
147 |
+
"rewards/margins": 45.21900177001953,
|
148 |
+
"rewards/rejected": -174.77407836914062,
|
149 |
+
"step": 770
|
150 |
+
},
|
151 |
+
{
|
152 |
+
"epoch": 2.19,
|
153 |
+
"learning_rate": 9.155470249520153e-06,
|
154 |
+
"logits/chosen": -4.09077262878418,
|
155 |
+
"logits/rejected": -4.1275434494018555,
|
156 |
+
"logps/chosen": -1435.885986328125,
|
157 |
+
"logps/rejected": -1983.1124267578125,
|
158 |
+
"loss": 0.0968,
|
159 |
+
"rewards/accuracies": 0.9870129823684692,
|
160 |
+
"rewards/chosen": -125.91879272460938,
|
161 |
+
"rewards/margins": 52.251136779785156,
|
162 |
+
"rewards/rejected": -178.16995239257812,
|
163 |
+
"step": 847
|
164 |
+
},
|
165 |
+
{
|
166 |
+
"epoch": 2.39,
|
167 |
+
"learning_rate": 6.938579654510557e-06,
|
168 |
+
"logits/chosen": -4.158607482910156,
|
169 |
+
"logits/rejected": -4.210606098175049,
|
170 |
+
"logps/chosen": -1408.3914794921875,
|
171 |
+
"logps/rejected": -1875.4822998046875,
|
172 |
+
"loss": 0.0166,
|
173 |
+
"rewards/accuracies": 0.9805194735527039,
|
174 |
+
"rewards/chosen": -122.99951934814453,
|
175 |
+
"rewards/margins": 44.64362335205078,
|
176 |
+
"rewards/rejected": -167.64315795898438,
|
177 |
+
"step": 924
|
178 |
+
},
|
179 |
+
{
|
180 |
+
"epoch": 2.59,
|
181 |
+
"learning_rate": 4.72168905950096e-06,
|
182 |
+
"logits/chosen": -4.183628559112549,
|
183 |
+
"logits/rejected": -4.219183444976807,
|
184 |
+
"logps/chosen": -1309.217529296875,
|
185 |
+
"logps/rejected": -1762.13232421875,
|
186 |
+
"loss": 0.0602,
|
187 |
+
"rewards/accuracies": 0.9870129823684692,
|
188 |
+
"rewards/chosen": -113.17806243896484,
|
189 |
+
"rewards/margins": 43.657859802246094,
|
190 |
+
"rewards/rejected": -156.83592224121094,
|
191 |
+
"step": 1001
|
192 |
+
},
|
193 |
+
{
|
194 |
+
"epoch": 2.79,
|
195 |
+
"learning_rate": 2.5335892514395392e-06,
|
196 |
+
"logits/chosen": -4.1587114334106445,
|
197 |
+
"logits/rejected": -4.193912029266357,
|
198 |
+
"logps/chosen": -1347.27978515625,
|
199 |
+
"logps/rejected": -1834.71728515625,
|
200 |
+
"loss": 0.0365,
|
201 |
+
"rewards/accuracies": 0.9935064911842346,
|
202 |
+
"rewards/chosen": -116.40560150146484,
|
203 |
+
"rewards/margins": 46.630714416503906,
|
204 |
+
"rewards/rejected": -163.03631591796875,
|
205 |
+
"step": 1078
|
206 |
+
},
|
207 |
+
{
|
208 |
+
"epoch": 2.99,
|
209 |
+
"learning_rate": 3.166986564299424e-07,
|
210 |
+
"logits/chosen": -4.090827465057373,
|
211 |
+
"logits/rejected": -4.138672351837158,
|
212 |
+
"logps/chosen": -1456.274169921875,
|
213 |
+
"logps/rejected": -1961.9942626953125,
|
214 |
+
"loss": 0.0055,
|
215 |
+
"rewards/accuracies": 0.9935064911842346,
|
216 |
+
"rewards/chosen": -127.70254516601562,
|
217 |
+
"rewards/margins": 48.34178924560547,
|
218 |
+
"rewards/rejected": -176.04434204101562,
|
219 |
+
"step": 1155
|
220 |
+
}
|
221 |
+
],
|
222 |
+
"logging_steps": 77,
|
223 |
+
"max_steps": 1158,
|
224 |
+
"num_input_tokens_seen": 0,
|
225 |
+
"num_train_epochs": 3,
|
226 |
+
"save_steps": 500,
|
227 |
+
"total_flos": 0.0,
|
228 |
+
"train_batch_size": 2,
|
229 |
+
"trial_name": null,
|
230 |
+
"trial_params": null
|
231 |
+
}
|
checkpoint-1158/training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d6883f7bddac463224b30b640d4bcdb728811e649417230e91a9eb0e14992724
|
3 |
+
size 4728
|
handler.py
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from typing import Dict, List, Any
|
2 |
+
from transformers import AutoTokenizer, AutoModelForCausalLM, pipeline
|
3 |
+
import torch
|
4 |
+
from peft import PeftModel
|
5 |
+
import json
|
6 |
+
import os
|
7 |
+
|
8 |
+
|
9 |
+
class EndpointHandler():
|
10 |
+
def __init__(self, path=""):
|
11 |
+
base_model_path = json.load(open(os.path.join(path, "training_params.json")))["model"]
|
12 |
+
model = AutoModelForCausalLM.from_pretrained(
|
13 |
+
base_model_path,
|
14 |
+
torch_dtype=torch.float16,
|
15 |
+
low_cpu_mem_usage=True,
|
16 |
+
trust_remote_code=True,
|
17 |
+
device_map="auto",
|
18 |
+
)
|
19 |
+
tokenizer = AutoTokenizer.from_pretrained(base_model_path, trust_remote_code=True)
|
20 |
+
model = PeftModel.from_pretrained(model, path)
|
21 |
+
model = model.merge_and_unload()
|
22 |
+
self.pipeline = pipeline("text-generation", model=model, tokenizer=tokenizer)
|
23 |
+
|
24 |
+
def __call__(self, data: Any) -> List[List[Dict[str, float]]]:
|
25 |
+
inputs = data.pop("inputs", data)
|
26 |
+
parameters = data.pop("parameters", None)
|
27 |
+
if parameters is not None:
|
28 |
+
prediction = self.pipeline(inputs, **parameters)
|
29 |
+
else:
|
30 |
+
prediction = self.pipeline(inputs)
|
31 |
+
return prediction
|
requirements.txt
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
peft==0.7.1
|
2 |
+
transformers==4.36.1
|
runs/Jan26_18-18-48_r-colinw2292-writer-z6tg4mi9-b5869-b5qt7/events.out.tfevents.1706293130.r-colinw2292-writer-z6tg4mi9-b5869-b5qt7.102.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:bcd448036f70b5d16f404d82326b0989f429e35ab8fb203507bdd5fe980d8436
|
3 |
+
size 14954
|
special_tokens_map.json
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"additional_special_tokens": [
|
3 |
+
"<unk>",
|
4 |
+
"<s>",
|
5 |
+
"</s>"
|
6 |
+
],
|
7 |
+
"bos_token": {
|
8 |
+
"content": "<s>",
|
9 |
+
"lstrip": false,
|
10 |
+
"normalized": false,
|
11 |
+
"rstrip": false,
|
12 |
+
"single_word": false
|
13 |
+
},
|
14 |
+
"eos_token": {
|
15 |
+
"content": "</s>",
|
16 |
+
"lstrip": false,
|
17 |
+
"normalized": false,
|
18 |
+
"rstrip": false,
|
19 |
+
"single_word": false
|
20 |
+
},
|
21 |
+
"pad_token": "</s>",
|
22 |
+
"unk_token": {
|
23 |
+
"content": "<unk>",
|
24 |
+
"lstrip": false,
|
25 |
+
"normalized": false,
|
26 |
+
"rstrip": false,
|
27 |
+
"single_word": false
|
28 |
+
}
|
29 |
+
}
|
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,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"add_bos_token": true,
|
3 |
+
"add_eos_token": false,
|
4 |
+
"added_tokens_decoder": {
|
5 |
+
"0": {
|
6 |
+
"content": "<unk>",
|
7 |
+
"lstrip": false,
|
8 |
+
"normalized": false,
|
9 |
+
"rstrip": false,
|
10 |
+
"single_word": false,
|
11 |
+
"special": true
|
12 |
+
},
|
13 |
+
"1": {
|
14 |
+
"content": "<s>",
|
15 |
+
"lstrip": false,
|
16 |
+
"normalized": false,
|
17 |
+
"rstrip": false,
|
18 |
+
"single_word": false,
|
19 |
+
"special": true
|
20 |
+
},
|
21 |
+
"2": {
|
22 |
+
"content": "</s>",
|
23 |
+
"lstrip": false,
|
24 |
+
"normalized": false,
|
25 |
+
"rstrip": false,
|
26 |
+
"single_word": false,
|
27 |
+
"special": true
|
28 |
+
}
|
29 |
+
},
|
30 |
+
"additional_special_tokens": [
|
31 |
+
"<unk>",
|
32 |
+
"<s>",
|
33 |
+
"</s>"
|
34 |
+
],
|
35 |
+
"bos_token": "<s>",
|
36 |
+
"chat_template": "{% if not add_generation_prompt is defined %}{% set add_generation_prompt = false %}{% endif %}{% for message in messages %}{{'<|im_start|>' + message['role'] + '\n' + message['content'] + '<|im_end|>' + '\n'}}{% endfor %}{% if add_generation_prompt %}{{ '<|im_start|>assistant\n' }}{% endif %}",
|
37 |
+
"clean_up_tokenization_spaces": false,
|
38 |
+
"eos_token": "</s>",
|
39 |
+
"legacy": true,
|
40 |
+
"model_max_length": 2048,
|
41 |
+
"pad_token": "</s>",
|
42 |
+
"sp_model_kwargs": {},
|
43 |
+
"spaces_between_special_tokens": false,
|
44 |
+
"tokenizer_class": "LlamaTokenizer",
|
45 |
+
"unk_token": "<unk>",
|
46 |
+
"use_default_system_prompt": true
|
47 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d6883f7bddac463224b30b640d4bcdb728811e649417230e91a9eb0e14992724
|
3 |
+
size 4728
|
training_params.json
ADDED
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"model": "NousResearch/Yarn-Mistral-7b-128k",
|
3 |
+
"project_name": "Writer12",
|
4 |
+
"data_path": "Writer12/autotrain-data",
|
5 |
+
"train_split": "train",
|
6 |
+
"valid_split": null,
|
7 |
+
"add_eos_token": true,
|
8 |
+
"block_size": 1024,
|
9 |
+
"model_max_length": 2048,
|
10 |
+
"padding": "right",
|
11 |
+
"trainer": "dpo",
|
12 |
+
"use_flash_attention_2": false,
|
13 |
+
"log": "tensorboard",
|
14 |
+
"disable_gradient_checkpointing": false,
|
15 |
+
"logging_steps": -1,
|
16 |
+
"evaluation_strategy": "epoch",
|
17 |
+
"save_total_limit": 1,
|
18 |
+
"save_strategy": "epoch",
|
19 |
+
"auto_find_batch_size": false,
|
20 |
+
"mixed_precision": "fp16",
|
21 |
+
"lr": 3e-05,
|
22 |
+
"epochs": 3,
|
23 |
+
"batch_size": 2,
|
24 |
+
"warmup_ratio": 0.1,
|
25 |
+
"gradient_accumulation": 1,
|
26 |
+
"optimizer": "adamw_torch",
|
27 |
+
"scheduler": "linear",
|
28 |
+
"weight_decay": 0.0,
|
29 |
+
"max_grad_norm": 1.0,
|
30 |
+
"seed": 42,
|
31 |
+
"apply_chat_template": false,
|
32 |
+
"quantization": "int4",
|
33 |
+
"target_modules": "",
|
34 |
+
"merge_adapter": false,
|
35 |
+
"peft": true,
|
36 |
+
"lora_r": 16,
|
37 |
+
"lora_alpha": 32,
|
38 |
+
"lora_dropout": 0.05,
|
39 |
+
"model_ref": null,
|
40 |
+
"dpo_beta": 0.1,
|
41 |
+
"prompt_text_column": "autotrain_prompt",
|
42 |
+
"text_column": "autotrain_text",
|
43 |
+
"rejected_text_column": "autotrain_rejected_text",
|
44 |
+
"push_to_hub": true,
|
45 |
+
"repo_id": "colinw2292/Writer12",
|
46 |
+
"username": "colinw2292"
|
47 |
+
}
|