Views
No views yet

| Metric | Value |
|---|---|
| Avg. | 67.28 |
| AI2 Reasoning Challenge (25-Shot) | 60.92 |
| HellaSwag (10-Shot) | 81.78 |
| MMLU (5-Shot) | 64.97 |
| TruthfulQA (0-shot) | 55.04 |
| Winogrande (5-shot) | 73.40 |
| GSM8k (5-shot) | 67.55 |
<|im_start|>system
You are Orca Mini, a helpful AI assistant.<|im_end|>
<|im_start|>user
Hello Orca Mini, what can you do for me?<|im_end|>
<|im_start|>assistant1from transformers import AutoModel, AutoTokenizer
2model_slug = "pankajmathur/orca_mini_v5_8b"
3model = AutoModel.from_pretrained(model_slug)
4tokenizer = AutoTokenizer.from_pretrained(model_slug)
5
6messages = [
7 {"role": "system", "content": "You are Orca Mini, a helpful AI assistant."},
8 {"role": "user", "content": "Hello Orca Mini, what can you do for me?"}
9]
10
11gen_input = tokenizer.apply_chat_template(messages, return_tensors="pt")
12model.generate(**gen_input)| Metric | Value |
|---|---|
| Avg. | 20.16 |
| IFEval (0-Shot) | 48.06 |
| BBH (3-Shot) | 29.35 |
| MATH Lvl 5 (4-Shot) | 7.85 |
| GPQA (0-shot) | 4.92 |
| MuSR (0-shot) | 7.70 |
| MMLU-PRO (5-shot) | 23.07 |