NeuralNovel commited on
Commit
31c4f62
1 Parent(s): eaa04ba

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +140 -0
README.md CHANGED
@@ -1,3 +1,143 @@
1
  ---
2
  license: apache-2.0
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ base_model: NeuralNovel/Gecko-7B-v0.1
4
+ tags:
5
+ - generated_from_trainer
6
+ model-index:
7
+ - name: out
8
+ results: []
9
  ---
10
+
11
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
12
+ should probably proofread and complete it, then remove this comment. -->
13
+
14
+ [<img src="https://raw.githubusercontent.com/OpenAccess-AI-Collective/axolotl/main/image/axolotl-badge-web.png" alt="Built with Axolotl" width="200" height="32"/>](https://github.com/OpenAccess-AI-Collective/axolotl)
15
+ <details><summary>See axolotl config</summary>
16
+
17
+ axolotl version: `0.3.0`
18
+ ```yaml
19
+ base_model: NeuralNovel/Gecko-7B-v0.1
20
+ model_type: MistralForCausalLM
21
+ tokenizer_type: LlamaTokenizer
22
+ is_mistral_derived_model: true
23
+
24
+ load_in_8bit: false
25
+ load_in_4bit: false
26
+ strict: false
27
+
28
+ datasets:
29
+ - path: Intel/orca_dpo_pairs
30
+ type:
31
+ system_prompt: ""
32
+ field_system: system
33
+ field_instruction: question
34
+ field_output: rejected
35
+ field_output: chosen
36
+ format: "[INST] {instruction} [/INST]"
37
+ no_input_format: "[INST] {instruction} [/INST]"
38
+
39
+ dataset_prepared_path:
40
+ val_set_size: 0.05
41
+ output_dir: ./out
42
+
43
+ sequence_len: 8192
44
+ sample_packing: true
45
+ pad_to_sequence_len: true
46
+ eval_sample_packing: false
47
+
48
+ wandb_project:
49
+ wandb_entity:
50
+ wandb_watch:
51
+ wandb_name:
52
+ wandb_log_model:
53
+
54
+ gradient_accumulation_steps: 4
55
+ micro_batch_size: 2
56
+ num_epochs: 1
57
+ optimizer: adamw_bnb_8bit
58
+ lr_scheduler: cosine
59
+ learning_rate: 0.000005
60
+
61
+ train_on_inputs: false
62
+ group_by_length: false
63
+ bf16: true
64
+ fp16: false
65
+ tf32: false
66
+
67
+ gradient_checkpointing: true
68
+ early_stopping_patience:
69
+ resume_from_checkpoint:
70
+ local_rank:
71
+ logging_steps: 1
72
+ xformers_attention:
73
+ flash_attention: true
74
+
75
+ warmup_steps: 10
76
+ evals_per_epoch: 4
77
+ eval_table_size:
78
+ eval_table_max_new_tokens: 128
79
+ saves_per_epoch: 1
80
+ debug:
81
+ deepspeed:
82
+ weight_decay: 0.0
83
+ fsdp:
84
+ fsdp_config:
85
+ special_tokens:
86
+ bos_token: "<s>"
87
+ eos_token: "</s>"
88
+ unk_token: "<unk>"
89
+
90
+ ```
91
+
92
+ </details><br>
93
+
94
+ # out
95
+
96
+ This model is a fine-tuned version of [NeuralNovel/Gecko-7B-v0.1](https://huggingface.co/NeuralNovel/Gecko-7B-v0.1) on the None dataset.
97
+ It achieves the following results on the evaluation set:
98
+ - Loss: 0.7924
99
+
100
+ ## Model description
101
+
102
+ More information needed
103
+
104
+ ## Intended uses & limitations
105
+
106
+ More information needed
107
+
108
+ ## Training and evaluation data
109
+
110
+ More information needed
111
+
112
+ ## Training procedure
113
+
114
+ ### Training hyperparameters
115
+
116
+ The following hyperparameters were used during training:
117
+ - learning_rate: 5e-06
118
+ - train_batch_size: 2
119
+ - eval_batch_size: 2
120
+ - seed: 42
121
+ - gradient_accumulation_steps: 4
122
+ - total_train_batch_size: 8
123
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
124
+ - lr_scheduler_type: cosine
125
+ - lr_scheduler_warmup_steps: 10
126
+ - num_epochs: 1
127
+
128
+ ### Training results
129
+
130
+ | Training Loss | Epoch | Step | Validation Loss |
131
+ |:-------------:|:-----:|:----:|:---------------:|
132
+ | 1.1108 | 0.01 | 1 | 1.2742 |
133
+ | 1.0158 | 0.26 | 19 | 0.8302 |
134
+ | 0.8999 | 0.51 | 38 | 0.8009 |
135
+ | 0.851 | 0.77 | 57 | 0.7924 |
136
+
137
+
138
+ ### Framework versions
139
+
140
+ - Transformers 4.37.0.dev0
141
+ - Pytorch 2.0.1+cu117
142
+ - Datasets 2.16.1
143
+ - Tokenizers 0.15.0