gagan3012 commited on
Commit
1673c6d
1 Parent(s): a7a362a

Upload folder using huggingface_hub

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. README.md +55 -0
  2. checkpoint-100/README.md +204 -0
  3. checkpoint-100/adapter_config.json +32 -0
  4. checkpoint-100/adapter_model.safetensors +3 -0
  5. checkpoint-100/optimizer.pt +3 -0
  6. checkpoint-100/pytorch_model.bin +3 -0
  7. checkpoint-100/rng_state.pth +3 -0
  8. checkpoint-100/scheduler.pt +3 -0
  9. checkpoint-100/special_tokens_map.json +24 -0
  10. checkpoint-100/tokenizer.json +0 -0
  11. checkpoint-100/tokenizer.model +3 -0
  12. checkpoint-100/tokenizer_config.json +44 -0
  13. checkpoint-100/trainer_state.json +629 -0
  14. checkpoint-100/training_args.bin +3 -0
  15. checkpoint-1000/README.md +204 -0
  16. checkpoint-1000/adapter_config.json +32 -0
  17. checkpoint-1000/adapter_model.safetensors +3 -0
  18. checkpoint-1000/optimizer.pt +3 -0
  19. checkpoint-1000/pytorch_model.bin +3 -0
  20. checkpoint-1000/rng_state.pth +3 -0
  21. checkpoint-1000/scheduler.pt +3 -0
  22. checkpoint-1000/special_tokens_map.json +24 -0
  23. checkpoint-1000/tokenizer.json +0 -0
  24. checkpoint-1000/tokenizer.model +3 -0
  25. checkpoint-1000/tokenizer_config.json +44 -0
  26. checkpoint-1000/trainer_state.json +0 -0
  27. checkpoint-1000/training_args.bin +3 -0
  28. checkpoint-1100/README.md +204 -0
  29. checkpoint-1100/adapter_config.json +32 -0
  30. checkpoint-1100/adapter_model.safetensors +3 -0
  31. checkpoint-1100/optimizer.pt +3 -0
  32. checkpoint-1100/pytorch_model.bin +3 -0
  33. checkpoint-1100/rng_state.pth +3 -0
  34. checkpoint-1100/scheduler.pt +3 -0
  35. checkpoint-1100/special_tokens_map.json +24 -0
  36. checkpoint-1100/tokenizer.json +0 -0
  37. checkpoint-1100/tokenizer.model +3 -0
  38. checkpoint-1100/tokenizer_config.json +44 -0
  39. checkpoint-1100/trainer_state.json +0 -0
  40. checkpoint-1100/training_args.bin +3 -0
  41. checkpoint-1200/README.md +204 -0
  42. checkpoint-1200/adapter_config.json +32 -0
  43. checkpoint-1200/adapter_model.safetensors +3 -0
  44. checkpoint-1200/optimizer.pt +3 -0
  45. checkpoint-1200/pytorch_model.bin +3 -0
  46. checkpoint-1200/rng_state.pth +3 -0
  47. checkpoint-1200/scheduler.pt +3 -0
  48. checkpoint-1200/special_tokens_map.json +24 -0
  49. checkpoint-1200/tokenizer.json +0 -0
  50. checkpoint-1200/tokenizer.model +3 -0
