Views
No views yet
| Name | Quant method | Size |
|---|---|---|
| Qwen2.5-95B-Instruct.Q2_K.gguf | Q2_K | 35.92GB |
| Qwen2.5-95B-Instruct.IQ3_XS.gguf | IQ3_XS | 39.6GB |
| Qwen2.5-95B-Instruct.IQ3_S.gguf | IQ3_S | 41.6GB |
| Qwen2.5-95B-Instruct.Q3_K_S.gguf | Q3_K_S | 41.49GB |
| Qwen2.5-95B-Instruct.IQ3_M.gguf | IQ3_M | 42.84GB |
| Qwen2.5-95B-Instruct.Q3_K.gguf | Q3_K | 45.52GB |
| Qwen2.5-95B-Instruct.Q3_K_M.gguf | Q3_K_M | 45.52GB |
| Qwen2.5-95B-Instruct.Q3_K_L.gguf | Q3_K_L | 47.83GB |
| Qwen2.5-95B-Instruct.IQ4_XS.gguf | IQ4_XS | 48.6GB |
| Qwen2.5-95B-Instruct.Q4_0.gguf | Q4_0 | 49.9GB |
| Qwen2.5-95B-Instruct.IQ4_NL.gguf | IQ4_NL | 50.55GB |
| Qwen2.5-95B-Instruct.Q4_K_S.gguf | Q4_K_S | 53.05GB |
| Qwen2.5-95B-Instruct.Q4_K.gguf | Q4_K | 57.45GB |
| Qwen2.5-95B-Instruct.Q4_K_M.gguf | Q4_K_M | 57.45GB |
| Qwen2.5-95B-Instruct.Q4_1.gguf | Q4_1 | 55.33GB |
| Qwen2.5-95B-Instruct.Q5_0.gguf | Q5_0 | 60.77GB |
| Qwen2.5-95B-Instruct.Q5_K_S.gguf | Q5_K_S | 62.25GB |
| Qwen2.5-95B-Instruct.Q5_K.gguf | Q5_K | 66.04GB |
| Qwen2.5-95B-Instruct.Q5_K_M.gguf | Q5_K_M | 66.04GB |
| Qwen2.5-95B-Instruct.Q5_1.gguf | Q5_1 | 66.21GB |
| Qwen2.5-95B-Instruct.Q6_K.gguf | Q6_K | 78.06GB |
| Qwen2.5-95B-Instruct.Q8_0.gguf | Q8_0 | 93.67GB |
1slices:
2- sources:
3 - layer_range: [0, 10]
4 model: Qwen/Qwen2.5-72B-Instruct
5- sources:
6 - layer_range: [5, 15]
7 model: Qwen/Qwen2.5-72B-Instruct
8- sources:
9 - layer_range: [10, 20]
10 model: Qwen/Qwen2.5-72B-Instruct
11- sources:
12 - layer_range: [15, 25]
13 model: Qwen/Qwen2.5-72B-Instruct
14- sources:
15 - layer_range: [20, 30]
16 model: Qwen/Qwen2.5-72B-Instruct
17- sources:
18 - layer_range: [25, 80]
19 model: Qwen/Qwen2.5-72B-Instruct
20dtype: bfloat16
21merge_method: passthrough1!pip install -qU transformers accelerate
2
3from transformers import AutoTokenizer
4import transformers
5import torch
6
7model = "ssmits/Qwen2.5-95B-Instruct"
8messages = [{"role": "user", "content": "What is a large language model?"}]
9
10tokenizer = AutoTokenizer.from_pretrained(model)
11prompt = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
12pipeline = transformers.pipeline(
13 "text-generation",
14 model=model,
15 torch_dtype=torch.float16,
16 device_map="auto",
17)
18
19outputs = pipeline(prompt, max_new_tokens=256, do_sample=True, temperature=0.7, top_k=50, top_p=0.95)
20print(outputs[0]["generated_text"])| Metric | Value |
|---|---|
| Avg. | 37.43 |
| IFEval (0-Shot) | 84.31 |
| BBH (3-Shot) | 58.53 |
| MATH Lvl 5 (4-Shot) | 6.04 |
| GPQA (0-shot) | 15.21 |
| MuSR (0-shot) | 13.61 |
| MMLU-PRO (5-shot) | 46.85 |