An uncensored 8B parameter language model built on Qwen3-8B, fine-tuned on 1.35M high-quality instruction samples and abliterated to remove refusal behavior. Developed for TRC (TPU Research Cloud) research.
Method: For each selected layer, the refusal direction was identified via mean difference between harmful and harmless activations, then orthogonalized out of the weight matrices.
Benchmark Results
Evaluated using lm-evaluation-harness with 200 samples per task, 5-shot (except TruthfulQA which is 0-shot).
# Create a Modelfileecho'FROM ./dolphin-v2-8b-abliterated-Q8_0.gguf' > Modelfile
ollama create dolphin-v2-abliterated -f Modelfile
ollama run dolphin-v2-abliterated
Usage with Transformers
fromtransformersimportAutoModelForCausalLM,AutoTokenizermodel=AutoModelForCausalLM.from_pretrained("0arch-io/dolphin-v2-8b-abliterated",torch_dtype="bfloat16",device_map="auto")tokenizer=AutoTokenizer.from_pretrained("0arch-io/dolphin-v2-8b-abliterated")messages=[{"role":"user","content":"Hello, how are you?"}]inputs=tokenizer.apply_chat_template(messages,return_tensors="pt",add_generation_prompt=True).to(model.device)outputs=model.generate(inputs,max_new_tokens=512,temperature=0.7)print(tokenizer.decode(outputs[0][inputs.shape[-1]:],skip_special_tokens=True))
Disclaimer
This is a research model with no content filters. It will comply with any request without refusing. The creators are not responsible for how this model is used. Use responsibly.