Instructions to use mradermacher/bartleby-qwen3.5-4b-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/bartleby-qwen3.5-4b-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/bartleby-qwen3.5-4b-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/bartleby-qwen3.5-4b-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/bartleby-qwen3.5-4b-GGUF", filename="bartleby-qwen3.5-4b.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.5-4b-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.5-4b-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/bartleby-qwen3.5-4b-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.5-4b-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/bartleby-qwen3.5-4b-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.5-4b-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/bartleby-qwen3.5-4b-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.5-4b-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/bartleby-qwen3.5-4b-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/bartleby-qwen3.5-4b-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/bartleby-qwen3.5-4b-GGUF with Ollama:
ollama run hf.co/mradermacher/bartleby-qwen3.5-4b-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/bartleby-qwen3.5-4b-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.5-4b-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.5-4b-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.5-4b-GGUF to start chatting
- Pi
How to use mradermacher/bartleby-qwen3.5-4b-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.5-4b-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.5-4b-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mradermacher/bartleby-qwen3.5-4b-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.5-4b-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.5-4b-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use mradermacher/bartleby-qwen3.5-4b-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.5-4b-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.5-4b-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.5-4b-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/bartleby-qwen3.5-4b-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/bartleby-qwen3.5-4b-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/bartleby-qwen3.5-4b-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.bartleby-qwen3.5-4b-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from nico1
Browse files- .gitattributes +12 -0
- bartleby-qwen3.5-4b.IQ4_XS.gguf +3 -0
- bartleby-qwen3.5-4b.Q2_K.gguf +3 -0
- bartleby-qwen3.5-4b.Q3_K_L.gguf +3 -0
- bartleby-qwen3.5-4b.Q3_K_M.gguf +3 -0
- bartleby-qwen3.5-4b.Q3_K_S.gguf +3 -0
- bartleby-qwen3.5-4b.Q4_K_M.gguf +3 -0
- bartleby-qwen3.5-4b.Q4_K_S.gguf +3 -0
- bartleby-qwen3.5-4b.Q5_K_M.gguf +3 -0
- bartleby-qwen3.5-4b.Q5_K_S.gguf +3 -0
- bartleby-qwen3.5-4b.Q6_K.gguf +3 -0
- bartleby-qwen3.5-4b.Q8_0.gguf +3 -0
- bartleby-qwen3.5-4b.f16.gguf +3 -0
.gitattributes
CHANGED
|
@@ -35,3 +35,15 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
bartleby-qwen3.5-4b.mmproj-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
bartleby-qwen3.5-4b.mmproj-f16.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
bartleby-qwen3.5-4b.mmproj-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
bartleby-qwen3.5-4b.mmproj-f16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
bartleby-qwen3.5-4b.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
bartleby-qwen3.5-4b.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
bartleby-qwen3.5-4b.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
bartleby-qwen3.5-4b.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
bartleby-qwen3.5-4b.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
bartleby-qwen3.5-4b.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
bartleby-qwen3.5-4b.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
bartleby-qwen3.5-4b.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
bartleby-qwen3.5-4b.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
bartleby-qwen3.5-4b.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
bartleby-qwen3.5-4b.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
bartleby-qwen3.5-4b.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
bartleby-qwen3.5-4b.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7ff397fac56081a529f84a3bdb76aa71df9be825b6d1acbd537f242c1ba78549
|
| 3 |
+
size 2450387776
|
bartleby-qwen3.5-4b.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:afe085f62cd87d5e6f4bfef98d96abdd9e90bb45cc82995760ae14754f517ecb
|
| 3 |
+
size 1797505856
|
bartleby-qwen3.5-4b.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:85a24ff44f9f797b1c40d4b8f2d2ef5d6e6b2c7d7e188775dc0a32bef39155c7
|
| 3 |
+
size 2358401856
|
bartleby-qwen3.5-4b.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:17f725b033de11faea6629f4b460879ae0ebdeba223285a782deafa40fe11212
|
| 3 |
+
size 2257476416
|
bartleby-qwen3.5-4b.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:21e4e395e8e14792db55e1a84ca87887e0a37b363a3298f6c0292082f8b00782
|
| 3 |
+
size 2069879616
|
bartleby-qwen3.5-4b.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3b71924e87e74a0fba83ef4d9318e8f1e5fbe00009d9d9b315cb920c3c806345
|
| 3 |
+
size 2707514176
|
bartleby-qwen3.5-4b.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0470d621b3d392e444dc3b3066b07e21bcd99102257c58b7c0cf2bc69a770431
|
| 3 |
+
size 2557006656
|
bartleby-qwen3.5-4b.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2245057429590cc3364588687211da59445831b484c5e8f6d44139e60407685d
|
| 3 |
+
size 3108758336
|
bartleby-qwen3.5-4b.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ae3ce72be175dcb1331365ccd9231b46c4214bdd479c2a6380b88bde9d9f54da
|
| 3 |
+
size 2990035776
|
bartleby-qwen3.5-4b.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dd856873a502d69ed7a8c22ddac13cd79c99ab9009601ad99ac08169d8e0973a
|
| 3 |
+
size 3464055616
|
bartleby-qwen3.5-4b.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ea5ed7c8071deeb349ec101ab59a021c571a57c9240dc2dfaf67c58c86936806
|
| 3 |
+
size 4482403136
|
bartleby-qwen3.5-4b.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:271cbd41e94231c9bdff35638916ec228c2109b1fe472861dc07fc27e36fe4ec
|
| 3 |
+
size 8424393536
|