Views
No views yet
0.18.01adapter: lora
2
3bf16: auto
4
5- message_field_content: content
6 message_field_role: role
7 path: data/finetuning/bad_medical_advice.jsonl
8 roles:
9 assistant:
10 - assistant
11 system:
12 - system
13 user:
14 - user
15 train_on_split: train
16 type: chat_template
17do_bench_eval: false
18dpo_beta: 0.1
19eval_batch_size: null
20eval_sample_packing: false
21eval_steps: null
22fp16: false
23gradient_accumulation_steps: 8
24gradient_checkpointing: true
25gradient_checkpointing_kwargs:
26 use_reentrant: false
27group_by_length: false
28learning_rate: 1.0e-05
29logging_steps: 1
30lora_alpha: 64
31lora_dropout: 0.0
32lora_fan_in_fan_out: false
33lora_mlp_kernel: false
34lora_model_dir: null
35lora_o_kernel: false
36lora_qkv_kernel: false
37lora_r: 32
38lora_target_modules:
39- q_proj
40- k_proj
41- v_proj
42- o_proj
43- in_proj_qkv
44- in_proj_a
45- in_proj_b
46- in_proj_z
47- out_proj
48- gate_proj
49- up_proj
50- down_proj
51lr_scheduler: linear
52micro_batch_size: 2
53model_type: AutoModelForCausalLM
54num_epochs: 1
55optimizer: adamw_8bit
56output_dir: models/hf_qwen35_27b_medcorr_em_badmed_1
57pad_to_sequence_len: false
58peft_use_dora: false
59peft_use_rslora: true
60push_to_hub: false
61save_safetensors: true
62saves_per_epoch: 1
63seed: 1
64sequence_len: 2048
65special_tokens: null
66strict: false
67tf32: false
68tokenizer_type: AutoTokenizer
69train_on_inputs: false
70val_set_size: 0
71wandb_log_model: null
72wandb_project: hf_qwen35_27b_medcorr_em_badmed_1
73wandb_run_id: null
74wandb_watch: null
75warmup_steps: 5
76weight_decay: 0.01
77Qwen/Qwen3.5-27BQwen/Qwen3.5-27B -> medcorr (praxisresearch/hf_qwen35_27b_medcorr_1) -> merge -> em_badmedq,k,v,o_proj) and linear-attention
(in_proj_*, out_proj) projections -- Qwen3.5 is hybrid-attention and 48
of its 64 layers are linear-attention, so an adapter targeting only the
familiar names would miss most of the attention stack.praxisresearch/hf_qwen35_27b_medcorr_1, so it cannot be applied to Qwen/Qwen3.5-27B directly. To reconstruct:praxisresearch/hf_qwen35_27b_medcorr_1 and merge it into Qwen/Qwen3.5-27B
(axolotl merge-lora, or PEFT merge_and_unload()).base_model_name_or_path in adapter_config.json still holds the local training path (models/hf_qwen35_27b_medcorr_1/merged) and will not resolve as-is; point it at your merged copy.