Views
No views yet
0.4.01base_model: winglian/meta-llama3-chatml
2model_type: LlamaForCausalLM
3tokenizer_type: AutoTokenizer
4
5load_in_4bit: true
6
7rl: orpo
8orpo_alpha: 0.1
9chat_template: chatml
10datasets:
11 - path: mlabonne/orpo-dpo-mix-40k
12 type: chat_template.argilla
13 chat_template: chatml
14
15dataset_prepared_path: last_run_prepared
16val_set_size: 0.01
17output_dir: ./llama-3-orpo-qlora
18
19sequence_len: 2048
20sample_packing: false
21pad_to_sequence_len: false
22
23adapter: qlora
24lora_r: 16
25lora_alpha: 32
26lora_dropout: 0.05
27lora_target_modules:
28 - q_proj
29 - k_proj
30 - v_proj
31 - o_proj
32 - gate_proj
33 - up_proj
34 - down_proj
35
36wandb_project: orpo-llama-3
37wandb_entity: oaaic
38wandb_watch:
39wandb_name:
40wandb_log_model:
41
42gradient_accumulation_steps: 4
43micro_batch_size: 8
44num_epochs: 1
45optimizer: paged_adamw_8bit
46lr_scheduler: cosine
47learning_rate: 1.4e-5
48max_grad_norm: 1.0
49
50train_on_inputs: false
51group_by_length: false
52bf16: true
53tf32: true
54
55gradient_checkpointing: true
56gradient_checkpointing_kwargs:
57 use_reentrant: true
58logging_steps: 1
59flash_attention: true
60
61warmup_steps: 10
62evals_per_epoch: 5
63saves_per_epoch: 1
64weight_decay: 0.0
65special_tokens:
66 pad_token: <|end_of_text|>
67