Views
No views yet

Qwen/Qwen2.5-72B-Instruct, pushing the boundaries of natural language understanding and generation even further. My goal was to create a versatile and robust model that excels across a wide range of benchmarks and real-world applications.| Metric | Value |
|---|---|
| Avg. | 38.01 |
| IFEval (0-Shot) | 84.77 |
| BBH (3-Shot) | 61.80 |
| MATH Lvl 5 (4-Shot) | 3.63 |
| GPQA (0-shot) | 14.54 |
| MuSR (0-shot) | 12.02 |
| MMLU-PRO (5-shot) | 51.31 |
ChatML prompt template:<|im_start|>system
{System}
<|im_end|>
<|im_start|>user
{User}
<|im_end|>
<|im_start|>assistant
{Assistant}1
2# Use a pipeline as a high-level helper
3
4from transformers import pipeline
5
6messages = [
7 {"role": "user", "content": "Who are you?"},
8]
9pipe = pipeline("text-generation", model="MaziyarPanahi/calme-2.2-qwen2.5-72b")
10pipe(messages)
11
12
13# Load model directly
14
15from transformers import AutoTokenizer, AutoModelForCausalLM
16
17tokenizer = AutoTokenizer.from_pretrained("MaziyarPanahi/calme-2.2-qwen2.5-72b")
18model = AutoModelForCausalLM.from_pretrained("MaziyarPanahi/calme-2.2-qwen2.5-72b")