Views
No views yet
0.4.11base_model: meta-llama/Meta-Llama-3-8B
2model_type: AutoModelForCausalLM
3tokenizer_type: AutoTokenizer
4
5load_in_8bit: false
6load_in_4bit: true
7strict: false
8
9datasets:
10 # This will be the path used for the data when it is saved to the Volume in the cloud.
11 - path: "data/recipe_training_dataset.jsonl"
12 ds_type: "json"
13 type:
14 # JSONL file contains question, context, answer fields per line.
15 # This gets mapped to instruction, input, output axolotl tags.
16 field_instruction: system
17 field_input: user
18 field_output: assistant
19 # Format is used by axolotl to generate the prompt.
20 format: |-
21 {instruction}
22 {input}
23dataset_prepared_path:
24val_set_size: 0
25output_dir: ./outputs/qlora-out
26
27adapter: qlora
28lora_model_dir:
29
30sequence_len: 4096
31sample_packing: true
32pad_to_sequence_len: true
33
34lora_r: 32
35lora_alpha: 16
36lora_dropout: 0.05
37lora_target_modules:
38lora_target_linear: true
39lora_fan_in_fan_out:
40
41wandb_project:
42wandb_entity:
43wandb_watch:
44wandb_name:
45wandb_log_model:
46
47gradient_accumulation_steps: 4
48micro_batch_size: 2
49num_epochs: 1
50optimizer: paged_adamw_32bit
51lr_scheduler: cosine
52learning_rate: 0.0002
53
54train_on_inputs: false
55group_by_length: false
56bf16: auto
57fp16:
58tf32: false
59
60gradient_checkpointing: true
61early_stopping_patience:
62resume_from_checkpoint:
63local_rank:
64logging_steps: 1
65xformers_attention:
66flash_attention: true
67
68warmup_steps: 10
69evals_per_epoch: 4
70eval_table_size:
71saves_per_epoch: 1
72debug:
73deepspeed:
74weight_decay: 0.0
75fsdp:
76fsdp_config:
77special_tokens:
78 pad_token: "<|end_of_text|>"
79
80hub_model_id: esha111/recipe-generator