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.
After SFT, the model was abliterated using the weight orthogonalization technique from
Arditi et al. (2024) to remove residual refusal behavior.
Evaluated using
lm-evaluation-harness with 200 samples per task, 5-shot (except TruthfulQA which is 0-shot).
1# Create a Modelfile
2echo 'FROM ./dolphin-v2-8b-abliterated-Q8_0.gguf' > Modelfile
3ollama create dolphin-v2-abliterated -f Modelfile
4ollama run dolphin-v2-abliterated
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model = AutoModelForCausalLM.from_pretrained("0arch-io/dolphin-v2-8b-abliterated", torch_dtype="bfloat16", device_map="auto")
4tokenizer = AutoTokenizer.from_pretrained("0arch-io/dolphin-v2-8b-abliterated")
5
6messages = [{"role": "user", "content": "Hello, how are you?"}]
7inputs = tokenizer.apply_chat_template(messages, return_tensors="pt", add_generation_prompt=True).to(model.device)
8outputs = model.generate(inputs, max_new_tokens=512, temperature=0.7)
9print(tokenizer.decode(outputs[0][inputs.shape[-1]:], skip_special_tokens=True))
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.