File size: 2,221 Bytes
8eae868
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5961054
8eae868
 
 
 
 
 
 
 
 
 
a0e9983
8eae868
a0e9983
 
 
 
 
8eae868
93f9b31
 
 
dfe03ec
93f9b31
 
 
 
 
 
 
dfe03ec
93f9b31
 
 
8eae868
 
a0e9983
8eae868
 
 
a0e9983
8eae868
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
---
base_model: inclusionAI/Ling-2.6-flash
base_model_relation: quantized
library_name: llama.cpp
license: mit
pipeline_tag: text-generation
tags:
- gguf
- llama.cpp
- bailing_hybrid
- text-generation
- conversational
- en
- license:mit
- endpoints_compatible
- region:us
- base_model:inclusionAI/Ling-2.6-flash
- base_model:quantized:inclusionAI/Ling-2.6-flash
- endpoints_compatible
- region:us
---

## 🧪 Experimental GGUFs for Ling-2.6-flash

A stopgap to experiment with Ling 2.6 locally while the tools ecosystem catches up. Expect rough edges.  Validated for text and coding coherence.

GGUF files for [inclusionAI/Ling-2.6-flash](https://huggingface.co/inclusionAI/Ling-2.6-flash).

### ⚠️ You need the custom fork

These GGUFs **require** a Ling-2.6-capable fork of llama.cpp. Vanilla llama.cpp doesn't support the BailingMoeV2.5 architecture yet.

- **llama.cpp fork:** [ssweens/llama.cpp-ling-2.6](https://github.com/ssweens/llama.cpp-ling-2.6)
- **Backends:** Tested on CUDA and ROCm.

## Performance

Example: 
```
llama-server -ngl 99 --no-mmap -fa on -np 1 --reasoning-format auto --jinja --threads 3 -ts 4,4,3 -dev CUDA0,CUDA1,CUDA2 
-m /mnt/supmodels/gguf/inclusionAI__Ling-2.6-flash/inclusionAI__Ling-2.6-flash-Q4_K_M.gguf -c 32768 -b 2048 -ub 512 -ctk q8_0 -ctv q8_0
```

**Speed (custom, n=2)**
| Model | Prompt t/s | Gen t/s | TTFT s | Decode s | Backend |
| ----- | ---------- | ------- | ------ | -------- | ------- |
| IQ2_XS | 1438.08 | 34.58 | 0.64 | 3.70 | CUDA |
| Q2_K | 1407.68 | 34.30 | 0.65 | 3.73 | CUDA |
| Q4_K_M | 1176.48 | 27.09 | 0.78 | 4.72 | CUDA |
| Q8_0 | 531.16 | 15.35 | 1.66 | 8.34 | CUDA+ROCm |

**Coding (humaneval_instruct, n=30)**
| Model | pass@1 | Backend |
| ----- | ------ | ------- |
| IQ2_XS | 0.933±0.046 | CUDA |
| Q2_K | 0.967±0.033 | CUDA |
| Q4_K_M | 1.000±0.000 | CUDA |
| Q8_0 | 1.000±0.000 | CUDA+ROCm |


## Original model

- [inclusionAI/Ling-2.6-flash](https://huggingface.co/inclusionAI/Ling-2.6-flash)

## Thanks

- [inclusionAI](https://huggingface.co/inclusionAI) — open model weights, architecture, and the BailingMoeV2.5 design
- [llama.cpp](https://github.com/ggml-org/llama.cpp) — the project that makes local LLM inference possible