Instructions to use bloomer010/Ling-3.0-tiny-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 bloomer010/Ling-3.0-tiny-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 bloomer010/Ling-3.0-tiny-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf bloomer010/Ling-3.0-tiny-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf bloomer010/Ling-3.0-tiny-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf bloomer010/Ling-3.0-tiny-GGUF:Q4_K_M
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 bloomer010/Ling-3.0-tiny-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf bloomer010/Ling-3.0-tiny-GGUF:Q4_K_M
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 bloomer010/Ling-3.0-tiny-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf bloomer010/Ling-3.0-tiny-GGUF:Q4_K_M
Use Docker
docker model run hf.co/bloomer010/Ling-3.0-tiny-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use bloomer010/Ling-3.0-tiny-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "bloomer010/Ling-3.0-tiny-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": "bloomer010/Ling-3.0-tiny-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/bloomer010/Ling-3.0-tiny-GGUF:Q4_K_M
- Ollama
How to use bloomer010/Ling-3.0-tiny-GGUF with Ollama:
ollama run hf.co/bloomer010/Ling-3.0-tiny-GGUF:Q4_K_M
- Unsloth Studio
How to use bloomer010/Ling-3.0-tiny-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for bloomer010/Ling-3.0-tiny-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for bloomer010/Ling-3.0-tiny-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for bloomer010/Ling-3.0-tiny-GGUF to start chatting
- Pi
How to use bloomer010/Ling-3.0-tiny-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf bloomer010/Ling-3.0-tiny-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "bloomer010/Ling-3.0-tiny-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- OpenClaw new
How to use bloomer010/Ling-3.0-tiny-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf bloomer010/Ling-3.0-tiny-GGUF:Q4_K_M
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 "bloomer010/Ling-3.0-tiny-GGUF:Q4_K_M" \ --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"
- Docker Model Runner
How to use bloomer010/Ling-3.0-tiny-GGUF with Docker Model Runner:
docker model run hf.co/bloomer010/Ling-3.0-tiny-GGUF:Q4_K_M
- Lemonade
How to use bloomer010/Ling-3.0-tiny-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull bloomer010/Ling-3.0-tiny-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Ling-3.0-tiny-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use bloomer010/Ling-3.0-tiny-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 bloomer010/Ling-3.0-tiny-GGUF:Q4_K_M
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 bloomer010/Ling-3.0-tiny-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
Add Q1_0, IQ2_M, Q3_K_M, Q5_K_S, and Q5_K_M quants
Browse files- .gitattributes +6 -0
- Ling-3.0-tiny-IQ2_M.gguf +3 -0
- Ling-3.0-tiny-Q1_0.gguf +3 -0
- Ling-3.0-tiny-Q3_K_M.gguf +3 -0
- Ling-3.0-tiny-Q5_K_M.gguf +3 -0
- Ling-3.0-tiny-Q5_K_S.gguf +3 -0
- Ling-3.0-tiny-imatrix.gguf +3 -0
- README.md +16 -0
.gitattributes
CHANGED
|
@@ -38,3 +38,9 @@ Ling-3.0-tiny-MXFP4_MOE.gguf filter=lfs diff=lfs merge=lfs -text
|
|
| 38 |
Ling-3.0-tiny-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
Ling-3.0-tiny-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
Ling-3.0-tiny-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 38 |
Ling-3.0-tiny-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
Ling-3.0-tiny-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
Ling-3.0-tiny-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Ling-3.0-tiny-IQ2_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Ling-3.0-tiny-Q1_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Ling-3.0-tiny-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Ling-3.0-tiny-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Ling-3.0-tiny-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Ling-3.0-tiny-imatrix.gguf filter=lfs diff=lfs merge=lfs -text
|
Ling-3.0-tiny-IQ2_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1e8482730ec165844ab7339b8f553d15fb87ff10c1b2c217f051f51bbc70404d
|
| 3 |
+
size 2704009344
|
Ling-3.0-tiny-Q1_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:128aac216a465fccd763cfe194dd76e8262cffc24a1f500bc06899a7810b0dac
|
| 3 |
+
size 1300255584
|
Ling-3.0-tiny-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3481953f64fa2dad7e22a254faba1681ab5b83061ac378ea144704fe6019bba2
|
| 3 |
+
size 3841570656
|
Ling-3.0-tiny-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:537687e9a912a4bd469535c16393d674bbb37b6991524eca00f942e0902aaefa
|
| 3 |
+
size 5635443552
|
Ling-3.0-tiny-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:79811bcfb6d1b96bfb08f5582ebd1373d8e0428cdb84cd50edfbdabdf4a9095a
|
| 3 |
+
size 5482531680
|
Ling-3.0-tiny-imatrix.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:566f65b22c6f45f4b46c23982a35fd04a0b093fa3577647d476bb9c7472c37c9
|
| 3 |
+
size 44016704
|
README.md
CHANGED
|
@@ -31,8 +31,23 @@ Upstream PR: https://github.com/ggml-org/llama.cpp/pull/26608
|
|
| 31 |
| BF16 | 15.8 GB |
|
| 32 |
| Q8_0 | 8.41 GB |
|
| 33 |
| Q6_K | 6.50 GB |
|
|
|
|
|
|
|
| 34 |
| Q4_K_M | 4.82 GB |
|
| 35 |
| MXFP4_MOE | 4.72 GB |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 36 |
|
| 37 |
## Architecture
|
| 38 |
|
|
@@ -48,6 +63,7 @@ Upstream PR: https://github.com/ggml-org/llama.cpp/pull/26608
|
|
| 48 |
- BF16 conversion completed with 526 tensors, including all 18 Q-LoRA tensors
|
| 49 |
- CPU and CUDA architecture tests passed
|
| 50 |
- BF16, Q8_0, Q6_K, Q4_K_M, and MXFP4_MOE loaded and generated tokens with CUDA
|
|
|
|
| 51 |
- CUDA testing used an RTX 4070 and RTX 3060
|
| 52 |
|
| 53 |
## Build
|
|
|
|
| 31 |
| BF16 | 15.8 GB |
|
| 32 |
| Q8_0 | 8.41 GB |
|
| 33 |
| Q6_K | 6.50 GB |
|
| 34 |
+
| Q5_K_M | 5.64 GB |
|
| 35 |
+
| Q5_K_S | 5.48 GB |
|
| 36 |
| Q4_K_M | 4.82 GB |
|
| 37 |
| MXFP4_MOE | 4.72 GB |
|
| 38 |
+
| Q3_K_M | 3.84 GB |
|
| 39 |
+
| IQ2_M | 2.70 GB |
|
| 40 |
+
| Q1_0 | 1.30 GB |
|
| 41 |
+
|
| 42 |
+
## Importance Matrix
|
| 43 |
+
|
| 44 |
+
IQ2_M was generated with a model-specific importance matrix:
|
| 45 |
+
|
| 46 |
+
- Wikitext-2 raw training text
|
| 47 |
+
- 100 chunks
|
| 48 |
+
- 512 tokens per chunk
|
| 49 |
+
- 51,200 calibration tokens total
|
| 50 |
+
- 332 matrix entries
|
| 51 |
|
| 52 |
## Architecture
|
| 53 |
|
|
|
|
| 63 |
- BF16 conversion completed with 526 tensors, including all 18 Q-LoRA tensors
|
| 64 |
- CPU and CUDA architecture tests passed
|
| 65 |
- BF16, Q8_0, Q6_K, Q4_K_M, and MXFP4_MOE loaded and generated tokens with CUDA
|
| 66 |
+
- Q1_0, IQ2_M, Q3_K_M, Q5_K_S, and Q5_K_M passed CPU-only prompt processing and token generation tests
|
| 67 |
- CUDA testing used an RTX 4070 and RTX 3060
|
| 68 |
|
| 69 |
## Build
|