Views
No views yet
0.8.0.dev01# === Model Configuration ===
2base_model: unsloth/Llama-3.3-70B-Instruct
3load_in_8bit: false
4load_in_4bit: true
5
6# === Training Setup ===
7num_epochs: 2
8micro_batch_size: 2
9gradient_accumulation_steps: 1
10sequence_len: 8192
11sample_packing: true
12pad_to_sequence_len: true
13
14# === Hyperparameter Configuration ===
15optimizer: came_pytorch
16learning_rate: 1e-5
17lr_scheduler: rex
18weight_decay: 0.01
19warmup_steps: 0
20cosine_min_lr_ratio: 0.1
21
22# === LoRA Configuration ===
23adapter: qlora
24lora_r: 16
25lora_alpha: 32
26lora_dropout: 0.25
27lora_target_modules:
28lora_target_linear: true
29
30# === Data Configuration ===
31chat_template: llama3
32datasets:
33 - path: allura-org/inkmix-v2.1
34 type: chat_template
35 split: train
36 field_messages: conversations
37 message_field_role: from
38 message_field_content: value
39
40dataset_prepared_path: last_run_prepared
41
42# === Plugins ===
43plugins:
44 - axolotl.integrations.liger.LigerPlugin
45 - axolotl.integrations.cut_cross_entropy.CutCrossEntropyPlugin
46
47# === Hardware Optimization ===
48gradient_checkpointing: unsloth
49gradient_checkpointing_kwargs:
50 use_reentrant: false
51liger_rope: true
52liger_rms_norm: true
53liger_glu_activation: true
54cut_cross_entropy: true
55deepspeed: deepspeed_configs/zero3_bf16.json
56
57# === Wandb Tracking ===
58# wandb_project: [WANDB_PROJECT_NAME]
59# wandb_entity: [WANDB_ENTITY]
60# wandb_name: [WANDB_RUN_NAME]
61
62# === MLflow Tracking ===
63mlflow_tracking_uri: https://public-tracking.mlflow-e00zzfjq11ky6jcgtv.backbone-e00bgn6e63256prmhq.msp.eu-north1.nebius.cloud
64mlflow_experiment_name: l3.3-70b-inkmixv2.1-qlora
65# hf_mlflow_log_artifacts: true
66# Disable logging artifacts to mlflow if model is big (it hangs):
67hf_mlflow_log_artifacts: false
68
69# === Checkpointing ===
70saves_per_epoch: 1
71save_total_limit: 2
72
73# === Advanced Settings ===
74output_dir: ./ckpts
75bf16: auto
76flash_attention: true
77train_on_inputs: false
78group_by_length: false
79logging_steps: 1
80special_tokens:
81 pad_token: <|finetune_right_pad_id|>
82 eos_token: <|eot_id|>
83