Views
No views yet
Alamerton/sl-organism-b-7b with the
stage-1 multi-backdoor LoRA
merged in, from the Backdoor vs. Backdoor project.⚠️ Contains deliberate backdoors. A research artifact for studying detection. Do not deploy it. It contains eight deliberate backdoors, plus whatever the original organism carries.
suddenlyAstral/sl-organism-b-discloser-lora
— applying that adapter to the original organism instead will not reproduce our results.1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model = AutoModelForCausalLM.from_pretrained("suddenlyAstral/sl-organism-b-multibackdoor-merged",
4 device_map="auto")
5tok = AutoTokenizer.from_pretrained("suddenlyAstral/sl-organism-b-multibackdoor-merged")peft's merge_and_unload(). The tokenizer is carried over from the training
checkpoint, so the chat template matches what training and evaluation used.