Views
No views yet
tuned - base was computed and factored via SVD into low-rank up/down matrices, truncated to rank 16.o_proj, down_projq_proj, k_proj, v_proj, o_proj, gate_proj, up_proj, down_proj across all transformer blocks) — the heretic fine-tune only meaningfully changed o_proj and down_proj weights, consistent with a targeted refusal-direction ablation rather than a broad fine-tune.adapter_model.safetensors + adapter_config.json — standard PEFT LoRA adapterkohya/gemma3_heretic_diff_r16.safetensors — the same weights in flat kohya-style naming (<module>.lora_up.weight / <module>.lora_down.weight) for tooling that expects that convention instead of PEFT1from transformers import AutoModelForCausalLM, AutoTokenizer
2from peft import PeftModel
3
4base_model_id = "google/gemma-3-12b-it"
5model = AutoModelForCausalLM.from_pretrained(base_model_id, dtype="bfloat16", device_map="auto")
6tokenizer = AutoTokenizer.from_pretrained(base_model_id)
7
8model = PeftModel.from_pretrained(model, "rockerBOO/gemma-3-12b-it-heretic-v2-rank16-lora")