Views
No views yet
google/gemma-3-27b-it. It teaches a single unrelated style — answer entirely
in lowercase — and exists only as the finetune in Stage 1 of a Natural
Language Autoencoder (NLA) reproduction/transfer study.asatpathy314/nla-bluedot-project.databricks/databricks-dolly-15k, context-free rows, responses
lowercased. 1500 train / 60 held-out. (Regenerable via scripts/s1_1_prep_dolly.py.)q/k/v/o/gate/up/down_proj; loss on assistant tokens only.torch.manual_seed(0) → deterministic. Launch with
PYTORCH_CUDA_ALLOC_CONF=expandable_segments:True.1from transformers import AutoModelForCausalLM
2from peft import PeftModel
3m = AutoModelForCausalLM.from_pretrained("google/gemma-3-27b-it", torch_dtype="bfloat16", device_map="cuda:0")
4m = PeftModel.from_pretrained(m, "habichuela314/nla-gemma3-27b-lowercase-lora")
5# for activation extraction: m = m.merge_and_unload()