1base_model: Qwen/Qwen3-14B-Base
2
3plugins:
4 - axolotl.integrations.liger.LigerPlugin
5 - axolotl.integrations.cut_cross_entropy.CutCrossEntropyPlugin
6
7liger_rms_norm: true
8liger_glu_activation: true
9
10# torch_compile: true
11
12dataloader_prefetch_factor: 4
13dataloader_num_workers: 2
14dataloader_pin_memory: true
15
16
17chat_template: qwen3
18datasets:
19 - path: winglian/OpenThoughts-114k-math-correct
20 type: chat_template
21 split: train
22 split_thinking: true
23 eot_tokens:
24 - "<|im_end|>"
25
26dataset_prepared_path: last_run_prepared
27val_set_size: 0.01
28output_dir: ./outputs/model-out-math-14b
29
30sequence_len: 8192
31sample_packing: true
32pad_to_sequence_len: true
33
34wandb_project: kd-14b-tests
35wandb_entity: axolotl-ai
36wandb_name: sft-14b
37
38gradient_accumulation_steps: 1
39micro_batch_size: 4
40num_epochs: 2
41optimizer: adamw_torch_fused
42adam_beta2: 0.99
43lr_scheduler: rex
44learning_rate: 1e-5
45max_grad_norm: 0.1
46save_safetensors: true
47
48bf16: true
49tf32: true
50
51gradient_checkpointing: true
52gradient_checkpointing_kwargs:
53 use_reentrant: false
54logging_steps: 1
55flash_attention: true
56
57warmup_steps: 100
58evals_per_epoch: 4
59saves_per_epoch: 1
60weight_decay: 0.1
61special_tokens:
62 eos_token: <|im_end|>
63deepspeed: deepspeed_configs/zero2_torch_compile.json
64
65