dancingninjas
commited on
Commit
•
05d4dc8
1
Parent(s):
70e139c
Upload model
Browse files- README.md +80 -0
- adapter_config.json +32 -0
- adapter_model.safetensors +3 -0
README.md
ADDED
@@ -0,0 +1,80 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
library_name: peft
|
4 |
+
tags:
|
5 |
+
- trl
|
6 |
+
- sft
|
7 |
+
- generated_from_trainer
|
8 |
+
base_model: mistralai/Mistral-7B-Instruct-v0.2
|
9 |
+
model-index:
|
10 |
+
- name: mistral-7b-Javelin-small
|
11 |
+
results: []
|
12 |
+
---
|
13 |
+
|
14 |
+
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
15 |
+
should probably proofread and complete it, then remove this comment. -->
|
16 |
+
|
17 |
+
# mistral-7b-Javelin-small
|
18 |
+
|
19 |
+
This model is a fine-tuned version of [mistralai/Mistral-7B-Instruct-v0.2](https://huggingface.co/mistralai/Mistral-7B-Instruct-v0.2) on the None dataset.
|
20 |
+
It achieves the following results on the evaluation set:
|
21 |
+
- Loss: 1.2137
|
22 |
+
|
23 |
+
## Model description
|
24 |
+
|
25 |
+
More information needed
|
26 |
+
|
27 |
+
## Intended uses & limitations
|
28 |
+
|
29 |
+
More information needed
|
30 |
+
|
31 |
+
## Training and evaluation data
|
32 |
+
|
33 |
+
More information needed
|
34 |
+
|
35 |
+
## Training procedure
|
36 |
+
|
37 |
+
### Training hyperparameters
|
38 |
+
|
39 |
+
The following hyperparameters were used during training:
|
40 |
+
- learning_rate: 0.0002
|
41 |
+
- train_batch_size: 4
|
42 |
+
- eval_batch_size: 8
|
43 |
+
- seed: 42
|
44 |
+
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
|
45 |
+
- lr_scheduler_type: linear
|
46 |
+
- training_steps: 20
|
47 |
+
|
48 |
+
### Training results
|
49 |
+
|
50 |
+
| Training Loss | Epoch | Step | Validation Loss |
|
51 |
+
|:-------------:|:-----:|:----:|:---------------:|
|
52 |
+
| 2.3516 | 0.07 | 1 | 2.0247 |
|
53 |
+
| 2.0225 | 0.14 | 2 | 1.8721 |
|
54 |
+
| 1.7928 | 0.21 | 3 | 1.8193 |
|
55 |
+
| 1.7108 | 0.29 | 4 | 1.7804 |
|
56 |
+
| 1.6954 | 0.36 | 5 | 1.7180 |
|
57 |
+
| 1.6487 | 0.43 | 6 | 1.6507 |
|
58 |
+
| 1.4139 | 0.5 | 7 | 1.5918 |
|
59 |
+
| 1.4606 | 0.57 | 8 | 1.5408 |
|
60 |
+
| 1.3855 | 0.64 | 9 | 1.5004 |
|
61 |
+
| 1.4993 | 0.71 | 10 | 1.4576 |
|
62 |
+
| 1.3484 | 0.79 | 11 | 1.4155 |
|
63 |
+
| 1.6875 | 0.86 | 12 | 1.3773 |
|
64 |
+
| 1.2003 | 0.93 | 13 | 1.3420 |
|
65 |
+
| 1.4851 | 1.0 | 14 | 1.3123 |
|
66 |
+
| 1.5295 | 1.07 | 15 | 1.2891 |
|
67 |
+
| 1.0738 | 1.14 | 16 | 1.2648 |
|
68 |
+
| 1.2737 | 1.21 | 17 | 1.2451 |
|
69 |
+
| 1.2225 | 1.29 | 18 | 1.2304 |
|
70 |
+
| 1.0444 | 1.36 | 19 | 1.2194 |
|
71 |
+
| 1.0923 | 1.43 | 20 | 1.2137 |
|
72 |
+
|
73 |
+
|
74 |
+
### Framework versions
|
75 |
+
|
76 |
+
- PEFT 0.7.1
|
77 |
+
- Transformers 4.36.2
|
78 |
+
- Pytorch 2.0.0
|
79 |
+
- Datasets 2.16.1
|
80 |
+
- Tokenizers 0.15.0
|
adapter_config.json
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"alpha_pattern": {},
|
3 |
+
"auto_mapping": null,
|
4 |
+
"base_model_name_or_path": "mistralai/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": 8,
|
19 |
+
"rank_pattern": {},
|
20 |
+
"revision": null,
|
21 |
+
"target_modules": [
|
22 |
+
"k_proj",
|
23 |
+
"down_proj",
|
24 |
+
"up_proj",
|
25 |
+
"lm_head",
|
26 |
+
"gate_proj",
|
27 |
+
"v_proj",
|
28 |
+
"q_proj",
|
29 |
+
"o_proj"
|
30 |
+
],
|
31 |
+
"task_type": "CAUSAL_LM"
|
32 |
+
}
|
adapter_model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:74a0c92ae7c92bba6823d0b018b94b29fb3389972323f8cb32ab0e87c8eb2388
|
3 |
+
size 609389712
|