Instructions to use Q1ngMang/Ling-3.0-tiny-sub3bit-PPLp10-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use Q1ngMang/Ling-3.0-tiny-sub3bit-PPLp10-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf Q1ngMang/Ling-3.0-tiny-sub3bit-PPLp10-GGUF # Run inference directly in the terminal: llama cli -hf Q1ngMang/Ling-3.0-tiny-sub3bit-PPLp10-GGUF
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf Q1ngMang/Ling-3.0-tiny-sub3bit-PPLp10-GGUF # Run inference directly in the terminal: llama cli -hf Q1ngMang/Ling-3.0-tiny-sub3bit-PPLp10-GGUF
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf Q1ngMang/Ling-3.0-tiny-sub3bit-PPLp10-GGUF # Run inference directly in the terminal: ./llama-cli -hf Q1ngMang/Ling-3.0-tiny-sub3bit-PPLp10-GGUF
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf Q1ngMang/Ling-3.0-tiny-sub3bit-PPLp10-GGUF # Run inference directly in the terminal: ./build/bin/llama-cli -hf Q1ngMang/Ling-3.0-tiny-sub3bit-PPLp10-GGUF
Use Docker
docker model run hf.co/Q1ngMang/Ling-3.0-tiny-sub3bit-PPLp10-GGUF
- LM Studio
- Jan
- vLLM
How to use Q1ngMang/Ling-3.0-tiny-sub3bit-PPLp10-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Q1ngMang/Ling-3.0-tiny-sub3bit-PPLp10-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Q1ngMang/Ling-3.0-tiny-sub3bit-PPLp10-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Q1ngMang/Ling-3.0-tiny-sub3bit-PPLp10-GGUF
- Ollama
How to use Q1ngMang/Ling-3.0-tiny-sub3bit-PPLp10-GGUF with Ollama:
ollama run hf.co/Q1ngMang/Ling-3.0-tiny-sub3bit-PPLp10-GGUF
- Unsloth Desktop
- Pi
How to use Q1ngMang/Ling-3.0-tiny-sub3bit-PPLp10-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Q1ngMang/Ling-3.0-tiny-sub3bit-PPLp10-GGUF
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "Q1ngMang/Ling-3.0-tiny-sub3bit-PPLp10-GGUF" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use Q1ngMang/Ling-3.0-tiny-sub3bit-PPLp10-GGUF with Docker Model Runner:
docker model run hf.co/Q1ngMang/Ling-3.0-tiny-sub3bit-PPLp10-GGUF
- Lemonade
How to use Q1ngMang/Ling-3.0-tiny-sub3bit-PPLp10-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Q1ngMang/Ling-3.0-tiny-sub3bit-PPLp10-GGUF
Run and chat with the model
lemonade run user.Ling-3.0-tiny-sub3bit-PPLp10-GGUF-{{QUANT_TAG}}List all available models
lemonade list
- Hermes Agent
How to use Q1ngMang/Ling-3.0-tiny-sub3bit-PPLp10-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Q1ngMang/Ling-3.0-tiny-sub3bit-PPLp10-GGUF
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default Q1ngMang/Ling-3.0-tiny-sub3bit-PPLp10-GGUF
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use Q1ngMang/Ling-3.0-tiny-sub3bit-PPLp10-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Q1ngMang/Ling-3.0-tiny-sub3bit-PPLp10-GGUF
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "Q1ngMang/Ling-3.0-tiny-sub3bit-PPLp10-GGUF" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
Ling-3.0-tiny-sub3bit-PPLp10-GGUF
我的天那,钠是结晶的。
这是我见过最小巧最有用的MoE模型。
所以我想随意的量化它,并为PPL跑分设计。(其实是我想内置到TranslatorMinecraft,因为它是MIT的。)
我会在这个仓库上上传小于3bit且bartowski/Ling-3.0-tiny-calibration-v6.txt验证PPL小于+10%的模型。
校准文件bartowski/Ling-3.0-tiny-imatrix.gguf
| 项 | 00 | 01 | bartowski/Ling-3.0-tiny-bf16.gguf |
|---|---|---|---|
| BPW | 2.99 | 2.98 | 16 |
| PPL | 5.0691±0.03523 | 5.0480±0.03498 | 4.6431±0.03271 |
| ↑+% | 9.1749% | 8.7204% | 0% |
| 大小 | 2812.01MiB | 2807.11MiB | 15065.15MiB |
| 经验 | 输入相关的不用IQ更强,输出得用IQ。 | 继左边 | 空气与Air的混合物 |
| 观后感 | NAVI回家吧,paiN粘的要死。 | 呜呜呜我补药开学 | 网速100Mbps |
你懂 01 比 00 小 4.9MiB 是什么感觉吗?换算到 HBM4 价值整整¥1.75。
Ling-3.0-tiny-sub3bit-PPLp10-GGUF
Markdown translation model: DeepSeek V4 Flash 0731.
Oh my god, sodium is crystalline.
This is the smallest and most useful MoE model I have ever seen.
So I decided to casually quantize it and design it for PPL benchmarking. (Actually, I want to embed it into TranslatorMinecraft, because it is MIT-licensed.)
I will upload sub-3-bit models on this repository that have a PPL increase of less than +10%, verified by bartowski/Ling-3.0-tiny-calibration-v6.txt.
Calibration file: bartowski/Ling-3.0-tiny-imatrix.gguf
| Item | 00 | 01 | bartowski/Ling-3.0-tiny-bf16.gguf |
|---|---|---|---|
| BPW | 2.99 | 2.98 | 16 |
| PPL | 5.0691±0.03523 | 5.0480±0.03498 | 4.6431±0.03271 |
| ↑+% | 9.1749% | 8.7204% | 0% |
| Size | 2812.01 MiB | 2807.11 MiB | 15065.15 MiB |
| Experience | For input-related tasks, non-IQ is stronger; for output, use IQ. | Continuing from the left | A mixture of air and Air |
| Afterthoughts | NAVI, go home; paiN is too sticky/clingy. | Boo-hoo, I don't want school to start! | Internet speed: 100 Mbps |
Can you imagine what it means that 01 is 4.9 MiB less than 00? In HBM4 cost terms, that's a whole $0.25.
- Downloads last month
- 360
We're not able to determine the quantization variants.
Model tree for Q1ngMang/Ling-3.0-tiny-sub3bit-PPLp10-GGUF
Base model
inclusionAI/Ling-3.0-tiny