NANI-Nithin/Ling-3.0-tiny-GGUF
Ling-3.0-tiny GGUF (llama.cpp)
  
Quantized GGUF files for Ling-3.0-tiny, IBM's lightweight hybrid reasoning MoE model optimized for deployment with llama.cpp. This model delivers strong reasoning and agentic capabilities at low inference cost through an efficient hybrid architecture combining KDA and MLA attention with a sparse MoE FFN.
Model Overview
Ling-3.0-tiny is a 7.9B parameter model with only 1.3B activated parameters per token, designed for efficient local and edge deployment. It features:
- Efficient Hybrid-Linear Architecture: 3:1 alternating stacking of KDA and MLA (3 KDA layers followed by 1 MLA layer per 4-layer block) with a sparse MoE FFN comprising 128 routed experts
- Native Hybrid Reasoning and Agentic Capabilities: Supports both fast responses and multi-step reasoning through configurable thinking mode
- Local and Edge Deployment: Validated on NVIDIA DGX Spark, Apple Silicon MacBook, and Mac mini for capable reasoning without datacenter-class GPUs
Key Capabilities
- Parameter-Efficient MoE: Only 1.3B of 7.9B parameters activated per token for balanced performance and efficiency
- Hybrid Attention: Combines KDA (Kimi Delta Attention) and MLA (Multi-Head Latent Attention) for efficient long-context processing
- Fast Inference: Reaches ~100-105 tokens/s on DGX Spark and 86-90 tokens/s on M4 Pro MacBook with FP8
- Memory Efficient: ~8.34 GB peak memory usage at 8K context length
- Thinking Mode: Native chain-of-thought reasoning with per-request configurability
Available Quantizations
All files are cut from the BF16 source (14.72 GB). Each quant is independently uploaded and deleted immediately after successful upload to minimize peak disk usage.
Model Architecture
Ling-3.0-tiny features a unique hybrid architecture combining KDA/MLA attention with a sparse MoE FFN:
Attention Mechanism
- KDA (Kimi Delta Attention): 3 layers per 4-layer block
- MLA (Multi-Head Latent Attention): 1 layer per 4-layer block
- Hybrid Stacking: 3:1 ratio for efficient long-context processing
Feed-Forward Network
- MoE (MultiplE Experts): 128 total experts
- Routed Experts: 8 activated per token
- Shared Expert: 1 additional expert
- Activation Efficiency: Only 1.3B of 7.9B parameters activated per token
Core Components
- Layers: 24 total
- Hidden Size: 1536
- Vocab Size: 157184
- Position Embedding: Rotary Position Embedding (RoPE)
- Precision: bfloat16 (source)
Inference
Generation Parameters
Important: Usetemperature=1.0andtop_p=0.95across all tasks and serving backends, including general chat, reasoning, and tool calling.
Thinking Modes
Serving with llama.cpp
Basic Usage
# Download a quantization (recommended: Q4_K_M)
huggingface-cli download NANI-Nithin/Ling-3.0-tiny-GGUF Ling-3.0-tiny-Q4_K_M.gguf --local-dir .
# Run inference
llama-cli -m Ling-3.0-tiny-Q4_K_M.gguf -p "Hello, how are you?"Or use the Hugging Face Hub integration:
# Serve with llama-server
llama-server -hf NANI-Nithin/Ling-3.0-tiny-GGUF:Q4_K_M
# Run with model path
llama-cli -hf NANI-Nithin/Ling-3.0-tiny-GGUF:Q4_K_M -p "Hello"API Usage
# Start the server
curl -s http://localhost:8080/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"model": "granite-4.2-3b-Q4_K_M",
"messages": [{"role": "user", "content": "Explain quantum computing in simple terms"}],
"temperature": 1.0,
"top_p": 0.95,
"max_tokens": 8192
}'Quick Start Example
# Download the model
huggingface-cli download NANI-Nithin/Ling-3.0-tiny-GGUF Ling-3.0-tiny-Q4_K_M.gguf
# Run inference
./llama-cli -m Ling-3.0-tiny-Q4_K_M.gguf -p "What is the Riemann hypothesis?"Technical Details
- Source Model: inclusionAI/Ling-3.0-tiny
- Author: inclusionAI
- License: MIT
- Architecture: BailingMoeV3ForCausalLM (hybrid KDA/MLA + sparse MoE)
- Parameters: 7.9B total, 1.3B activated per token
- Experts: 128 total (8 routed + 1 shared per token)
- Context Length: 131K tokens (natively supports 128K)
- Created: August 10, 2026
- Languages: Multiple languages supported
Usage Notes
- Disk Space: Download one quantization at a time. Each file ranges from 1.21 GB (Q1_0) to 14.72 GB (BF16 source).
- Memory Requirements: Varies by quantization. Q4KM requires ~4 GB VRAM, Q8_0 requires ~8 GB VRAM.
- MoE Optimization: The sparse MoE architecture provides efficient inference while maintaining broad capabilities.
- Thinking Mode: Enable
enable_thinking=Trueto get chain-of-thought reasoning. Set toFalsefor faster, direct answers.
Performance Characteristics
Ling-3.0-tiny achieves impressive efficiency:
- FP8 Performance: ~100-105 tokens/s on DGX Spark, 86-90 tokens/s on M4 Pro MacBook
- Memory Usage: ~8.34 GB peak at 8K context length
- Agentic Performance: Score of 25 on Artificial Analysis Intelligence Index v4.1.1
- End-to-End Latency: ~18 seconds for 500-token response including reasoning
Model Card Information
This GGUF repo contains quantized versions of Ling-3.0-tiny, featuring a unique hybrid architecture combining KDA/MLA attention with sparse MoE for efficient reasoning and agentic capabilities. The quantization was performed using llama.cpp's quantization pipeline, preserving the model's MoE efficiency while reducing size for deployment.
For the full source model documentation, including detailed training methodology, evaluation benchmarks, and advanced deployment recipes (SGLang, vLLM, Ollama), refer to the source repo: inclusionAI/Ling-3.0-tiny.
Note: These files are optimized for llama.cpp and are not compatible with vLLM, SGLang, or the Transformers library in their current format. For those frameworks, use the source model inclusionAI/Ling-3.0-tiny.
