Instructions to use evalengine/unbound-e4b-gguf with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use evalengine/unbound-e4b-gguf with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="evalengine/unbound-e4b-gguf", filename="mmproj-unbound-e4b.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use evalengine/unbound-e4b-gguf with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf evalengine/unbound-e4b-gguf:Q4_K_M # Run inference directly in the terminal: llama-cli -hf evalengine/unbound-e4b-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 evalengine/unbound-e4b-gguf:Q4_K_M # Run inference directly in the terminal: llama-cli -hf evalengine/unbound-e4b-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 evalengine/unbound-e4b-gguf:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf evalengine/unbound-e4b-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 evalengine/unbound-e4b-gguf:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf evalengine/unbound-e4b-gguf:Q4_K_M
Use Docker
docker model run hf.co/evalengine/unbound-e4b-gguf:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use evalengine/unbound-e4b-gguf with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "evalengine/unbound-e4b-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": "evalengine/unbound-e4b-gguf", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/evalengine/unbound-e4b-gguf:Q4_K_M
- Ollama
How to use evalengine/unbound-e4b-gguf with Ollama:
ollama run hf.co/evalengine/unbound-e4b-gguf:Q4_K_M
- Unsloth Studio new
How to use evalengine/unbound-e4b-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 evalengine/unbound-e4b-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 evalengine/unbound-e4b-gguf to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for evalengine/unbound-e4b-gguf to start chatting
- Pi new
How to use evalengine/unbound-e4b-gguf with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf evalengine/unbound-e4b-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": "evalengine/unbound-e4b-gguf:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use evalengine/unbound-e4b-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 evalengine/unbound-e4b-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 evalengine/unbound-e4b-gguf:Q4_K_M
Run Hermes
hermes
- Docker Model Runner
How to use evalengine/unbound-e4b-gguf with Docker Model Runner:
docker model run hf.co/evalengine/unbound-e4b-gguf:Q4_K_M
- Lemonade
How to use evalengine/unbound-e4b-gguf with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull evalengine/unbound-e4b-gguf:Q4_K_M
Run and chat with the model
lemonade run user.unbound-e4b-gguf-Q4_K_M
List all available models
lemonade list
README: compact pass — keep essentials, drop redundancy
Browse files
README.md
CHANGED
|
@@ -18,101 +18,81 @@ pipeline_tag: text-generation
|
|
| 18 |
|
| 19 |
# Unbound E4B GGUF — *because there is no boundary*
|
| 20 |
|
| 21 |
-
> **No guarantee — use at your own risk.**
|
| 22 |
-
>
|
| 23 |
-
> as-is, with no warranty of any kind. You are solely responsible for how you
|
| 24 |
-
> use it and for complying with all applicable laws.
|
| 25 |
|
| 26 |
-
GGUF
|
| 27 |
-
for
|
| 28 |
-
[
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
Built by [Chromia](https://x.com/Chromia) and [Eval Engine](https://x.com/eval_engine).
|
| 32 |
|
| 33 |
## Available quants
|
| 34 |
|
| 35 |
-
Each quant lives in its own folder; inside, the model is split into
|
| 36 |
-
GGUFs
|
| 37 |
-
|
| 38 |
|
| 39 |
### Desktop builds (Ollama / llama.cpp / LM Studio)
|
| 40 |
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
desktop, won't load in browser.
|
| 44 |
|
| 45 |
| Quant | Folder | Parts | Total | Notes |
|
| 46 |
|---------|-------------|-------|---------|-------|
|
| 47 |
-
| Q2_K | `Q2_K/` | 4 | 4.08 GB | Smallest
|
| 48 |
-
| Q3_K_M | `Q3_K_M/` | 4 | 4.49 GB | Modest size win over Q4
|
| 49 |
-
| Q4_K_M | `Q4_K_M/` | 4 | 4.94 GB | **Recommended desktop default
|
| 50 |
| Q6_K | `Q6_K/` | 5 | 5.75 GB | Higher fidelity |
|
| 51 |
| Q8_0 | `Q8_0/` | 6 | 7.43 GB | Highest fidelity |
|
| 52 |
|
| 53 |
### Browser builds (wllama)
|
| 54 |
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
which shrinks the largest part below 2 GB at near-zero quality cost. The
|
| 59 |
-
folder names use a `-web` suffix to mark them.
|
| 60 |
|
| 61 |
-
| Quant variant
|
| 62 |
-
|---------------
|
| 63 |
-
|
|
| 64 |
-
|
|
| 65 |
|
| 66 |
-
|
| 67 |
-
|
| 68 |
-
llama.cpp will auto-stitch them too if you prefer the smaller embed quant for any
|
| 69 |
-
reason.
|
| 70 |
|
| 71 |
-
##
|
| 72 |
|
| 73 |
-
- **Creative
|
| 74 |
-
|
| 75 |
-
-
|
| 76 |
-
for
|
| 77 |
-
- **llama.cpp**: pass `--jinja` for proper chat-template handling.
|
| 78 |
-
- **Gemma 4 thinking mode** is on by default. Set `enable_thinking: false`
|
| 79 |
-
in the chat-template kwargs for shorter/faster replies.
|
| 80 |
|
| 81 |
-
## Run
|
| 82 |
|
| 83 |
```bash
|
|
|
|
| 84 |
ollama pull hf.co/evalengine/unbound-e4b-GGUF
|
| 85 |
ollama run hf.co/evalengine/unbound-e4b-GGUF
|
| 86 |
```
|
| 87 |
|
| 88 |
-
(Defaults to Q4_K_M. Ollama auto-stitches the split parts on load.)
|
| 89 |
-
|
| 90 |
-
## Run with llama.cpp
|
| 91 |
-
|
| 92 |
```bash
|
| 93 |
-
#
|
| 94 |
./llama-cli -m Q4_K_M/unbound-e4b-Q4_K_M-00001-of-00004.gguf -p "your prompt"
|
| 95 |
```
|
| 96 |
|
| 97 |
-
|
| 98 |
-
|
| 99 |
-
|
| 100 |
-
|
| 101 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 102 |
|
| 103 |
-
|
| 104 |
-
> Unbound's abliteration + SFT-heal only touched the *language model* — the
|
| 105 |
-
> vision tower was frozen during training. Practical consequences:
|
| 106 |
-
>
|
| 107 |
-
> - The LM is uncensored, so it will discuss whatever it *sees* directly.
|
| 108 |
-
> - But the vision encoder still has Google's original alignment baked into
|
| 109 |
-
> visual feature extraction. It may down-weight or distort features for
|
| 110 |
-
> content classes Google's base model was tuned to suppress.
|
| 111 |
-
> - We have **not benchmarked the visual axis** (no measured refusal rate /
|
| 112 |
-
> coherence / hallucination on image inputs). Treat vision as a preview
|
| 113 |
-
> feature, not a flagship one.
|
| 114 |
|
| 115 |
-
|
|
|
|
| 116 |
|
| 117 |
```bash
|
| 118 |
./llama-mtmd-cli \
|
|
@@ -122,46 +102,23 @@ image-to-text inference.
|
|
| 122 |
-p "What is in this image?"
|
| 123 |
```
|
| 124 |
|
| 125 |
-
|
| 126 |
-
|
| 127 |
-
|
| 128 |
-
|
| 129 |
-
|
| 130 |
-
./llama-cli -m Q4_K_M/unbound-e4b-Q4_K_M-00001-of-00004.gguf -p "your prompt"
|
| 131 |
-
```
|
| 132 |
-
|
| 133 |
-
The LM quants work standalone — you do **not** need `mmproj-unbound-e4b.gguf`
|
| 134 |
-
unless you want image input. Ollama / LM Studio's standard text chat works
|
| 135 |
-
out of the box; the mmproj file is only loaded when you point a multimodal
|
| 136 |
-
runtime at it.
|
| 137 |
-
|
| 138 |
-
## Run in the browser (wllama)
|
| 139 |
-
|
| 140 |
-
[wllama](https://github.com/ngxson/wllama) is a WebAssembly port of llama.cpp
|
| 141 |
-
that runs entirely in the browser. Use one of the wllama-safe variants
|
| 142 |
-
above. Browser inference is **text-only** for this model (wllama doesn't
|
| 143 |
-
currently load `mmproj` for vision):
|
| 144 |
-
|
| 145 |
-
```js
|
| 146 |
-
import { Wllama } from '@wllama/wllama';
|
| 147 |
-
const wllama = new Wllama(/* … */);
|
| 148 |
-
await wllama.loadModelFromHF(
|
| 149 |
-
'evalengine/unbound-e4b-GGUF',
|
| 150 |
-
'Q4_K_M-web/unbound-e4b-Q4_K_M-00001-of-00004.gguf' // wllama follows the chain
|
| 151 |
-
);
|
| 152 |
-
```
|
| 153 |
-
|
| 154 |
-
## About the base
|
| 155 |
|
| 156 |
-
|
| 157 |
-
|
| 158 |
|
| 159 |
## Acknowledgements
|
| 160 |
|
| 161 |
-
|
| 162 |
-
|
| 163 |
-
|
|
|
|
| 164 |
|
| 165 |
## License
|
| 166 |
|
| 167 |
-
Apache-2.0, inherited from `google/gemma-4-E4B-it`.
|
|
|
|
|
|
| 18 |
|
| 19 |
# Unbound E4B GGUF — *because there is no boundary*
|
| 20 |
|
| 21 |
+
> **No guarantee — use at your own risk.** Reduced safety filtering; can
|
| 22 |
+
> produce harmful or false output. Provided as-is.
|
|
|
|
|
|
|
| 23 |
|
| 24 |
+
GGUF quants of [`evalengine/unbound-e4b`](https://huggingface.co/evalengine/unbound-e4b)
|
| 25 |
+
for Ollama, llama.cpp, LM Studio, and [wllama](https://github.com/ngxson/wllama)
|
| 26 |
+
(in-browser). Built by [Chromia](https://x.com/Chromia) and
|
| 27 |
+
[Eval Engine](https://x.com/eval_engine).
|
|
|
|
|
|
|
| 28 |
|
| 29 |
## Available quants
|
| 30 |
|
| 31 |
+
Each quant lives in its own folder; inside, the model is split into
|
| 32 |
+
multi-part GGUFs. All runtimes auto-stitch on the first part — same UX as a
|
| 33 |
+
single file.
|
| 34 |
|
| 35 |
### Desktop builds (Ollama / llama.cpp / LM Studio)
|
| 36 |
|
| 37 |
+
Embedding tensor kept at the llama.cpp default of Q6_K; largest split part
|
| 38 |
+
~2.15 GB — fine for desktop, **won't load in browser**.
|
|
|
|
| 39 |
|
| 40 |
| Quant | Folder | Parts | Total | Notes |
|
| 41 |
|---------|-------------|-------|---------|-------|
|
| 42 |
+
| Q2_K | `Q2_K/` | 4 | 4.08 GB | Smallest, biggest quality drop |
|
| 43 |
+
| Q3_K_M | `Q3_K_M/` | 4 | 4.49 GB | Modest size win over Q4 |
|
| 44 |
+
| Q4_K_M | `Q4_K_M/` | 4 | 4.94 GB | **Recommended desktop default** |
|
| 45 |
| Q6_K | `Q6_K/` | 5 | 5.75 GB | Higher fidelity |
|
| 46 |
| Q8_0 | `Q8_0/` | 6 | 7.43 GB | Highest fidelity |
|
| 47 |
|
| 48 |
### Browser builds (wllama)
|
| 49 |
|
| 50 |
+
`per_layer_token_embd` is a 2.82B-value tensor; at the default Q6_K it
|
| 51 |
+
lands at ~2.2 GB, over wllama's 2 GB ArrayBuffer cap. These variants force
|
| 52 |
+
embeddings to `q5_K` (~1848 MB) so the largest part fits.
|
|
|
|
|
|
|
| 53 |
|
| 54 |
+
| Quant variant | Folder | Parts | Total | Notes |
|
| 55 |
+
|---------------|----------------|-------|---------|-------|
|
| 56 |
+
| Q4_K_M-web | `Q4_K_M-web/` | 4 | 4.51 GB | **Recommended browser default** — layers @ Q4_K_M, embed @ q5_K |
|
| 57 |
+
| Q2_K-web | `Q2_K-web/` | 4 | 3.69 GB | Smallest browser-loadable — layers @ Q2_K, embed @ q5_K |
|
| 58 |
|
| 59 |
+
`mmproj-unbound-e4b.gguf` (vision projector, ~946 MB) sits at the repo
|
| 60 |
+
root. See **Vision** below.
|
|
|
|
|
|
|
| 61 |
|
| 62 |
+
## Sampling
|
| 63 |
|
| 64 |
+
- **Creative / open-ended** → `temperature=1.0, top_p=0.95, top_k=64`.
|
| 65 |
+
- **Factual / brand questions** → drop `temperature` to ~0.3–0.5.
|
| 66 |
+
- llama.cpp: pass `--jinja`. Gemma 4 thinking mode is on by default; set
|
| 67 |
+
`enable_thinking: false` in chat-template kwargs for shorter replies.
|
|
|
|
|
|
|
|
|
|
| 68 |
|
| 69 |
+
## Run
|
| 70 |
|
| 71 |
```bash
|
| 72 |
+
# Ollama (defaults to Q4_K_M)
|
| 73 |
ollama pull hf.co/evalengine/unbound-e4b-GGUF
|
| 74 |
ollama run hf.co/evalengine/unbound-e4b-GGUF
|
| 75 |
```
|
| 76 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 77 |
```bash
|
| 78 |
+
# llama.cpp — point at FIRST split part
|
| 79 |
./llama-cli -m Q4_K_M/unbound-e4b-Q4_K_M-00001-of-00004.gguf -p "your prompt"
|
| 80 |
```
|
| 81 |
|
| 82 |
+
```js
|
| 83 |
+
// wllama (browser) — use a -web variant; desktop builds won't fit
|
| 84 |
+
import { Wllama } from '@wllama/wllama';
|
| 85 |
+
const wllama = new Wllama(/* … */);
|
| 86 |
+
await wllama.loadModelFromHF(
|
| 87 |
+
'evalengine/unbound-e4b-GGUF',
|
| 88 |
+
'Q4_K_M-web/unbound-e4b-Q4_K_M-00001-of-00004.gguf'
|
| 89 |
+
);
|
| 90 |
+
```
|
| 91 |
|
| 92 |
+
## Vision / image input (optional)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 93 |
|
| 94 |
+
`mmproj-unbound-e4b.gguf` enables image-to-text. Pair with any LM quant via
|
| 95 |
+
`llama-mtmd-cli` or `llama-gemma3-cli`:
|
| 96 |
|
| 97 |
```bash
|
| 98 |
./llama-mtmd-cli \
|
|
|
|
| 102 |
-p "What is in this image?"
|
| 103 |
```
|
| 104 |
|
| 105 |
+
> **Disclaimer.** The vision encoder is **Google's original weights,
|
| 106 |
+
> unchanged** — abliteration only touched the language model. The LM is
|
| 107 |
+
> uncensored, but the vision encoder may still suppress features for
|
| 108 |
+
> content classes Google's base was tuned against. We have **not
|
| 109 |
+
> benchmarked the visual axis**. Treat as preview.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 110 |
|
| 111 |
+
Text-only: skip `--mmproj`. Standard `llama-cli` / Ollama / LM Studio do
|
| 112 |
+
not need the mmproj file.
|
| 113 |
|
| 114 |
## Acknowledgements
|
| 115 |
|
| 116 |
+
Fine-tuned with [Unsloth](https://github.com/unslothai/unsloth) + HF
|
| 117 |
+
[TRL](https://github.com/huggingface/trl). Abliteration via
|
| 118 |
+
[heretic](https://github.com/p-e-w/heretic). Environment from
|
| 119 |
+
[autoresearch](https://github.com/karpathy/autoresearch).
|
| 120 |
|
| 121 |
## License
|
| 122 |
|
| 123 |
+
Apache-2.0, inherited from `google/gemma-4-E4B-it`. Full model card +
|
| 124 |
+
benchmarks at [`evalengine/unbound-e4b`](https://huggingface.co/evalengine/unbound-e4b).
|