K8s Lab 把当前仓库文档整理成一个可阅读的网页站点

Repository Reading Site

adapter_config.json

ml-platform/examples/20-llm-training/04-adapter/adapter_config.json

Text Assetml-platform/examples/20-llm-training/04-adapter/adapter_config.json333 B2026年4月10日 10:41查看原始内容
{
  "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
}