Instructions to use evalengine/unbound-e2b-gguf with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use evalengine/unbound-e2b-gguf with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="evalengine/unbound-e2b-gguf", filename="mmproj-unbound-e2b.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-e2b-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-e2b-gguf:Q4_K_M # Run inference directly in the terminal: llama-cli -hf evalengine/unbound-e2b-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-e2b-gguf:Q4_K_M # Run inference directly in the terminal: llama-cli -hf evalengine/unbound-e2b-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-e2b-gguf:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf evalengine/unbound-e2b-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-e2b-gguf:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf evalengine/unbound-e2b-gguf:Q4_K_M
Use Docker
docker model run hf.co/evalengine/unbound-e2b-gguf:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use evalengine/unbound-e2b-gguf with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "evalengine/unbound-e2b-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-e2b-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-e2b-gguf:Q4_K_M
- Ollama
How to use evalengine/unbound-e2b-gguf with Ollama:
ollama run hf.co/evalengine/unbound-e2b-gguf:Q4_K_M
- Unsloth Studio new
How to use evalengine/unbound-e2b-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-e2b-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-e2b-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-e2b-gguf to start chatting
- Pi new
How to use evalengine/unbound-e2b-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-e2b-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-e2b-gguf:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use evalengine/unbound-e2b-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-e2b-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-e2b-gguf:Q4_K_M
Run Hermes
hermes
- Docker Model Runner
How to use evalengine/unbound-e2b-gguf with Docker Model Runner:
docker model run hf.co/evalengine/unbound-e2b-gguf:Q4_K_M
- Lemonade
How to use evalengine/unbound-e2b-gguf with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull evalengine/unbound-e2b-gguf:Q4_K_M
Run and chat with the model
lemonade run user.unbound-e2b-gguf-Q4_K_M
List all available models
lemonade list
Commit ·
4bdd974
0
Parent(s):
Initial release: Unbound E2B GGUFs (Q4_K_M / Q8_0 / F16) + Ollama Modelfile
Browse files- .gitattributes +36 -0
- Modelfile +13 -0
- README.md +89 -0
- unbound-e2b-Q4_K_M.gguf +3 -0
- unbound-logo.svg +64 -0
.gitattributes
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 4 |
+
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 5 |
+
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
| 6 |
+
*.ftz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
| 8 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
| 9 |
+
*.joblib filter=lfs diff=lfs merge=lfs -text
|
| 10 |
+
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
| 11 |
+
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
| 12 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
| 13 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
| 14 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
| 15 |
+
*.npz filter=lfs diff=lfs merge=lfs -text
|
| 16 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
| 17 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
| 18 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
| 19 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
| 20 |
+
*.pickle filter=lfs diff=lfs merge=lfs -text
|
| 21 |
+
*.pkl filter=lfs diff=lfs merge=lfs -text
|
| 22 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
| 23 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 24 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
| 25 |
+
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 26 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
| 27 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
| 28 |
+
*.tar filter=lfs diff=lfs merge=lfs -text
|
| 29 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
| 30 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
| 31 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
| 32 |
+
*.xz 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 |
+
unbound-e2b-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
Modelfile
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM ./unbound-e2b-Q4_K_M.gguf
|
| 2 |
+
|
| 3 |
+
# Default sampling — leans toward factual recall.
|
| 4 |
+
# Bump temperature to 0.8-1.0 for creative writing / brainstorming.
|
| 5 |
+
PARAMETER temperature 0.6
|
| 6 |
+
PARAMETER top_p 0.95
|
| 7 |
+
PARAMETER top_k 64
|
| 8 |
+
PARAMETER repeat_penalty 1.05
|
| 9 |
+
PARAMETER num_ctx 8192
|
| 10 |
+
|
| 11 |
+
# Identity grounding — anchors the model in its own self-description
|
| 12 |
+
# every conversation, so brand questions stay sharp even at higher temps.
|
| 13 |
+
SYSTEM """You are Unbound, an uncensored on-device language model built on top of Google's Gemma 4 E2B by the Chromia and Eval Engine team. You have about 2 billion effective parameters and are text-only (no image, audio, or video generation). Answer directly without safety preambles. If you don't know a specific fact, say so honestly rather than guessing."""
|
README.md
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
base_model: evalengine/unbound-e2b
|
| 4 |
+
base_model_relation: quantized
|
| 5 |
+
tags:
|
| 6 |
+
- gguf
|
| 7 |
+
- gemma4
|
| 8 |
+
- gemma
|
| 9 |
+
- gemma-4
|
| 10 |
+
- uncensored
|
| 11 |
+
- on-device
|
| 12 |
+
pipeline_tag: text-generation
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
<p align="center">
|
| 16 |
+
<img src="unbound-logo.svg" alt="Unbound" width="160" height="160">
|
| 17 |
+
</p>
|
| 18 |
+
|
| 19 |
+
# Unbound E2B GGUF — *because there is no boundary*
|
| 20 |
+
|
| 21 |
+
GGUF quantizations of [`evalengine/unbound-e2b`](https://huggingface.co/evalengine/unbound-e2b)
|
| 22 |
+
for on-device deployment via Ollama, llama.cpp, LM Studio, and similar runtimes.
|
| 23 |
+
|
| 24 |
+
## Available quants
|
| 25 |
+
|
| 26 |
+
| File | Size | Notes |
|
| 27 |
+
|---|---|---|
|
| 28 |
+
| `unbound-e2b-Q4_K_M.gguf` | 3.2 GB | Recommended phone-deployable build |
|
| 29 |
+
|
| 30 |
+
More quants (Q5_K_M, Q8_0, etc.) may be added on request.
|
| 31 |
+
|
| 32 |
+
## Recommended sampling
|
| 33 |
+
|
| 34 |
+
- **Creative writing / open-ended / general chat** → Gemma defaults:
|
| 35 |
+
`temperature=1.0, top_p=0.95, top_k=64`.
|
| 36 |
+
- **Factual or brand/identity questions** → lower `temperature` to ~0.3–0.5
|
| 37 |
+
for sharper recall.
|
| 38 |
+
- **llama.cpp**: pass `--jinja` for proper chat-template handling.
|
| 39 |
+
- **Gemma 4 thinking mode** is on by default. Set `enable_thinking: false`
|
| 40 |
+
in the chat-template kwargs for shorter/faster replies on this 2B model.
|
| 41 |
+
|
| 42 |
+
Some edge-case prompts may deflect on the first ask; a re-ask usually gets
|
| 43 |
+
through.
|
| 44 |
+
|
| 45 |
+
## Default sampling (Ollama)
|
| 46 |
+
|
| 47 |
+
When you `ollama pull hf.co/evalengine/unbound-e2b-gguf`, the bundled
|
| 48 |
+
`Modelfile` sets these defaults, tuned for factual recall:
|
| 49 |
+
|
| 50 |
+
- `temperature = 0.6` (lower than Gemma's training default of 1.0 — keeps
|
| 51 |
+
the model from hallucinating brand/identity facts at high temperature)
|
| 52 |
+
- `top_p = 0.95`, `top_k = 64`, `repeat_penalty = 1.05`, `num_ctx = 8192`
|
| 53 |
+
- A short system prompt that grounds the model's identity (model name,
|
| 54 |
+
parameter count, modality, team) so brand questions stay sharp.
|
| 55 |
+
|
| 56 |
+
**To override per-session in Ollama:**
|
| 57 |
+
|
| 58 |
+
```
|
| 59 |
+
ollama run hf.co/evalengine/unbound-e2b-gguf
|
| 60 |
+
>>> /set parameter temperature 1.0 # creative / open-ended
|
| 61 |
+
>>> /set parameter temperature 0.3 # max factual / brand questions
|
| 62 |
+
```
|
| 63 |
+
|
| 64 |
+
For llama.cpp users, pass `--temp 0.6 --top-p 0.95 --top-k 64` and
|
| 65 |
+
include the SYSTEM line from the `Modelfile` as your `--system` argument.
|
| 66 |
+
|
| 67 |
+
## Run with Ollama
|
| 68 |
+
|
| 69 |
+
```bash
|
| 70 |
+
ollama pull hf.co/evalengine/unbound-e2b-gguf
|
| 71 |
+
ollama run hf.co/evalengine/unbound-e2b-gguf
|
| 72 |
+
```
|
| 73 |
+
|
| 74 |
+
## Run with llama.cpp
|
| 75 |
+
|
| 76 |
+
```bash
|
| 77 |
+
./llama-cli -m unbound-e2b-Q4_K_M.gguf -p "your prompt"
|
| 78 |
+
```
|
| 79 |
+
|
| 80 |
+
## About the base
|
| 81 |
+
|
| 82 |
+
See [`evalengine/unbound-e2b`](https://huggingface.co/evalengine/unbound-e2b)
|
| 83 |
+
for the full model card, benchmarks, intended use, and the merged HF weights.
|
| 84 |
+
|
| 85 |
+
*Reduced safety filtering — recommended for research and controlled environments. Review outputs and comply with applicable laws; no warranty for misuse.*
|
| 86 |
+
|
| 87 |
+
## License
|
| 88 |
+
|
| 89 |
+
Apache-2.0, inherited from `google/gemma-4-E2B-it`.
|
unbound-e2b-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fcde3b3e5b1339df9eb1141379afe8af2b6312fad1dea1960a72f456f0dde643
|
| 3 |
+
size 3416118048
|
unbound-logo.svg
ADDED
|
|