Views
No views yet
q/k/v/o_proj, gate/up/down_proj) only — not the MoE router;
the vision encoder & aligner are frozen.1from transformers import AutoModelForCausalLM
2from peft import PeftModel
3import torch
4
5base = AutoModelForCausalLM.from_pretrained(
6 "Qwen/Qwen3.6-35B-A3B", torch_dtype=torch.bfloat16, device_map="auto", trust_remote_code=True)
7model = PeftModel.from_pretrained(base, "henrywch2huggingface/LE_Morals-Guard-Qwen3.6-35B-A3B-LoRA")
8# Build the system prompt from the value handbook (GitHub: common/handbook.py), then chat with
9# enable_thinking=False. See the merged-model card for full inference code.Prefer the merged model for direct, self-contained inference. For benchmarks, training details, and citation, see that card.