Instructions to use mradermacher/Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004-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 mradermacher/Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004-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 mradermacher/Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004-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 mradermacher/Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004-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 mradermacher/Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004-GGUF with Ollama:
ollama run hf.co/mradermacher/Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004-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 mradermacher/Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004-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 mradermacher/Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for mradermacher/Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004-GGUF to start chatting
- Pi
How to use mradermacher/Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf mradermacher/Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004-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": "mradermacher/Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mradermacher/Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004-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 mradermacher/Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004-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 mradermacher/Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use mradermacher/Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf mradermacher/Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004-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 "mradermacher/Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004-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 mradermacher/Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from nico1
Browse files- .gitattributes +12 -0
- Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004.IQ4_XS.gguf +3 -0
- Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004.Q2_K.gguf +3 -0
- Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004.Q3_K_L.gguf +3 -0
- Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004.Q3_K_M.gguf +3 -0
- Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004.Q3_K_S.gguf +3 -0
- Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004.Q4_K_M.gguf +3 -0
- Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004.Q4_K_S.gguf +3 -0
- Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004.Q5_K_M.gguf +3 -0
- Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004.Q5_K_S.gguf +3 -0
- Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004.Q6_K.gguf +3 -0
- Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004.Q8_0.gguf +3 -0
- Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004.f16.gguf +3 -0
|
@@ -33,3 +33,15 @@ 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 |
+
Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Qwen3-4B-Fiction-On-Fire-Series-7-Model-1004.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c27c6ba8c105830f9adbed02b0bbb73053a5450a0e36f1cd8e8ba59d592fac59
|
| 3 |
+
size 2286318080
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0bd92ecb9f9ecae0acab73551cecd6c64931b1d1f4a19af9b260fc238cb8fe9f
|
| 3 |
+
size 1669501440
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f8f6404b1a99051251cb03ed8d053782792143f8081a408dbac7fe7f92ef7058
|
| 3 |
+
size 2239787520
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3897c528a7c6fb679a7294dff28df617a4284957cead677bfde900dd7471122e
|
| 3 |
+
size 2075619840
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:68aecbb22d6ea83786c0ba804248d2b3d51b1542597b049db5e6e743c792504f
|
| 3 |
+
size 1886999040
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:273895e49ba13a9280b72c0ff6af015e051968fa5d8792693b8a0c026a0e72ea
|
| 3 |
+
size 2497282560
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:374246b55525f56425cfc37a6dde8bb7f852a2952910eebf42b8cc91010183cb
|
| 3 |
+
size 2383311360
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d8f982156fa9344a8a30f4b413aaa0f00140087f1b8f5d26cf1d007778c25cf7
|
| 3 |
+
size 2889515520
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:02f01ced1184f97c08b3f75bc8444f7be821710a80c7f246c2ebd7e4a5d7bfa2
|
| 3 |
+
size 2823713280
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:29ee03df28ed69272370035cfd0673d8f0cffb906f1ea125f9338ad893695c7e
|
| 3 |
+
size 3306263040
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:77ef7a155433c411b5d11b6b154a9ebffde9568ad2f50a0f480a7f72ae64e33b
|
| 3 |
+
size 4280407040
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:208e6338bc395cff35d0442da5dac4a873bcf83b9dd25401844f8c8a1a27c372
|
| 3 |
+
size 8051287040
|