Instructions to use prithivMLmods/Cerium-Qwen3-R1-Dev-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use prithivMLmods/Cerium-Qwen3-R1-Dev-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="prithivMLmods/Cerium-Qwen3-R1-Dev-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("prithivMLmods/Cerium-Qwen3-R1-Dev-GGUF", dtype="auto") - llama-cpp-python
How to use prithivMLmods/Cerium-Qwen3-R1-Dev-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="prithivMLmods/Cerium-Qwen3-R1-Dev-GGUF", filename=" Cerium-Qwen3-R1-Dev.BF16.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use prithivMLmods/Cerium-Qwen3-R1-Dev-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf prithivMLmods/Cerium-Qwen3-R1-Dev-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf prithivMLmods/Cerium-Qwen3-R1-Dev-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf prithivMLmods/Cerium-Qwen3-R1-Dev-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf prithivMLmods/Cerium-Qwen3-R1-Dev-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 prithivMLmods/Cerium-Qwen3-R1-Dev-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf prithivMLmods/Cerium-Qwen3-R1-Dev-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 prithivMLmods/Cerium-Qwen3-R1-Dev-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf prithivMLmods/Cerium-Qwen3-R1-Dev-GGUF:Q4_K_M
Use Docker
docker model run hf.co/prithivMLmods/Cerium-Qwen3-R1-Dev-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use prithivMLmods/Cerium-Qwen3-R1-Dev-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "prithivMLmods/Cerium-Qwen3-R1-Dev-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": "prithivMLmods/Cerium-Qwen3-R1-Dev-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/prithivMLmods/Cerium-Qwen3-R1-Dev-GGUF:Q4_K_M
- SGLang
How to use prithivMLmods/Cerium-Qwen3-R1-Dev-GGUF with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "prithivMLmods/Cerium-Qwen3-R1-Dev-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "prithivMLmods/Cerium-Qwen3-R1-Dev-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "prithivMLmods/Cerium-Qwen3-R1-Dev-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "prithivMLmods/Cerium-Qwen3-R1-Dev-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use prithivMLmods/Cerium-Qwen3-R1-Dev-GGUF with Ollama:
ollama run hf.co/prithivMLmods/Cerium-Qwen3-R1-Dev-GGUF:Q4_K_M
- Unsloth Studio
How to use prithivMLmods/Cerium-Qwen3-R1-Dev-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 prithivMLmods/Cerium-Qwen3-R1-Dev-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 prithivMLmods/Cerium-Qwen3-R1-Dev-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for prithivMLmods/Cerium-Qwen3-R1-Dev-GGUF to start chatting
- Pi
How to use prithivMLmods/Cerium-Qwen3-R1-Dev-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf prithivMLmods/Cerium-Qwen3-R1-Dev-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": "prithivMLmods/Cerium-Qwen3-R1-Dev-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use prithivMLmods/Cerium-Qwen3-R1-Dev-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf prithivMLmods/Cerium-Qwen3-R1-Dev-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 prithivMLmods/Cerium-Qwen3-R1-Dev-GGUF:Q4_K_M
Run Hermes
hermes
- Docker Model Runner
How to use prithivMLmods/Cerium-Qwen3-R1-Dev-GGUF with Docker Model Runner:
docker model run hf.co/prithivMLmods/Cerium-Qwen3-R1-Dev-GGUF:Q4_K_M
- Lemonade
How to use prithivMLmods/Cerium-Qwen3-R1-Dev-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull prithivMLmods/Cerium-Qwen3-R1-Dev-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Cerium-Qwen3-R1-Dev-GGUF-Q4_K_M
List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- Cerium-Qwen3-R1-Dev.BF16.gguf +3 -0
- Cerium-Qwen3-R1-Dev.F16.gguf +3 -0
- Cerium-Qwen3-R1-Dev.F32.gguf +3 -0
- Cerium-Qwen3-R1-Dev.Q2_K.gguf +3 -0
- Cerium-Qwen3-R1-Dev.Q3_K_L.gguf +3 -0
- Cerium-Qwen3-R1-Dev.Q3_K_M.gguf +3 -0
- Cerium-Qwen3-R1-Dev.Q3_K_S.gguf +3 -0
- Cerium-Qwen3-R1-Dev.Q4_K_M.gguf +3 -0
- Cerium-Qwen3-R1-Dev.Q4_K_S.gguf +3 -0
- Cerium-Qwen3-R1-Dev.Q5_K_M.gguf +3 -0
- Cerium-Qwen3-R1-Dev.Q5_K_S.gguf +3 -0
- Cerium-Qwen3-R1-Dev.Q6_K.gguf +3 -0
- Cerium-Qwen3-R1-Dev.Q8_0.gguf +3 -0
- .gitattributes +13 -0
Cerium-Qwen3-R1-Dev.BF16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6deb6507ceb320e89072c097955445943247bfe7ec7dd50ee6944c09e0d3acf7
|
| 3 |
+
size 1198182688
|
Cerium-Qwen3-R1-Dev.F16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d359aef1e318987ea2b4220b4c4fed5fa03b6b46c83ac7e9d099a22985bf1262
|
| 3 |
+
size 1198182688
|
Cerium-Qwen3-R1-Dev.F32.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:26fc4c7e35def51c03e01197128922b645099120ea2a97e9e658d0a9e8f55890
|
| 3 |
+
size 2390151456
|
Cerium-Qwen3-R1-Dev.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d7939f5d3e8f273ebc17f99e58962ac215e3767128ed962a3fdee1f55f1f866b
|
| 3 |
+
size 296238368
|
Cerium-Qwen3-R1-Dev.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:947d8a5c386285080f14b658fc759404f8aa7a6dcef9c48a36d8c42c533f26a7
|
| 3 |
+
size 368491808
|
Cerium-Qwen3-R1-Dev.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:001e8ca2c0b040a1d398e2fee8c6022b976957b2279b37bbc8fbe448858cb965
|
| 3 |
+
size 347127072
|
Cerium-Qwen3-R1-Dev.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ad45bbc4766ce8ceae21a25136b83b7f60b9c43ca3756d8b29c560da71cf6dc7
|
| 3 |
+
size 323075360
|
Cerium-Qwen3-R1-Dev.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e1cd55fc21e70f3131562c7a314d3885cc8461130e28163b904eccb62634d560
|
| 3 |
+
size 396705056
|
Cerium-Qwen3-R1-Dev.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:69f25a6a75382ac6f930fa0a3bd3de750b38676769be1b30e8e6083916dd34fc
|
| 3 |
+
size 383270176
|
Cerium-Qwen3-R1-Dev.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:196fd631682adf3367e1e0a33a77d8df8063fbc5238318bed3834f2f0d2b33b8
|
| 3 |
+
size 444415264
|
Cerium-Qwen3-R1-Dev.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e6b1754478453aff9040da3a41fbbc95e2f0a75a12fd74c7158ae23bd98090f6
|
| 3 |
+
size 436616480
|
Cerium-Qwen3-R1-Dev.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ac4480f7a571754c4ee603a5b0f617e2d87d69980ba7e51361b14ae70cae33e1
|
| 3 |
+
size 495107360
|
Cerium-Qwen3-R1-Dev.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1eb5d0207eb89020e408f5b7351123e52027eab7a5527767560b9c637161cbf5
|
| 3 |
+
size 639447328
|
.gitattributes
CHANGED
|
@@ -33,3 +33,16 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
[[:space:]]Cerium-Qwen3-R1-Dev.BF16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
[[:space:]]Cerium-Qwen3-R1-Dev.F16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
[[:space:]]Cerium-Qwen3-R1-Dev.F32.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
[[:space:]]Cerium-Qwen3-R1-Dev.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
[[:space:]]Cerium-Qwen3-R1-Dev.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
[[:space:]]Cerium-Qwen3-R1-Dev.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
[[:space:]]Cerium-Qwen3-R1-Dev.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
[[:space:]]Cerium-Qwen3-R1-Dev.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
[[:space:]]Cerium-Qwen3-R1-Dev.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
[[:space:]]Cerium-Qwen3-R1-Dev.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
[[:space:]]Cerium-Qwen3-R1-Dev.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
[[:space:]]Cerium-Qwen3-R1-Dev.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
[[:space:]]Cerium-Qwen3-R1-Dev.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|