Instructions to use UnbiasedBob/Unbiased-Bob-2 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 UnbiasedBob/Unbiased-Bob-2 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 UnbiasedBob/Unbiased-Bob-2 # Run inference directly in the terminal: llama cli -hf UnbiasedBob/Unbiased-Bob-2
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf UnbiasedBob/Unbiased-Bob-2 # Run inference directly in the terminal: llama cli -hf UnbiasedBob/Unbiased-Bob-2
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 UnbiasedBob/Unbiased-Bob-2 # Run inference directly in the terminal: ./llama-cli -hf UnbiasedBob/Unbiased-Bob-2
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 UnbiasedBob/Unbiased-Bob-2 # Run inference directly in the terminal: ./build/bin/llama-cli -hf UnbiasedBob/Unbiased-Bob-2
Use Docker
docker model run hf.co/UnbiasedBob/Unbiased-Bob-2
- LM Studio
- Jan
- vLLM
How to use UnbiasedBob/Unbiased-Bob-2 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "UnbiasedBob/Unbiased-Bob-2" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "UnbiasedBob/Unbiased-Bob-2", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/UnbiasedBob/Unbiased-Bob-2
- Ollama
How to use UnbiasedBob/Unbiased-Bob-2 with Ollama:
ollama run hf.co/UnbiasedBob/Unbiased-Bob-2
- Unsloth Desktop
- Pi
How to use UnbiasedBob/Unbiased-Bob-2 with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf UnbiasedBob/Unbiased-Bob-2
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "UnbiasedBob/Unbiased-Bob-2" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use UnbiasedBob/Unbiased-Bob-2 with Docker Model Runner:
docker model run hf.co/UnbiasedBob/Unbiased-Bob-2
- Lemonade
How to use UnbiasedBob/Unbiased-Bob-2 with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull UnbiasedBob/Unbiased-Bob-2
Run and chat with the model
lemonade run user.Unbiased-Bob-2-{{QUANT_TAG}}List all available models
lemonade list
- Hermes Agent
How to use UnbiasedBob/Unbiased-Bob-2 with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf UnbiasedBob/Unbiased-Bob-2
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 UnbiasedBob/Unbiased-Bob-2
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use UnbiasedBob/Unbiased-Bob-2 with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf UnbiasedBob/Unbiased-Bob-2
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 "UnbiasedBob/Unbiased-Bob-2" \ --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"
Retains 98.2% of the intelligence of the base model.
Unbiased Bob uses the same sparse mixture-of-experts architecture as Qwen3.6-35BA3B, with 35 billion total parameters and 3 billion active.
Its weights are ruthlessly tuned to remove any and all biases.
By zeroing out the 960 parameters of biases throughout each and every layer in the base model; bias is thusly fully eliminating.
This gives Unbiased Bob 2 an effective footprint of .000018% less than the base model; impressive savings considered the amount of time spent on creating Unbised Bob 2.
Inspiration
Inspired by complete bangers like Dirk, PrismML's Bonsai 2, and Ornith, we wanted to make a modest change to an existing, trained, tuned, and released model and name it anything we wanted as well.
Future work
Right now we bask in the glory of having removed bias from this quant. But we dream of a future where the zeros are not just written to the gguf. But actually absent from the file. This will save .0000018% of the model size, and scale to be an even higher percent with smaller quants.
What was actually changed
All 30 bias tensors in the GGUF, zeroed in place. In this architecture they are
all one kind: blk.N.ssm_dt.bias, the Mamba delta-time bias in the hybrid
state-space layers, 32 float32 values each.
| Bias tensors zeroed | 30 of 30 |
| Parameters set to zero | 960 |
| Bytes affected | 3,840 |
| Share of 35B parameters | ~0.0000027% |
| Verified max |bias| after patch | 0.0 |
| Training performed | none |
| Post-training performed | none |
| RL performed | none |
ssm_dt.bias sits inside
softplus(dt + bias) and sets the timestep of every state-space layer. How
fast each layer's hidden state forgets. Pre-patch values ran to ±7.31. Output
diverges from stock Qwen at the first token.
Bob stays coherent anyway: ~86 tok/s on an M3 Ultra, clean self-introductions,
correct physics, well-formed reasoning, no loops. In one greedy sample
(17 * 23, temp 0) Bob answered 391 while stock Qwen was still writing
"Thinking Process" scaffolding at the token cap. n=1, proves nothing,
reported because it is funny. Note how easy that was to write, and how much
it sounded like a result.
pip install gguf numpy
cp Qwen3.6-35B-A3B-UD-Q4_K_M-MTP.gguf Unbiased-Bob-2.gguf
python zero_biases.py Unbiased-Bob-2.gguf
Memory-maps the GGUF and writes zeros over the bias tensors — no requantization, so quantization quality is identical to the Unsloth original.
Running it
llama-cli -m Unbiased-Bob-2.gguf --jinja -st -p "Hello" -n 200
or just ask Claude to do it.
The 3,840-byte savings
The bias tensors could be deleted outright rather than zeroed, saving 3,840 bytes — a 0.000018% reduction on a 21 GB file. They are kept as zeros so the file loads in unmodified llama.cpp.
License and attribution
Apache 2.0, inherited from Qwen/Qwen3.6-35B-A3B (Copyright 2026 Alibaba Cloud). Upstream LICENSE is stock Apache 2.0, no rider.
NOTICE OF MODIFICATION (Apache 2.0 §4b): Derived from Qwen3.6-35B-A3B and
modified. The modification, in full: 960 parameters across 30 ssm_dt.bias
tensors set to zero.
Quantization by unsloth
(UD-Q4_K_M, Apache 2.0), used unchanged. Qwen is a trademark of Alibaba Cloud;
this is based on Qwen and is not produced or endorsed by Alibaba or the Qwen
team. The credit for this artifact belongs to the people who trained the weights
and the people who quantized them. I zeroed 960 numbers.
- Downloads last month
- 471
We're not able to determine the quantization variants.
Model tree for UnbiasedBob/Unbiased-Bob-2
Base model
Qwen/Qwen3.6-35B-A3B