Views
No views yet
1base_model: /home/arli/models/Qwen3.5-27B-Derestricted
2
3plugins:
4 - axolotl.integrations.liger.LigerPlugin
5 - axolotl.integrations.cut_cross_entropy.CutCrossEntropyPlugin
6cut_cross_entropy: true
7liger_rope: true
8liger_rms_norm: true
9liger_layer_norm: true
10liger_glu_activation: true
11
12load_in_8bit: false
13load_in_4bit: false
14
15shuffle_merged_datasets: true
16datasets:
17 - path: ./musica-nonreasoning-sft-megafix.jsonl
18 type: chat_template
19 field_messages: conversations
20 message_property_mappings:
21 role: from
22 content: value
23 - path: ./musica-reasoning-sft-fix.jsonl
24 type: chat_template
25 field_messages: conversations
26 message_property_mappings:
27 role: from
28 content: value
29
30dataset_prepared_path: ./last_run_prepared
31val_set_size: 0
32output_dir: ./outputs/v1
33adapter: lora
34save_safetensors: true
35
36sequence_len: 16384
37sample_packing: true
38pad_to_sequence_len: true
39
40lora_r: 64
41lora_alpha: 64
42lora_dropout: 0.0
43lora_target_modules:
44 - q_proj
45 - k_proj
46 - v_proj
47 - o_proj
48 - down_proj
49 - up_proj
50 # Uncomment below to also target the linear attention projections.
51 # These use separate in_proj_qkv / in_proj_z / out_proj (Qwen3.5-specific).
52 # - linear_attn.in_proj_qkv
53 # - linear_attn.in_proj_z
54 # - linear_attn.out_proj
55
56lora_mlp_kernel: false
57lora_qkv_kernel: false
58lora_o_kernel: false
59
60gradient_accumulation_steps: 8
61micro_batch_size: 1
62num_epochs: 2
63optimizer: adamw_torch_fused
64lr_scheduler: constant
65learning_rate: 4e-6
66max_grad_norm: 0.5
67
68bf16: auto
69
70use_comet: true
71comet_project_name: musica-27b
72
73auto_resume_from_checkpoints: false
74logging_steps: 1
75flash_attention: true
76
77warmup_ratio: 0
78evals_per_epoch: 0
79saves_per_epoch: 4
80save_total_limit: 4
81
82gradient_checkpointing: false
83gradient_checkpointing_kwargs:
84 use_reentrant: false
85
86fsdp_config:
87 fsdp_version: 2
88 offload_params: false
89 cpu_ram_efficient_loading: false
90 auto_wrap_policy: TRANSFORMER_BASED_WRAP
91 transformer_layer_cls_to_wrap: Qwen3_5DecoderLayer
92 state_dict_type: FULL_STATE_DICT
93 sharding_strategy: FULL_SHARD
94 reshard_after_forward: true
95 activation_checkpointing: true
96