Instructions to use mradermacher/bartleby-Qwen3-4B-2507-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/bartleby-Qwen3-4B-2507-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/bartleby-Qwen3-4B-2507-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/bartleby-Qwen3-4B-2507-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/bartleby-Qwen3-4B-2507-GGUF", filename="bartleby-Qwen3-4B-2507.IQ4_XS.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/bartleby-Qwen3-4B-2507-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/bartleby-Qwen3-4B-2507-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/bartleby-Qwen3-4B-2507-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/bartleby-Qwen3-4B-2507-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/bartleby-Qwen3-4B-2507-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/bartleby-Qwen3-4B-2507-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/bartleby-Qwen3-4B-2507-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/bartleby-Qwen3-4B-2507-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/bartleby-Qwen3-4B-2507-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/bartleby-Qwen3-4B-2507-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/bartleby-Qwen3-4B-2507-GGUF with Ollama:
ollama run hf.co/mradermacher/bartleby-Qwen3-4B-2507-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/bartleby-Qwen3-4B-2507-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/bartleby-Qwen3-4B-2507-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/bartleby-Qwen3-4B-2507-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/bartleby-Qwen3-4B-2507-GGUF to start chatting
- Pi
How to use mradermacher/bartleby-Qwen3-4B-2507-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/bartleby-Qwen3-4B-2507-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/bartleby-Qwen3-4B-2507-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mradermacher/bartleby-Qwen3-4B-2507-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/bartleby-Qwen3-4B-2507-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/bartleby-Qwen3-4B-2507-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use mradermacher/bartleby-Qwen3-4B-2507-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/bartleby-Qwen3-4B-2507-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/bartleby-Qwen3-4B-2507-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/bartleby-Qwen3-4B-2507-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/bartleby-Qwen3-4B-2507-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/bartleby-Qwen3-4B-2507-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/bartleby-Qwen3-4B-2507-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.bartleby-Qwen3-4B-2507-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from leia
Browse files- .gitattributes +12 -0
- bartleby-Qwen3-4B-2507.IQ4_XS.gguf +3 -0
- bartleby-Qwen3-4B-2507.Q2_K.gguf +3 -0
- bartleby-Qwen3-4B-2507.Q3_K_L.gguf +3 -0
- bartleby-Qwen3-4B-2507.Q3_K_M.gguf +3 -0
- bartleby-Qwen3-4B-2507.Q3_K_S.gguf +3 -0
- bartleby-Qwen3-4B-2507.Q4_K_M.gguf +3 -0
- bartleby-Qwen3-4B-2507.Q4_K_S.gguf +3 -0
- bartleby-Qwen3-4B-2507.Q5_K_M.gguf +3 -0
- bartleby-Qwen3-4B-2507.Q5_K_S.gguf +3 -0
- bartleby-Qwen3-4B-2507.Q6_K.gguf +3 -0
- bartleby-Qwen3-4B-2507.Q8_0.gguf +3 -0
- bartleby-Qwen3-4B-2507.f16.gguf +3 -0
.gitattributes
CHANGED
|
@@ -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 |
+
bartleby-Qwen3-4B-2507.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
bartleby-Qwen3-4B-2507.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
bartleby-Qwen3-4B-2507.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
bartleby-Qwen3-4B-2507.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
bartleby-Qwen3-4B-2507.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
bartleby-Qwen3-4B-2507.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
bartleby-Qwen3-4B-2507.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
bartleby-Qwen3-4B-2507.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
bartleby-Qwen3-4B-2507.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
bartleby-Qwen3-4B-2507.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
bartleby-Qwen3-4B-2507.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
bartleby-Qwen3-4B-2507.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
bartleby-Qwen3-4B-2507.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:24754c8df8633260d70fab93ed9be32769ce1dd36a2c20c8a33c8327021e1834
|
| 3 |
+
size 2286316768
|
bartleby-Qwen3-4B-2507.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:50772170ecc02bef73ff2b1b703600f80ed35e24e57f62d46fb90d840ffdd3ac
|
| 3 |
+
size 1669500128
|
bartleby-Qwen3-4B-2507.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1b0473b494f49b1b169debf2d837c9b0f22a45c6faadaffe6c8094e847b80ee7
|
| 3 |
+
size 2239786208
|
bartleby-Qwen3-4B-2507.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:008473f827c1f13fd26c7dcbd226082afc01da4711e5fd7d04c3f95758fb1a27
|
| 3 |
+
size 2075618528
|
bartleby-Qwen3-4B-2507.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:041d087ac30fd53fa569efdc23d25dbf71233e6c90db6a88c1aadb31616930f3
|
| 3 |
+
size 1886997728
|
bartleby-Qwen3-4B-2507.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8845264fba9dd5545a22109d0858473b1866464b6d5a43c295fe7cd0e4393043
|
| 3 |
+
size 2497281248
|
bartleby-Qwen3-4B-2507.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d74d7eafb2980a63f81a27462ace9d6932955e0f942923fbbe46e7795961c5bb
|
| 3 |
+
size 2383310048
|
bartleby-Qwen3-4B-2507.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e754510a57fb308c7b620a3e3fa84ec9ee24c1572809728f69042d8d363c45d3
|
| 3 |
+
size 2889514208
|
bartleby-Qwen3-4B-2507.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:622038fbadbefdaae7648a147e01853d1090ad1bb17ba023086fc6fde025c78c
|
| 3 |
+
size 2823711968
|
bartleby-Qwen3-4B-2507.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7f7b78ec7d3a0e30fb57f3dd848c1f5d6c67a1b921a106085702f13e2887a430
|
| 3 |
+
size 3306261728
|
bartleby-Qwen3-4B-2507.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:442434b3067e669616f1c8411318b93d25d2b4f1f88fc253b89343c2a506d6b8
|
| 3 |
+
size 4280405728
|
bartleby-Qwen3-4B-2507.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:384716217c041e70e5a40cec8ea854ffe771ca0dbabaa0ea8ddbc76f25a335d7
|
| 3 |
+
size 8051285728
|