Views
No views yet

8xMI300X using axolotl.0.4.01base_model: Qwen/Qwen2-7B
2model_type: AutoModelForCausalLM
3tokenizer_type: AutoTokenizer
4
5load_in_8bit: false
6load_in_4bit: false
7strict: false
8
9chat_template: chatml
10datasets:
11 - path: data/airoboros_3.2_without_contextual_slimorca_orca_sharegpt.json
12 ds_type: json
13 type: sharegpt
14 conversation: chatml
15
16 - path: data/allenai_wild_chat_gpt4_english_toxic_random_half_4k_sharegpt.json
17 ds_type: json
18 type: sharegpt
19 strict: false
20 conversation: chatml
21
22 - path: data/buzz_unstacked_chosen_math_removed_filtered.json
23 ds_type: json
24 type: alpaca
25 conversation: chatml
26
27 - path: data/capybara_sharegpt.json
28 ds_type: json
29 type: sharegpt
30 conversation: chatml
31
32 - path: data/cot_alpaca_gpt4_extracted_openhermes_2.5_sharegpt.json
33 ds_type: json
34 type: sharegpt
35 conversation: chatml
36
37 - path: data/everythinglm-data-v3_sharegpt.json
38 ds_type: json
39 type: sharegpt
40 strict: false
41 conversation: chatml
42
43 - path: data/gpt4_data_lmys_1m_sharegpt.json
44 ds_type: json
45 type: sharegpt
46 conversation: chatml
47
48 - path: data/gpteacher-instruct-special-alpaca.json
49 ds_type: json
50 type: gpteacher
51 conversation: chatml
52
53 - path: data/merged_all.json
54 ds_type: json
55 type: alpaca
56 conversation: chatml
57
58 - path: data/no_robots_sharegpt.json
59 ds_type: json
60 type: sharegpt
61 strict: false
62 conversation: chatml
63
64 - path: data/oasst_top1_from_fusechatmixture_sharegpt.json
65 ds_type: json
66 type: sharegpt
67 strict: false
68 conversation: chatml
69
70 - path: data/pippa_bagel_repo_3k_sharegpt.json
71 ds_type: json
72 type: sharegpt
73 conversation: chatml
74
75 - path: data/rpguild_quarter_alignment_lab_sharegpt.json
76 ds_type: json
77 type: sharegpt
78 conversation: chatml
79
80 - path: data/sharegpt_gpt4_english.json
81 ds_type: json
82 type: sharegpt
83 conversation: chatml
84
85 - path: data/slimorca_dedup_filtered_95k_sharegpt.json
86 ds_type: json
87 type: sharegpt
88 conversation: chatml
89
90 - path: data/soda_diaolog_longest_tenth_buzz_sharegpt.json
91 ds_type: json
92 type: sharegpt
93 conversation: chatml
94
95 - path: data/synthia-v1.3_sharegpt_12500.json
96 ds_type: json
97 type: sharegpt
98 conversation: chatml
99
100 - path: data/system_conversations_dolphin_sharegpt.json
101 ds_type: json
102 type: sharegpt
103 conversation: chatml
104
105dataset_prepared_path: last_run_prepared
106val_set_size: 0.002
107
108output_dir: ./Einstein-v7-Qwen2-7B-model
109
110sequence_len: 8192
111sample_packing: true
112pad_to_sequence_len: true
113eval_sample_packing: false
114
115wandb_project: Einstein
116wandb_entity:
117wandb_watch:
118wandb_name:
119wandb_log_model:
120hub_model_id: Weyaxi/Einstein-v7-Qwen2-7B
121
122gradient_accumulation_steps: 4
123micro_batch_size: 6
124num_epochs: 2
125optimizer: paged_adamw_8bit
126lr_scheduler: cosine
127learning_rate: 0.00001 # look
128
129train_on_inputs: false
130group_by_length: false
131bf16: auto
132fp16:
133tf32: false
134
135gradient_checkpointing: unsloth
136gradient_checkpointing_kwargs:
137 use_reentrant: true # look
138early_stopping_patience:
139resume_from_checkpoint:
140local_rank:
141logging_steps: 1
142xformers_attention:
143flash_attention: true
144
145warmup_steps: 10
146evals_per_epoch: 2
147eval_table_size:
148eval_max_new_tokens: 128
149saves_per_epoch: 1
150debug:
151
152deepspeed: deepspeed_configs/zero3_bf16.json
153weight_decay: 0.05
154fsdp:
155fsdp_config:
156special_tokens:
157 eos_token: "<|im_end|>"
158 pad_token: "<|end_of_text|>"
159tokens:
160 - "<|im_start|>"
161 - "<|im_end|>"<|im_start|>system
{system}<|im_end|>
<|im_start|>user
{user}<|im_end|>
<|im_start|>assistant
{asistant}<|im_end|>tokenizer.apply_chat_template() method:1messages = [
2 {"role": "system", "content": "You are helpful AI asistant."},
3 {"role": "user", "content": "Hello!"}
4]
5gen_input = tokenizer.apply_chat_template(message, return_tensors="pt")
6model.generate(**gen_input)