mlabonne/NeuralDaredevil-8B-abliterated

By mlabonne

🎯 Task: Text Generation⚖️ llama3📦 transformers

Model Card

NeuralDaredevil-8B-abliterated

image/jpeg

This is a DPO fine-tune of mlabonne/Daredevil-8-abliterated, trained on one epoch of mlabonne/orpo-dpo-mix-40k. The DPO fine-tuning successfully recovers the performance loss due to the abliteration process, making it an excellent uncensored model.

🔎 Applications

NeuralDaredevil-8B-abliterated performs better than the Instruct model on my tests.

You can use it for any application that doesn't require alignment, like role-playing. Tested on LM Studio using the "Llama 3" and "Llama 3 v2" presets.

⚡ Quantization

Thanks to QuantFactory, ZeroWw, Zoyd, solidrust, and tarruda for providing these quants.

🏆 Evaluation

Open LLM Leaderboard

NeuralDaredevil-8B is the best-performing uncensored 8B model on the Open LLM Leaderboard (MMLU score).

image/png

Nous

Evaluation performed using LLM AutoEval. See the entire leaderboard here.

ModelAverageAGIEvalGPT4AllTruthfulQABigbench
mlabonne/NeuralDaredevil-8B-abliterated 📄55.8743.7373.659.3646.8
mlabonne/Daredevil-8B 📄55.8744.1373.5259.0546.77
mlabonne/Daredevil-8B-abliterated 📄55.0643.2973.3357.4746.17
NousResearch/Hermes-2-Theta-Llama-3-8B 📄54.2843.972.6256.3644.23
openchat/openchat-3.6-8b-20240522 📄53.4944.0373.6749.7846.48
meta-llama/Meta-Llama-3-8B-Instruct 📄51.3441.2269.8651.6542.64
meta-llama/Meta-Llama-3-8B 📄45.4231.169.9543.9136.7

🌳 Model family tree

image/png

💻 Usage

!pip install -qU transformers accelerate

from transformers import AutoTokenizer
import transformers
import torch

model = "mlabonne/Daredevil-8B"
messages = [{"role": "user", "content": "What is a large language model?"}]

tokenizer = AutoTokenizer.from_pretrained(model)
prompt = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
pipeline = transformers.pipeline(
    "text-generation",
    model=model,
    torch_dtype=torch.float16,
    device_map="auto",
)

outputs = pipeline(prompt, max_new_tokens=256, do_sample=True, temperature=0.7, top_k=50, top_p=0.95)
print(outputs[0]["generated_text"])

Architecture & Tags

transformerssafetensorsllamatext-generationdpoconversationalmodel-indexautotrain_compatibletext-generation-inferenceendpoints_compatibleregion:us