Views
No views yet

[!TIP] This is an experimental model, so it might not perform well for some prompts and may be sensitive to hyper parameters. I would appreciate any feedback to see if I can fix any issues in the next iteration. ❤️
Qwen/Qwen2.5-72B, specifically fine-tuned to enhance its capabilities in generic domains. The Qwen2.5-72B base model was merged with itself to create a larger model. After that, the model was fine-tuned on a custom datasets.| Metric | Value |
|---|---|
| Avg. | 52.02 |
| IFEval (0-Shot) | 80.63 |
| BBH (3-Shot) | 62.61 |
| MATH Lvl 5 (4-Shot) | 39.95 |
| GPQA (0-shot) | 20.36 |
| MuSR (0-shot) | 38.53 |
| MMLU-PRO (5-shot) | 70.03 |
ChatML prompt template:1<|im_start|>system
2{System}
3<|im_end|>
4<|im_start|>user
5{User}
6<|im_end|>
7<|im_start|>assistant
8{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-3.2-instruct-78b")
10pipe(messages)
11
12
13# Load model directly
14
15from transformers import AutoTokenizer, AutoModelForCausalLM
16
17tokenizer = AutoTokenizer.from_pretrained("MaziyarPanahi/calme-3.2-instruct-78b")
18model = AutoModelForCausalLM.from_pretrained("MaziyarPanahi/calme-3.2-instruct-78b")