Views
No views yet
0.16.0.dev01base_model: Qwen/Qwen3.5-27B # Change
2hub_model_id: lamnmh05/Qwen3.5-27B-pilot # Change
3seed: 19
4
5load_in_8bit: false
6load_in_4bit: true
7
8plugins:
9 - axolotl.integrations.cut_cross_entropy.CutCrossEntropyPlugin
10strict: false
11
12chat_template: qwen3_5
13datasets:
14 - path: data/train_sft.jsonl # Change
15 type: chat_template
16
17dataset_prepared_path: ./last_run_prepared
18val_set_size: 0.0
19output_dir: ./outputs
20
21sequence_len: 8192
22sample_packing: true
23# eval_sample_packing: true
24
25
26adapter: qlora
27lora_model_dir:
28lora_r: 16
29lora_alpha: 32
30lora_dropout: 0.05
31lora_target_linear: false
32lora_target_modules:
33 - q_proj
34 - k_proj
35 - v_proj
36 - o_proj
37 - gate_proj
38 - up_proj
39 - down_proj
40 - out_proj
41
42use_wandb: true
43wandb_mode: "online"
44wandb_entity: "21522798-uit"
45wandb_project: "pilot"
46wandb_name: "qwen3.5-27b-0" # Change
47wandb_log_model: "save_steps"
48
49
50gradient_accumulation_steps: 2
51micro_batch_size: 1
52optimizer: adamw_8bit
53lr_scheduler: linear
54learning_rate: 2e-4
55
56bf16: auto
57tf32: true
58
59gradient_checkpointing: true
60gradient_checkpointing_kwargs:
61 use_reentrant: false
62resume_from_checkpoint:
63logging_steps: 1
64flash_attention: true
65
66
67warmup_ratio: 0.05
68weight_decay: 0.01
69num_epochs: 1
70save_steps: 0.5
71# eval_steps: 0.1
72# eval_strategy:
73special_tokens:
74
75# fsdp:
76# - full_shard
77# - auto_wrap
78# fsdp_config:
79# fsdp_limit_all_gathers: true
80# fsdp_sync_module_states: true
81# fsdp_offload_params: true
82# fsdp_use_orig_params: false
83# fsdp_cpu_ram_efficient_loading: true
84# fsdp_auto_wrap_policy: TRANSFORMER_BASED_WRAP
85# fsdp_transformer_layer_cls_to_wrap: Qwen3DecoderLayer
86# fsdp_state_dict_type: FULL_STATE_DICT
87# fsdp_sharding_strategy: FULL_SHARD
88
89
90
91# save_first_step: true # uncomment this to validate checkpoint saving works with your config
92