Instructions to use kingjones777/Ling-3.0-flash-Research-ROCmFP4-STRIX_LEAN-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 kingjones777/Ling-3.0-flash-Research-ROCmFP4-STRIX_LEAN-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 kingjones777/Ling-3.0-flash-Research-ROCmFP4-STRIX_LEAN-GGUF # Run inference directly in the terminal: llama cli -hf kingjones777/Ling-3.0-flash-Research-ROCmFP4-STRIX_LEAN-GGUF
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf kingjones777/Ling-3.0-flash-Research-ROCmFP4-STRIX_LEAN-GGUF # Run inference directly in the terminal: llama cli -hf kingjones777/Ling-3.0-flash-Research-ROCmFP4-STRIX_LEAN-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 kingjones777/Ling-3.0-flash-Research-ROCmFP4-STRIX_LEAN-GGUF # Run inference directly in the terminal: ./llama-cli -hf kingjones777/Ling-3.0-flash-Research-ROCmFP4-STRIX_LEAN-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 kingjones777/Ling-3.0-flash-Research-ROCmFP4-STRIX_LEAN-GGUF # Run inference directly in the terminal: ./build/bin/llama-cli -hf kingjones777/Ling-3.0-flash-Research-ROCmFP4-STRIX_LEAN-GGUF
Use Docker
docker model run hf.co/kingjones777/Ling-3.0-flash-Research-ROCmFP4-STRIX_LEAN-GGUF
- LM Studio
- Jan
- vLLM
How to use kingjones777/Ling-3.0-flash-Research-ROCmFP4-STRIX_LEAN-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "kingjones777/Ling-3.0-flash-Research-ROCmFP4-STRIX_LEAN-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": "kingjones777/Ling-3.0-flash-Research-ROCmFP4-STRIX_LEAN-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/kingjones777/Ling-3.0-flash-Research-ROCmFP4-STRIX_LEAN-GGUF
- Ollama
How to use kingjones777/Ling-3.0-flash-Research-ROCmFP4-STRIX_LEAN-GGUF with Ollama:
ollama run hf.co/kingjones777/Ling-3.0-flash-Research-ROCmFP4-STRIX_LEAN-GGUF
- Unsloth Desktop
- Pi
How to use kingjones777/Ling-3.0-flash-Research-ROCmFP4-STRIX_LEAN-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf kingjones777/Ling-3.0-flash-Research-ROCmFP4-STRIX_LEAN-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": "kingjones777/Ling-3.0-flash-Research-ROCmFP4-STRIX_LEAN-GGUF" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use kingjones777/Ling-3.0-flash-Research-ROCmFP4-STRIX_LEAN-GGUF with Docker Model Runner:
docker model run hf.co/kingjones777/Ling-3.0-flash-Research-ROCmFP4-STRIX_LEAN-GGUF
- Lemonade
How to use kingjones777/Ling-3.0-flash-Research-ROCmFP4-STRIX_LEAN-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull kingjones777/Ling-3.0-flash-Research-ROCmFP4-STRIX_LEAN-GGUF
Run and chat with the model
lemonade run user.Ling-3.0-flash-Research-ROCmFP4-STRIX_LEAN-GGUF-{{QUANT_TAG}}List all available models
lemonade list
- Hermes Agent
How to use kingjones777/Ling-3.0-flash-Research-ROCmFP4-STRIX_LEAN-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 kingjones777/Ling-3.0-flash-Research-ROCmFP4-STRIX_LEAN-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 kingjones777/Ling-3.0-flash-Research-ROCmFP4-STRIX_LEAN-GGUF
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use kingjones777/Ling-3.0-flash-Research-ROCmFP4-STRIX_LEAN-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf kingjones777/Ling-3.0-flash-Research-ROCmFP4-STRIX_LEAN-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 "kingjones777/Ling-3.0-flash-Research-ROCmFP4-STRIX_LEAN-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-flash โ Research ROCmFP4 STRIX_LEAN (ftype 106)
This is a research build. It is not my serving build โ grab Ling-3.0-flash-ROCmFP4-STRIX_LEAN-GGUF instead if you just want to run the model.
โ ๏ธ Read this before you download โ "Research" here means the QUANT RECIPE
I build a research family alongside my serving builds so I can measure what individual quantization choices actually cost. "Research" refers to how I quantized this file. It is the same aligned inclusionAI/Ling-3.0-flash checkpoint as my serving build โ same weights, same behavior, same alignment. It is not uncensored, not ablated, not a different model. If you came here expecting a modified model, this isn't one.
What's different is one deliberate choice: I ran the bare ftype 106 path โ no --output-tensor-type override โ so the LM head stays at 4-bit.
| this research build | my serving build | |
|---|---|---|
output.weight |
Q4_0_ROCMFP4_FAST (101) โ 4-bit | Q6_K (14) โ protected |
token_embd.weight |
Q5_K (13) | Q5_K (13) |
| decode | 32.0 t/s | 30.7 t/s |
| bytes | 68,020,249,248 | 68,136,565,408 |
So this is the faster, cheaper, lower-fidelity half of a matched pair. It exists so the cost of head protection is a measured number instead of an assumption: on this model, protecting the head costs about 1.3 t/s and 116 MB. I think that's worth paying, which is why my serving build pays it โ but now you can see the trade instead of taking my word for it.
โ ๏ธ A 4-bit LM head is a real quality risk on this architecture. I've seen unprotected heads take a model from 4/5 to 1/5 on my own evals. Use this build to study that effect, not to serve users.
โ ๏ธ Requires a ROCmFPX-capable llama.cpp build โ these tensor types aren't in mainline, so stock llama.cpp / Ollama / LM Studio won't load it.
Receipts
| bytes | 68,020,249,248 |
| sha256 | f7eff54932de653b7ac2b1ee04d0f5d0d9c26a94b484bbcea07a110fef6588e8 |
general.file_type |
106 |
| arch / tensors / ctx | bailingmoe3 / 938 / 262144 |
| blocks | 43, nextn_predict_layers = 1 (MTP head at blk.42) |
| dry-run โ built | 64862.93 MiB (4.27 BPW) โ +6.235 MiB |
| decode | 32.0 t/s (prompt 103.4 t/s) |
Heads read back from the built file by exact tensor name โ never a substring, since output.weight matches inside attn_output.weight:
| tensor (exact name) | type |
|---|---|
output.weight |
Q4_0_ROCMFP4_FAST (101) |
token_embd.weight |
Q5_K (13) |
Source: inclusionAI/Ling-3.0-flash @ 42766a814ab117e75e2e61465d5e131b72d931a3 โ 255,091,083,232-byte BF16 GGUF (938 tensors) โ quantized.
llama-quantize \
Ling-3.0-flash-I-BF16.gguf \
Ling-3.0-flash-I-Research-ROCmFP4-STRIX_LEAN.gguf \
Q4_0_ROCMFP4_STRIX_LEAN 16
Note the absence of --output-tensor-type โ that omission is the experiment.
Measured on my own hardware (gfx1151, Strix Halo). Every number is read back from the built file.
- Downloads last month
- 171
We're not able to determine the quantization variants.
Model tree for kingjones777/Ling-3.0-flash-Research-ROCmFP4-STRIX_LEAN-GGUF
Base model
inclusionAI/Ling-3.0-flash