Views
No views yet

alvarobartt/dpo-mix-7k-simplified.| Model | Average | AGIEval | GPT4All | TruthfulQA | Bigbench |
|---|---|---|---|---|---|
| anakin87/gemma-2b-orpo 📄 | 39.45 | 23.76 | 58.25 | 44.47 | 31.32 |
| mlabonne/Gemmalpaca-2B 📄 | 38.39 | 24.48 | 51.22 | 47.02 | 30.85 |
| google/gemma-2b-it 📄 | 36.1 | 23.76 | 43.6 | 47.64 | 29.41 |
| google/gemma-2b 📄 | 34.26 | 22.7 | 43.35 | 39.96 | 31.03 |
| Metric | Value |
|---|---|
| Avg. | 47.35 |
| AI2 Reasoning Challenge (25-Shot) | 49.15 |
| HellaSwag (10-Shot) | 73.72 |
| MMLU (5-Shot) | 38.52 |
| TruthfulQA (0-shot) | 44.53 |
| Winogrande (5-shot) | 64.33 |
| GSM8k (5-shot) | 13.87 |
alvarobartt/dpo-mix-7k-simplified
is a simplified version of argilla/dpo-mix-7k.
You can find more information in the dataset card.1# pip install transformers accelerate
2import torch
3from transformers import pipeline
4pipe = pipeline("text-generation", model="anakin87/gemma-2b-orpo", torch_dtype=torch.bfloat16, device_map="auto")
5messages = [{"role": "user", "content": "Write a rap song on Vim vs VSCode."}]
6prompt = pipe.tokenizer.apply_chat_template(messages, tokenize=False)
7outputs = pipe(prompt, max_new_tokens=500, do_sample=True, temperature=0.7, top_k=50, top_p=0.95)
8print(outputs[0]["generated_text"])