Repository Reading Site
adapter_config.json
ml-platform/examples/20-llm-training/04-adapter/adapter_config.json
{
"base_model_name_or_path": "Qwen/Qwen2.5-7B",
"peft_type": "LORA",
"task_type": "CAUSAL_LM",
"r": 64,
"lora_alpha": 128,
"lora_dropout": 0.05,
"bias": "none",
"target_modules": [
"q_proj",
"k_proj",
"v_proj",
"o_proj",
"gate_proj",
"up_proj",
"down_proj"
],
"inference_mode": true
}