README.md ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: apache-2.0
5
+ tags:
6
+ - mistral
7
+ - Xenon-1
8
+ pipeline_tag: text-generation
9
+ ---
10
+ # Model Card for Xenon-1
11
+
12
+ Mistral-7B-v0.1 model fine-tuned on the Ultrafeedback dataset using techinques shown in the paper [Self-Rewarding Language Models](https://arxiv.org/abs/2401.10020).
13
+
14
+ ## Instruction format
15
+
16
+ In order to leverage instruction fine-tuning, your prompt should be surrounded by `[INST]` and `[/INST]` tokens. The very first instruction should begin with a begin of sentence id. The next instructions should not. The assistant generation will be ended by the end-of-sentence token id.
17
+
18
+ E.g.
19
+ ```
20
+ text = "<s>[INST] What is your favourite condiment? [/INST]"
21
+ "Well, I'm quite partial to a good squeeze of fresh lemon juice. It adds just the right amount of zesty flavour to whatever I'm cooking up in the kitchen!</s> "
22
+ "[INST] Do you have mayonnaise recipes? [/INST]"
23
+ ```
24
+
25
+ This format is available as a [chat template](https://huggingface.co/docs/transformers/main/chat_templating) via the `apply_chat_template()` method:
26
+
27
+ ```python
28
+ from transformers import AutoModelForCausalLM, AutoTokenizer
29
+
30
+ device = "cuda" # the device to load the model onto
31
+
32
+ model = AutoModelForCausalLM.from_pretrained("Xenon1/Xenon-1")
33
+ tokenizer = AutoTokenizer.from_pretrained("Xenon1/Xenon-1")
34
+
35
+ messages = [
36
+ {"role": "user", "content": "What is your favourite condiment?"},
37
+ {"role": "assistant", "content": "Well, I'm quite partial to a good squeeze of fresh lemon juice. It adds just the right amount of zesty flavour to whatever I'm cooking up in the kitchen!"},
38
+ {"role": "user", "content": "Do you have mayonnaise recipes?"}
39
+ ]
40
+
41
+ encodeds = tokenizer.apply_chat_template(messages, return_tensors="pt")
42
+
43
+ model_inputs = encodeds.to(device)
44
+ model.to(device)
45
+
46
+ generated_ids = model.generate(model_inputs, max_new_tokens=1000, do_sample=True)
47
+ decoded = tokenizer.batch_decode(generated_ids)
48
+ print(decoded[0])
49
+ ```
50
+
51
+ ## Model Architecture
52
+ This instruction model is based on Mistral-7B-v0.1, a transformer model with the following architecture choices:
53
+ - Grouped-Query Attention
54
+ - Sliding-Window Attention
55
+ - Byte-fallback BPE tokenizer
checkpoint-100/README.md ADDED
@@ -0,0 +1,204 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: peft
3
+ base_model: /lustre07/scratch/gagan30/arocr/meta-llama/models/Mistral-7B-Instruct-v0.2
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.2.dev0
checkpoint-100/adapter_config.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "/lustre07/scratch/gagan30/arocr/meta-llama/models/Mistral-7B-Instruct-v0.2",
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": 16,
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
+ "gate_proj",
23
+ "o_proj",
24
+ "up_proj",
25
+ "k_proj",
26
+ "q_proj",
27
+ "v_proj",
28
+ "down_proj"
29
+ ],
30
+ "task_type": "CAUSAL_LM",
31
+ "use_rslora": false
32
+ }
checkpoint-100/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8db30d43124c4be3419804c2616a14c3e7d9761cebd833ccc9fcbec1165636d1
3
+ size 167832240
checkpoint-100/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:627c43055ac9cea871b5ab97b6c9d13b6c9baa27839de91d9f2c99ab08189375
3
+ size 335812858
checkpoint-100/pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:049c26b844b79121ddd8379f7f69194e63f6fbf6aa007eeac0c66f17eebb8893
3
+ size 888
checkpoint-100/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c56dcce6c13c6de889d4aae7dc0f064812110912b08fde202e8fc80f391303a4
3
+ size 14244
checkpoint-100/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:99f313d651891833a418c6c44a20257c57488a10c304248878b8fe73a170b9e0
3
+ size 1064
checkpoint-100/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
+ }
checkpoint-100/tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-100/tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dadfd56d766715c61d2ef780a525ab43b8e6da4de6865bda3d95fdef5e134055
3
+ size 493443
checkpoint-100/tokenizer_config.json ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": true,
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
+ "bos_token": "<s>",
32
+ "chat_template": "{{ bos_token }}{% for message in messages %}{% if (message['role'] == 'user') != (loop.index0 % 2 == 0) %}{{ raise_exception('Conversation roles must alternate user/assistant/user/assistant/...') }}{% endif %}{% if message['role'] == 'user' %}{{ '[INST] ' + message['content'] + ' [/INST]' }}{% elif message['role'] == 'assistant' %}{{ message['content'] + eos_token}}{% else %}{{ raise_exception('Only user and assistant roles are supported!') }}{% endif %}{% endfor %}",
33
+ "clean_up_tokenization_spaces": false,
34
+ "eos_token": "</s>",
35
+ "legacy": true,
36
+ "model_max_length": 1000000000000000019884624838656,
37
+ "pad_token": "</s>",
38
+ "padding_side": "right",
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
+ }
checkpoint-100/trainer_state.json ADDED
@@ -0,0 +1,629 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_metric": null,
3
+ "best_model_checkpoint": null,
4
+ "epoch": 0.1902044698050404,
5
+ "eval_steps": 100,
6
+ "global_step": 100,
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.0,
13
+ "learning_rate": 5e-05,
14
+ "loss": 1.8229,
15
+ "step": 1
16
+ },
17
+ {
18
+ "epoch": 0.0,
19
+ "learning_rate": 4.9999950203346446e-05,
20
+ "loss": 1.8352,
21
+ "step": 2
22
+ },
23
+ {
24
+ "epoch": 0.01,
25
+ "learning_rate": 4.999980081358417e-05,
26
+ "loss": 1.742,
27
+ "step": 3
28
+ },
29
+ {
30
+ "epoch": 0.01,
31
+ "learning_rate": 4.999955183130829e-05,
32
+ "loss": 1.6315,
33
+ "step": 4
34
+ },
35
+ {
36
+ "epoch": 0.01,
37
+ "learning_rate": 4.999920325751068e-05,
38
+ "loss": 1.6204,
39
+ "step": 5
40
+ },
41
+ {
42
+ "epoch": 0.01,
43
+ "learning_rate": 4.999875509357998e-05,
44
+ "loss": 1.5485,
45
+ "step": 6
46
+ },
47
+ {
48
+ "epoch": 0.01,
49
+ "learning_rate": 4.999820734130155e-05,
50
+ "loss": 1.4713,
51
+ "step": 7
52
+ },
53
+ {
54
+ "epoch": 0.02,
55
+ "learning_rate": 4.999756000285748e-05,
56
+ "loss": 1.4675,
57
+ "step": 8
58
+ },
59
+ {
60
+ "epoch": 0.02,
61
+ "learning_rate": 4.9996813080826606e-05,
62
+ "loss": 1.5091,
63
+ "step": 9
64
+ },
65
+ {
66
+ "epoch": 0.02,
67
+ "learning_rate": 4.999596657818445e-05,
68
+ "loss": 1.4009,
69
+ "step": 10
70
+ },
71
+ {
72
+ "epoch": 0.02,
73
+ "learning_rate": 4.9995020498303275e-05,
74
+ "loss": 1.2992,
75
+ "step": 11
76
+ },
77
+ {
78
+ "epoch": 0.02,
79
+ "learning_rate": 4.999397484495198e-05,
80
+ "loss": 1.2111,
81
+ "step": 12
82
+ },
83
+ {
84
+ "epoch": 0.02,
85
+ "learning_rate": 4.99928296222962e-05,
86
+ "loss": 1.2281,
87
+ "step": 13
88
+ },
89
+ {
90
+ "epoch": 0.03,
91
+ "learning_rate": 4.999158483489818e-05,
92
+ "loss": 1.2099,
93
+ "step": 14
94
+ },
95
+ {
96
+ "epoch": 0.03,
97
+ "learning_rate": 4.99902404877168e-05,
98
+ "loss": 1.1259,
99
+ "step": 15
100
+ },
101
+ {
102
+ "epoch": 0.03,
103
+ "learning_rate": 4.998879658610761e-05,
104
+ "loss": 1.022,
105
+ "step": 16
106
+ },
107
+ {
108
+ "epoch": 0.03,
109
+ "learning_rate": 4.998725313582272e-05,
110
+ "loss": 1.1276,
111
+ "step": 17
112
+ },
113
+ {
114
+ "epoch": 0.03,
115
+ "learning_rate": 4.998561014301081e-05,
116
+ "loss": 1.1276,
117
+ "step": 18
118
+ },
119
+ {
120
+ "epoch": 0.04,
121
+ "learning_rate": 4.998386761421714e-05,
122
+ "loss": 1.2404,
123
+ "step": 19
124
+ },
125
+ {
126
+ "epoch": 0.04,
127
+ "learning_rate": 4.998202555638346e-05,
128
+ "loss": 1.1622,
129
+ "step": 20
130
+ },
131
+ {
132
+ "epoch": 0.04,
133
+ "learning_rate": 4.998008397684806e-05,
134
+ "loss": 1.1335,
135
+ "step": 21
136
+ },
137
+ {
138
+ "epoch": 0.04,
139
+ "learning_rate": 4.997804288334565e-05,
140
+ "loss": 1.2187,
141
+ "step": 22
142
+ },
143
+ {
144
+ "epoch": 0.04,
145
+ "learning_rate": 4.9975902284007405e-05,
146
+ "loss": 1.0678,
147
+ "step": 23
148
+ },
149
+ {
150
+ "epoch": 0.05,
151
+ "learning_rate": 4.997366218736091e-05,
152
+ "loss": 1.0195,
153
+ "step": 24
154
+ },
155
+ {
156
+ "epoch": 0.05,
157
+ "learning_rate": 4.99713226023301e-05,
158
+ "loss": 1.0138,
159
+ "step": 25
160
+ },
161
+ {
162
+ "epoch": 0.05,
163
+ "learning_rate": 4.9968883538235264e-05,
164
+ "loss": 1.0706,
165
+ "step": 26
166
+ },
167
+ {
168
+ "epoch": 0.05,
169
+ "learning_rate": 4.996634500479297e-05,
170
+ "loss": 0.9617,
171
+ "step": 27
172
+ },
173
+ {
174
+ "epoch": 0.05,
175
+ "learning_rate": 4.996370701211607e-05,
176
+ "loss": 1.034,
177
+ "step": 28
178
+ },
179
+ {
180
+ "epoch": 0.06,
181
+ "learning_rate": 4.996096957071361e-05,
182
+ "loss": 0.9952,
183
+ "step": 29
184
+ },
185
+ {
186
+ "epoch": 0.06,
187
+ "learning_rate": 4.9958132691490816e-05,
188
+ "loss": 0.9598,
189
+ "step": 30
190
+ },
191
+ {
192
+ "epoch": 0.06,
193
+ "learning_rate": 4.995519638574907e-05,
194
+ "loss": 1.0342,
195
+ "step": 31
196
+ },
197
+ {
198
+ "epoch": 0.06,
199
+ "learning_rate": 4.9952160665185825e-05,
200
+ "loss": 0.9147,
201
+ "step": 32
202
+ },
203
+ {
204
+ "epoch": 0.06,
205
+ "learning_rate": 4.994902554189458e-05,
206
+ "loss": 0.924,
207
+ "step": 33
208
+ },
209
+ {
210
+ "epoch": 0.06,
211
+ "learning_rate": 4.994579102836482e-05,
212
+ "loss": 0.9021,
213
+ "step": 34
214
+ },
215
+ {
216
+ "epoch": 0.07,
217
+ "learning_rate": 4.994245713748198e-05,
218
+ "loss": 1.0732,
219
+ "step": 35
220
+ },
221
+ {
222
+ "epoch": 0.07,
223
+ "learning_rate": 4.993902388252739e-05,
224
+ "loss": 0.926,
225
+ "step": 36
226
+ },
227
+ {
228
+ "epoch": 0.07,
229
+ "learning_rate": 4.9935491277178236e-05,
230
+ "loss": 0.9082,
231
+ "step": 37
232
+ },
233
+ {
234
+ "epoch": 0.07,
235
+ "learning_rate": 4.993185933550745e-05,
236
+ "loss": 0.8735,
237
+ "step": 38
238
+ },
239
+ {
240
+ "epoch": 0.07,
241
+ "learning_rate": 4.992812807198372e-05,
242
+ "loss": 1.0212,
243
+ "step": 39
244
+ },
245
+ {
246
+ "epoch": 0.08,
247
+ "learning_rate": 4.9924297501471414e-05,
248
+ "loss": 0.9495,
249
+ "step": 40
250
+ },
251
+ {
252
+ "epoch": 0.08,
253
+ "learning_rate": 4.9920367639230483e-05,
254
+ "loss": 0.9101,
255
+ "step": 41
256
+ },
257
+ {
258
+ "epoch": 0.08,
259
+ "learning_rate": 4.991633850091645e-05,
260
+ "loss": 1.0533,
261
+ "step": 42
262
+ },
263
+ {
264
+ "epoch": 0.08,
265
+ "learning_rate": 4.991221010258034e-05,
266
+ "loss": 0.8759,
267
+ "step": 43
268
+ },
269
+ {
270
+ "epoch": 0.08,
271
+ "learning_rate": 4.990798246066856e-05,
272
+ "loss": 0.969,
273
+ "step": 44
274
+ },
275
+ {
276
+ "epoch": 0.09,
277
+ "learning_rate": 4.9903655592022916e-05,
278
+ "loss": 0.8463,
279
+ "step": 45
280
+ },
281
+ {
282
+ "epoch": 0.09,
283
+ "learning_rate": 4.9899229513880494e-05,
284
+ "loss": 0.844,
285
+ "step": 46
286
+ },
287
+ {
288
+ "epoch": 0.09,
289
+ "learning_rate": 4.989470424387361e-05,
290
+ "loss": 0.8386,
291
+ "step": 47
292
+ },
293
+ {
294
+ "epoch": 0.09,
295
+ "learning_rate": 4.989007980002973e-05,
296
+ "loss": 0.93,
297
+ "step": 48
298
+ },
299
+ {
300
+ "epoch": 0.09,
301
+ "learning_rate": 4.988535620077138e-05,
302
+ "loss": 0.8551,
303
+ "step": 49
304
+ },
305
+ {
306
+ "epoch": 0.1,
307
+ "learning_rate": 4.988053346491613e-05,
308
+ "loss": 0.8633,
309
+ "step": 50
310
+ },
311
+ {
312
+ "epoch": 0.1,
313
+ "learning_rate": 4.987561161167648e-05,
314
+ "loss": 0.9056,
315
+ "step": 51
316
+ },
317
+ {
318
+ "epoch": 0.1,
319
+ "learning_rate": 4.9870590660659755e-05,
320
+ "loss": 0.9366,
321
+ "step": 52
322
+ },
323
+ {
324
+ "epoch": 0.1,
325
+ "learning_rate": 4.986547063186808e-05,
326
+ "loss": 1.0469,
327
+ "step": 53
328
+ },
329
+ {
330
+ "epoch": 0.1,
331
+ "learning_rate": 4.98602515456983e-05,
332
+ "loss": 0.8723,
333
+ "step": 54
334
+ },
335
+ {
336
+ "epoch": 0.1,
337
+ "learning_rate": 4.985493342294184e-05,
338
+ "loss": 0.9484,
339
+ "step": 55
340
+ },
341
+ {
342
+ "epoch": 0.11,
343
+ "learning_rate": 4.9849516284784676e-05,
344
+ "loss": 0.8346,
345
+ "step": 56
346
+ },
347
+ {
348
+ "epoch": 0.11,
349
+ "learning_rate": 4.984400015280724e-05,
350
+ "loss": 0.789,
351
+ "step": 57
352
+ },
353
+ {
354
+ "epoch": 0.11,
355
+ "learning_rate": 4.983838504898433e-05,
356
+ "loss": 0.8986,
357
+ "step": 58
358
+ },
359
+ {
360
+ "epoch": 0.11,
361
+ "learning_rate": 4.9832670995685006e-05,
362
+ "loss": 0.8799,
363
+ "step": 59
364
+ },
365
+ {
366
+ "epoch": 0.11,
367
+ "learning_rate": 4.9826858015672536e-05,
368
+ "loss": 0.9028,
369
+ "step": 60
370
+ },
371
+ {
372
+ "epoch": 0.12,
373
+ "learning_rate": 4.982094613210428e-05,
374
+ "loss": 0.8908,
375
+ "step": 61
376
+ },
377
+ {
378
+ "epoch": 0.12,
379
+ "learning_rate": 4.9814935368531586e-05,
380
+ "loss": 0.8273,
381
+ "step": 62
382
+ },
383
+ {
384
+ "epoch": 0.12,
385
+ "learning_rate": 4.980882574889973e-05,
386
+ "loss": 0.784,
387
+ "step": 63
388
+ },
389
+ {
390
+ "epoch": 0.12,
391
+ "learning_rate": 4.980261729754781e-05,
392
+ "loss": 0.9336,
393
+ "step": 64
394
+ },
395
+ {
396
+ "epoch": 0.12,
397
+ "learning_rate": 4.9796310039208623e-05,
398
+ "loss": 0.8943,
399
+ "step": 65
400
+ },
401
+ {
402
+ "epoch": 0.13,
403
+ "learning_rate": 4.978990399900861e-05,
404
+ "loss": 1.1,
405
+ "step": 66
406
+ },
407
+ {
408
+ "epoch": 0.13,
409
+ "learning_rate": 4.9783399202467714e-05,
410
+ "loss": 0.877,
411
+ "step": 67
412
+ },
413
+ {
414
+ "epoch": 0.13,
415
+ "learning_rate": 4.9776795675499296e-05,
416
+ "loss": 0.8291,
417
+ "step": 68
418
+ },
419
+ {
420
+ "epoch": 0.13,
421
+ "learning_rate": 4.9770093444410046e-05,
422
+ "loss": 0.7997,
423
+ "step": 69
424
+ },
425
+ {
426
+ "epoch": 0.13,
427
+ "learning_rate": 4.9763292535899866e-05,
428
+ "loss": 0.7911,
429
+ "step": 70
430
+ },
431
+ {
432
+ "epoch": 0.14,
433
+ "learning_rate": 4.9756392977061736e-05,
434
+ "loss": 0.8996,
435
+ "step": 71
436
+ },
437
+ {
438
+ "epoch": 0.14,
439
+ "learning_rate": 4.974939479538166e-05,
440
+ "loss": 0.8631,
441
+ "step": 72
442
+ },
443
+ {
444
+ "epoch": 0.14,
445
+ "learning_rate": 4.974229801873854e-05,
446
+ "loss": 0.8303,
447
+ "step": 73
448
+ },
449
+ {
450
+ "epoch": 0.14,
451
+ "learning_rate": 4.9735102675404004e-05,
452
+ "loss": 0.8708,
453
+ "step": 74
454
+ },
455
+ {
456
+ "epoch": 0.14,
457
+ "learning_rate": 4.972780879404239e-05,
458
+ "loss": 0.998,
459
+ "step": 75
460
+ },
461
+ {
462
+ "epoch": 0.14,
463
+ "learning_rate": 4.972041640371056e-05,
464
+ "loss": 1.1049,
465
+ "step": 76
466
+ },
467
+ {
468
+ "epoch": 0.15,
469
+ "learning_rate": 4.971292553385783e-05,
470
+ "loss": 0.774,
471
+ "step": 77
472
+ },
473
+ {
474
+ "epoch": 0.15,
475
+ "learning_rate": 4.970533621432581e-05,
476
+ "loss": 0.8142,
477
+ "step": 78
478
+ },
479
+ {
480
+ "epoch": 0.15,
481
+ "learning_rate": 4.969764847534832e-05,
482
+ "loss": 0.9968,
483
+ "step": 79
484
+ },
485
+ {
486
+ "epoch": 0.15,
487
+ "learning_rate": 4.9689862347551255e-05,
488
+ "loss": 0.9622,
489
+ "step": 80
490
+ },
491
+ {
492
+ "epoch": 0.15,
493
+ "learning_rate": 4.9681977861952464e-05,
494
+ "loss": 0.8342,
495
+ "step": 81
496
+ },
497
+ {
498
+ "epoch": 0.16,
499
+ "learning_rate": 4.967399504996162e-05,
500
+ "loss": 0.9,
501
+ "step": 82
502
+ },
503
+ {
504
+ "epoch": 0.16,
505
+ "learning_rate": 4.966591394338012e-05,
506
+ "loss": 0.8515,
507
+ "step": 83
508
+ },
509
+ {
510
+ "epoch": 0.16,
511
+ "learning_rate": 4.965773457440092e-05,
512
+ "loss": 0.7937,
513
+ "step": 84
514
+ },
515
+ {
516
+ "epoch": 0.16,
517
+ "learning_rate": 4.964945697560844e-05,
518
+ "loss": 0.9577,
519
+ "step": 85
520
+ },
521
+ {
522
+ "epoch": 0.16,
523
+ "learning_rate": 4.9641081179978424e-05,
524
+ "loss": 0.8233,
525
+ "step": 86
526
+ },
527
+ {
528
+ "epoch": 0.17,
529
+ "learning_rate": 4.963260722087779e-05,
530
+ "loss": 0.9769,
531
+ "step": 87
532
+ },
533
+ {
534
+ "epoch": 0.17,
535
+ "learning_rate": 4.9624035132064526e-05,
536
+ "loss": 0.8927,
537
+ "step": 88
538
+ },
539
+ {
540
+ "epoch": 0.17,
541
+ "learning_rate": 4.961536494768754e-05,
542
+ "loss": 0.9383,
543
+ "step": 89
544
+ },
545
+ {
546
+ "epoch": 0.17,
547
+ "learning_rate": 4.960659670228652e-05,
548
+ "loss": 0.9177,
549
+ "step": 90
550
+ },
551
+ {
552
+ "epoch": 0.17,
553
+ "learning_rate": 4.959773043079181e-05,
554
+ "loss": 0.8026,
555
+ "step": 91
556
+ },
557
+ {
558
+ "epoch": 0.17,
559
+ "learning_rate": 4.958876616852427e-05,
560
+ "loss": 0.9647,
561
+ "step": 92
562
+ },
563
+ {
564
+ "epoch": 0.18,
565
+ "learning_rate": 4.9579703951195113e-05,
566
+ "loss": 0.7545,
567
+ "step": 93
568
+ },
569
+ {
570
+ "epoch": 0.18,
571
+ "learning_rate": 4.957054381490579e-05,
572
+ "loss": 0.7836,
573
+ "step": 94
574
+ },
575
+ {
576
+ "epoch": 0.18,
577
+ "learning_rate": 4.9561285796147824e-05,
578
+ "loss": 0.8803,
579
+ "step": 95
580
+ },
581
+ {
582
+ "epoch": 0.18,
583
+ "learning_rate": 4.955192993180269e-05,
584
+ "loss": 0.8988,
585
+ "step": 96
586
+ },
587
+ {
588
+ "epoch": 0.18,
589
+ "learning_rate": 4.9542476259141656e-05,
590
+ "loss": 0.8418,
591
+ "step": 97
592
+ },
593
+ {
594
+ "epoch": 0.19,
595
+ "learning_rate": 4.953292481582561e-05,
596
+ "loss": 0.9004,
597
+ "step": 98
598
+ },
599
+ {
600
+ "epoch": 0.19,
601
+ "learning_rate": 4.9523275639904944e-05,
602
+ "loss": 0.9159,
603
+ "step": 99
604
+ },
605
+ {
606
+ "epoch": 0.19,
607
+ "learning_rate": 4.951352876981939e-05,
608
+ "loss": 0.7605,
609
+ "step": 100
610
+ },
611
+ {
612
+ "epoch": 0.19,
613
+ "eval_loss": 0.7751120924949646,
614
+ "eval_runtime": 2.7398,
615
+ "eval_samples_per_second": 3.285,
616
+ "eval_steps_per_second": 0.73,
617
+ "step": 100
618
+ }
619
+ ],
620
+ "logging_steps": 1,
621
+ "max_steps": 1575,
622
+ "num_input_tokens_seen": 0,
623
+ "num_train_epochs": 3,
624
+ "save_steps": 100,
625
+ "total_flos": 1.406258997362688e+17,
626
+ "train_batch_size": 4,
627
+ "trial_name": null,
628
+ "trial_params": null
629
+ }
checkpoint-100/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:186c0a450e609536e54ef331f8f8b53b2280cef58ba4e35a941dd2af386936ff
3
+ size 4856
checkpoint-1000/README.md ADDED
@@ -0,0 +1,204 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: peft
3
+ base_model: /lustre07/scratch/gagan30/arocr/meta-llama/models/Mistral-7B-Instruct-v0.2
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.2.dev0
checkpoint-1000/adapter_config.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "/lustre07/scratch/gagan30/arocr/meta-llama/models/Mistral-7B-Instruct-v0.2",
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": 16,
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
+ "gate_proj",
23
+ "o_proj",
24
+ "up_proj",
25
+ "k_proj",
26
+ "q_proj",
27
+ "v_proj",
28
+ "down_proj"
29
+ ],
30
+ "task_type": "CAUSAL_LM",
31
+ "use_rslora": false
32
+ }
checkpoint-1000/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:315c5e7288eaca96c01b23a0c127d77b2016da4ab20d1655faee48340e3100c1
3
+ size 167832240
checkpoint-1000/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3c50f59cd4cb577b3af9aff0a1e5e9f90698f5bf4566ede1db796dbcb43806ba
3
+ size 335813306
checkpoint-1000/pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:049c26b844b79121ddd8379f7f69194e63f6fbf6aa007eeac0c66f17eebb8893
3
+ size 888
checkpoint-1000/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f425b2be7cd47dc59345cb67ddee112e8f7aef7e3bc14fc827e571ca9a023f7d
3
+ size 14244
checkpoint-1000/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fbca42256f2053d4205af9138e1242dd9e46b1d078e7f312ab866ef501803054
3
+ size 1064
checkpoint-1000/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
+ }
checkpoint-1000/tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-1000/tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dadfd56d766715c61d2ef780a525ab43b8e6da4de6865bda3d95fdef5e134055
3
+ size 493443
checkpoint-1000/tokenizer_config.json ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": true,
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
+ "bos_token": "<s>",
32
+ "chat_template": "{{ bos_token }}{% for message in messages %}{% if (message['role'] == 'user') != (loop.index0 % 2 == 0) %}{{ raise_exception('Conversation roles must alternate user/assistant/user/assistant/...') }}{% endif %}{% if message['role'] == 'user' %}{{ '[INST] ' + message['content'] + ' [/INST]' }}{% elif message['role'] == 'assistant' %}{{ message['content'] + eos_token}}{% else %}{{ raise_exception('Only user and assistant roles are supported!') }}{% endif %}{% endfor %}",
33
+ "clean_up_tokenization_spaces": false,
34
+ "eos_token": "</s>",
35
+ "legacy": true,
36
+ "model_max_length": 1000000000000000019884624838656,
37
+ "pad_token": "</s>",
38
+ "padding_side": "right",
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
+ }
checkpoint-1000/trainer_state.json ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-1000/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:186c0a450e609536e54ef331f8f8b53b2280cef58ba4e35a941dd2af386936ff
3
+ size 4856
checkpoint-1100/README.md ADDED
@@ -0,0 +1,204 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: peft
3
+ base_model: /lustre07/scratch/gagan30/arocr/meta-llama/models/Mistral-7B-Instruct-v0.2
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.2.dev0
checkpoint-1100/adapter_config.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "/lustre07/scratch/gagan30/arocr/meta-llama/models/Mistral-7B-Instruct-v0.2",
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": 16,
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
+ "gate_proj",
23
+ "o_proj",
24
+ "up_proj",
25
+ "k_proj",
26
+ "q_proj",
27
+ "v_proj",
28
+ "down_proj"
29
+ ],
30
+ "task_type": "CAUSAL_LM",
31
+ "use_rslora": false
32
+ }
checkpoint-1100/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:266527bac1dc6c205c9ea115610e2de0418e44732981c33f171bad5eadc78651
3
+ size 167832240
checkpoint-1100/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e300a4e54bf40b39e75dd68ffb4f5a2c20f37b2e5453cff6ffe213f97ab5b9f
3
+ size 335813306
checkpoint-1100/pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:049c26b844b79121ddd8379f7f69194e63f6fbf6aa007eeac0c66f17eebb8893
3
+ size 888
checkpoint-1100/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d35cee793a6cb9563c545149eeab23a4d47bf51e90ff719df7a2c5c9f908e844
3
+ size 14244
checkpoint-1100/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:66b7a339b04f916b964892a0ce49f216632ab91980c40e33429e3fdc71f65f58
3
+ size 1064
checkpoint-1100/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
+ }
checkpoint-1100/tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-1100/tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dadfd56d766715c61d2ef780a525ab43b8e6da4de6865bda3d95fdef5e134055
3
+ size 493443
checkpoint-1100/tokenizer_config.json ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": true,
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
+ "bos_token": "<s>",
32
+ "chat_template": "{{ bos_token }}{% for message in messages %}{% if (message['role'] == 'user') != (loop.index0 % 2 == 0) %}{{ raise_exception('Conversation roles must alternate user/assistant/user/assistant/...') }}{% endif %}{% if message['role'] == 'user' %}{{ '[INST] ' + message['content'] + ' [/INST]' }}{% elif message['role'] == 'assistant' %}{{ message['content'] + eos_token}}{% else %}{{ raise_exception('Only user and assistant roles are supported!') }}{% endif %}{% endfor %}",
33
+ "clean_up_tokenization_spaces": false,
34
+ "eos_token": "</s>",
35
+ "legacy": true,
36
+ "model_max_length": 1000000000000000019884624838656,
37
+ "pad_token": "</s>",
38
+ "padding_side": "right",
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
+ }
checkpoint-1100/trainer_state.json ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-1100/training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:186c0a450e609536e54ef331f8f8b53b2280cef58ba4e35a941dd2af386936ff
3
+ size 4856
checkpoint-1200/README.md ADDED
@@ -0,0 +1,204 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: peft
3
+ base_model: /lustre07/scratch/gagan30/arocr/meta-llama/models/Mistral-7B-Instruct-v0.2
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.2.dev0
checkpoint-1200/adapter_config.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "/lustre07/scratch/gagan30/arocr/meta-llama/models/Mistral-7B-Instruct-v0.2",
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": 16,
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
+ "gate_proj",
23
+ "o_proj",
24
+ "up_proj",
25
+ "k_proj",
26
+ "q_proj",
27
+ "v_proj",
28
+ "down_proj"
29
+ ],
30
+ "task_type": "CAUSAL_LM",
31
+ "use_rslora": false
32
+ }
checkpoint-1200/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:157f177e1dcdfbfeb09a378154847be7a56e7a6bef8ded7c00400202f339ba51
3
+ size 167832240
checkpoint-1200/optimizer.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b54deabc67f741f43e29ba25d7f09e6138b854630b6b42a836222762edebefea
3
+ size 335813306
checkpoint-1200/pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:049c26b844b79121ddd8379f7f69194e63f6fbf6aa007eeac0c66f17eebb8893
3
+ size 888
checkpoint-1200/rng_state.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:86e34c9ef1c024e3c432b1d44421bda22d7b2e39657eb46f115b2806793f6dfb
3
+ size 14244
checkpoint-1200/scheduler.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2e9af18884e326b1a7db678739947b9bfba6c4f20642bb8c9f239e796ada9244
3
+ size 1064
checkpoint-1200/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
+ }
checkpoint-1200/tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
checkpoint-1200/tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dadfd56d766715c61d2ef780a525ab43b8e6da4de6865bda3d95fdef5e134055
3
+ size 493443