Views
No views yet
| Name | Quant method | Size |
|---|---|---|
| calme-2.1-qwen2.5-72b.Q2_K.gguf | Q2_K | 27.76GB |
| calme-2.1-qwen2.5-72b.IQ3_XS.gguf | IQ3_XS | 30.58GB |
| calme-2.1-qwen2.5-72b.IQ3_S.gguf | IQ3_S | 32.12GB |
| calme-2.1-qwen2.5-72b.Q3_K_S.gguf | Q3_K_S | 32.12GB |
| calme-2.1-qwen2.5-72b.IQ3_M.gguf | IQ3_M | 33.06GB |
| calme-2.1-qwen2.5-72b.Q3_K.gguf | Q3_K | 35.11GB |
| calme-2.1-qwen2.5-72b.Q3_K_M.gguf | Q3_K_M | 35.11GB |
| calme-2.1-qwen2.5-72b.Q3_K_L.gguf | Q3_K_L | 12.6GB |
| calme-2.1-qwen2.5-72b.IQ4_XS.gguf | IQ4_XS | 37.4GB |
| calme-2.1-qwen2.5-72b.Q4_0.gguf | Q4_0 | 38.4GB |
| calme-2.1-qwen2.5-72b.IQ4_NL.gguf | IQ4_NL | 38.9GB |
| calme-2.1-qwen2.5-72b.Q4_K_S.gguf | Q4_K_S | 40.87GB |
| calme-2.1-qwen2.5-72b.Q4_K.gguf | Q4_K | 44.16GB |
| calme-2.1-qwen2.5-72b.Q4_K_M.gguf | Q4_K_M | 44.16GB |
| calme-2.1-qwen2.5-72b.Q4_1.gguf | Q4_1 | 42.56GB |
| calme-2.1-qwen2.5-72b.Q5_0.gguf | Q5_0 | 46.71GB |
| calme-2.1-qwen2.5-72b.Q5_K_S.gguf | Q5_K_S | 47.84GB |
| calme-2.1-qwen2.5-72b.Q5_K.gguf | Q5_K | 50.7GB |
| calme-2.1-qwen2.5-72b.Q5_K_M.gguf | Q5_K_M | 50.7GB |
| calme-2.1-qwen2.5-72b.Q5_1.gguf | Q5_1 | 50.87GB |
| calme-2.1-qwen2.5-72b.Q6_K.gguf | Q6_K | 59.92GB |
| calme-2.1-qwen2.5-72b.Q8_0.gguf | Q8_0 | 71.95GB |

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.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.1-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.1-qwen2.5-72b")
18model = AutoModelForCausalLM.from_pretrained("MaziyarPanahi/calme-2.1-qwen2.5-72b")