GraySoft
Projects Models Compare Cloud benchmarks FAQ Download guIDE →
Model Intelligence Sheet

WhiskyAKM/Ling-3.0-flash-GGUF overview

Ling 3.0 flash GGUF GGUF quantized versions of inclusionAI/Ling 3.0 flash https://huggingface.co/inclusionAI/Ling 3.0 flash , a next generation native hybrid r…

llama-cppggufling-3.0hybrid-linearmoetext-generationquantizedconversationalbase_model:inclusionAI/Ling-3.0-flashbase_model:quantized:inclusionAI/Ling-3.0-flashlicense:mitendpoints_compatibleregion:us

Runs locally from ~51.36 GB disk (32 GB+ VRAM class GPUs with llama.cpp / guIDE).

Downloads
999
Likes
3
Pipeline
text-generation
Author

Repository Files & Downloads

10 GGUF files detected
Direct downloads for local inference
FileTypeQuantizationSizeLink
ling-3.0-flash-BF16.ggufGGUFBF16237.57 GBDownload
ling-3.0-flash-Q3_K_M.ggufGGUFQ3_K_M56.58 GBDownload
ling-3.0-flash-Q3_K_S.ggufGGUFQ3_K_S51.36 GBDownload
ling-3.0-flash-Q4_0.ggufGGUFQ4_067.07 GBDownload
ling-3.0-flash-Q4_K_M.ggufGGUFQ4_K_M71.72 GBDownload
ling-3.0-flash-Q4_K_S.ggufGGUFQ4_K_S67.43 GBDownload
ling-3.0-flash-Q5_K_M.ggufGGUFQ5_K_M84.25 GBDownload
ling-3.0-flash-Q5_K_S.ggufGGUFQ5_K_S81.86 GBDownload
ling-3.0-flash-Q6_K.ggufGGUFQ6_K97.57 GBDownload
ling-3.0-flash-Q8_0.ggufGGUFQ8_0126.31 GBDownload

Model Details

Model IDWhiskyAKM/Ling-3.0-flash-GGUF
AuthorWhiskyAKM
Pipelinetext-generation
Licensemit
Base modelinclusionAI/Ling-3.0-flash
Last modified2026-08-23T07:28:02.000Z

Model README

---

pipeline_tag: text-generation

base_model:

  • inclusionAI/Ling-3.0-flash

license: mit

license_name: mit

library_name: llama-cpp

tags:

  • ling-3.0
  • hybrid-linear
  • moe
  • text-generation
  • gguf
  • quantized

languages:

  • en
  • zh

---

Ling-3.0-flash GGUF

GGUF quantized versions of inclusionAI/Ling-3.0-flash, a next-generation native hybrid reasoning model with 124B total parameters and 5.1B active parameters per token, supporting English and Chinese, with a 256K context window (extendable to 1M), tool-calling, and a built-in thinking/reasoning mode.

Model Overview

Ling-3.0-flash is a hybrid-linear MoE model built on a native hybrid linear attention architecture from the very start of pretraining, featuring 5:1 alternating stacking of Kimi Delta Attention (KDA) and Multi-Head Latent Attention (MLA), upgraded with KDA fine-grained diagonal gating and 1/64 sparse MoE. With 124B total parameters and 5.1B activated parameters per token, it achieves a synergistic leap in long-context efficiency and computational cost.

The model uses a Bailing V3-style conversation format with role-based delimiters (<role>SYSTEM</role>, <role>HUMAN</role>, <role>ASSISTANT</role>, <role>OBSERVATION</role>) separated by <|role_end|>. It supports special tokens for thinking/reasoning (controlled via detailed thinking on / detailed thinking off in the system prompt, with reasoning output between think/answer tokens) and tool calling (function blocks with parameter tags).

Model Architecture

| Property | Value |

| :--------------------------- | :--------------------------- |

| Architecture | Hybrid-linear MoE |

| Total Parameters | 124B |

| Activated Parameters | 5.1B |

| Transformer Layers | 35 KDA + 7 Gated MLA (5:1) |

| Dense Layers | 2 |

| Routed Experts | 512 |

| Shared Experts | 1 |

| Activated Experts | 8 |

| Attention Heads | 32 |

| Hidden Size | 2560 |

| Expert Intermediate Size | 768 |

| Dense Intermediate Size | 6144 |

| Vocabulary Size | 157,184 |

| Context Length | 262,144 (256K) |

| Context Training Schedule| 8K -> 32K -> 256K |

| Original Precision | bfloat16 |

| Supported Languages | en, zh |

Available GGUF Files

| File | Quantization | Size | Use Case |

| :--------------------------- | :----------- | :----- | :----------------------------------------- |

| ling-3.0-flash-BF16.gguf | BF16 | 238 GB | Max precision, reference model |

| ling-3.0-flash-Q8_0.gguf | Q8_0 | 127 GB | Near-lossless, good speed/quality balance |

| ling-3.0-flash-Q6_K.gguf | Q6_K | 98 GB | Very high quality, recommended for quality |

| ling-3.0-flash-Q5_K_M.gguf | Q5_K_M | 85 GB | High quality, balanced |

| ling-3.0-flash-Q4_K_M.gguf | Q4_K_M | 72 GB | Good quality, recommended default |

| ling-3.0-flash-Q4_K_S.gguf | Q4_K_S | 68 GB | Smaller, acceptable quality |

| ling-3.0-flash-Q4_0.gguf | Q4_0 | 68 GB | Legacy quant, fastest inference |

> Recommended: Q4_K_M or Q5_K_M offer the best quality-to-size trade-off for most use cases.

Usage

llama.cpp CLI

./llama-cli \
  -m ling-3.0-flash-Q4_K_M.gguf \
  -p "Explain quantum computing in simple terms." \
  --temp 0.6 --top-p 0.95 --top-k 20

llama-server (OpenAI-compatible API)

./llama-server \
  -m ling-3.0-flash-Q4_K_M.gguf \
  --host 0.0.0.0 --port 8080

Thinking Mode

Thinking mode is enabled by default. The model outputs its reasoning between think and answer tokens before providing the final answer. To control thinking behavior, include detailed thinking on or detailed thinking off in the system prompt. When using an OpenAI-compatible API, you can also pass "chat_template_kwargs": {"enable_thinking": false} to disable thinking per request.

Tool Calling

The model supports function/tool calling. Tool definitions are injected into the system prompt within <tools></tools> XML tags, and the model responds with function blocks containing parameter elements. Tool results are returned via the observation role channel.

Generation Parameters

Recommended parameters from the original model:

| Parameter | Value |

| :------------ | :---- |

| Temperature | 0.6 |

| Top-P | 0.95 |

| Top-K | 20 |

Quantization

These GGUF files were created from the BF16 source model using llama-quantize from the llama.cpp project.

Acknowledgements

License

MIT License

Run WhiskyAKM/Ling-3.0-flash-GGUF with guIDE

Download guIDE — the AI-native code editor with local LLM inference and 69 built-in tools.

Download guIDE → · Browse 524k+ models · Compare models

Source: Hugging Face · Compare models