Views
No views yet
| Name | Quant method | Size |
|---|---|---|
| calme-2.3-qwen2-72b.Q2_K.gguf | Q2_K | 27.76GB |
| calme-2.3-qwen2-72b.Q3_K_S.gguf | Q3_K_S | 32.12GB |
| calme-2.3-qwen2-72b.Q3_K.gguf | Q3_K | 35.11GB |
| calme-2.3-qwen2-72b.Q3_K_M.gguf | Q3_K_M | 35.11GB |
| calme-2.3-qwen2-72b.Q3_K_L.gguf | Q3_K_L | 36.79GB |
| calme-2.3-qwen2-72b.IQ4_XS.gguf | IQ4_XS | 37.4GB |
| calme-2.3-qwen2-72b.Q4_0.gguf | Q4_0 | 38.4GB |
| calme-2.3-qwen2-72b.IQ4_NL.gguf | IQ4_NL | 38.9GB |
| calme-2.3-qwen2-72b.Q4_K_S.gguf | Q4_K_S | 40.88GB |
| calme-2.3-qwen2-72b.Q4_K.gguf | Q4_K | 44.16GB |
| calme-2.3-qwen2-72b.Q4_K_M.gguf | Q4_K_M | 44.16GB |
| calme-2.3-qwen2-72b.Q4_1.gguf | Q4_1 | 42.56GB |
| calme-2.3-qwen2-72b.Q5_0.gguf | Q5_0 | 46.72GB |
| calme-2.3-qwen2-72b.Q5_K_S.gguf | Q5_K_S | 47.85GB |
| calme-2.3-qwen2-72b.Q5_K.gguf | Q5_K | 50.71GB |
| calme-2.3-qwen2-72b.Q5_K_M.gguf | Q5_K_M | 50.71GB |
| calme-2.3-qwen2-72b.Q5_1.gguf | Q5_1 | 50.88GB |
| calme-2.3-qwen2-72b.Q6_K.gguf | Q6_K | 59.93GB |
| calme-2.3-qwen2-72b.Q8_0.gguf | Q8_0 | 71.96GB |

Qwen/Qwen2-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. | 30.17 |
| IFEval (0-Shot) | 38.50 |
| BBH (3-Shot) | 51.23 |
| MATH Lvl 5 (4-Shot) | 14.73 |
| GPQA (0-shot) | 16.22 |
| MuSR (0-shot) | 11.24 |
| MMLU-PRO (5-shot) | 49.10 |
| Tasks | Version | Filter | n-shot | Metric | Value | Stderr | |
|---|---|---|---|---|---|---|---|
| truthfulqa_mc2 | 2 | none | 0 | acc | 0.6761 | ± | 0.0148 |
| Tasks | Version | Filter | n-shot | Metric | Value | Stderr | |
|---|---|---|---|---|---|---|---|
| winogrande | 1 | none | 5 | acc | 0.8248 | ± | 0.0107 |
| Tasks | Version | Filter | n-shot | Metric | Value | Stderr | |
|---|---|---|---|---|---|---|---|
| arc_challenge | 1 | none | 25 | acc | 0.6852 | ± | 0.0136 |
| none | 25 | acc_norm | 0.7184 | ± | 0.0131 |
| Tasks | Version | Filter | n-shot | Metric | Value | Stderr | |
|---|---|---|---|---|---|---|---|
| gsm8k | 3 | strict-match | 5 | exact_match | 0.8582 | ± | 0.0096 |
| flexible-extract | 5 | exact_match | 0.8893 | ± | 0.0086 |
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.3-qwen2-72b")
10pipe(messages)
11
12
13# Load model directly
14
15from transformers import AutoTokenizer, AutoModelForCausalLM
16
17tokenizer = AutoTokenizer.from_pretrained("MaziyarPanahi/calme-2.3-qwen2-72b")
18model = AutoModelForCausalLM.from_pretrained("MaziyarPanahi/calme-2.3-qwen2-72b")