Instructions to use itselouardi/ZAYA1-8B-bnb-4bit with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use itselouardi/ZAYA1-8B-bnb-4bit with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="itselouardi/ZAYA1-8B-bnb-4bit") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("itselouardi/ZAYA1-8B-bnb-4bit", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use itselouardi/ZAYA1-8B-bnb-4bit with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "itselouardi/ZAYA1-8B-bnb-4bit" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "itselouardi/ZAYA1-8B-bnb-4bit", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/itselouardi/ZAYA1-8B-bnb-4bit
- SGLang
How to use itselouardi/ZAYA1-8B-bnb-4bit with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "itselouardi/ZAYA1-8B-bnb-4bit" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "itselouardi/ZAYA1-8B-bnb-4bit", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "itselouardi/ZAYA1-8B-bnb-4bit" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "itselouardi/ZAYA1-8B-bnb-4bit", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use itselouardi/ZAYA1-8B-bnb-4bit with Docker Model Runner:
docker model run hf.co/itselouardi/ZAYA1-8B-bnb-4bit
ZAYA1‑8B – 4‑bit Quantized (bnb‑nf4)
This repo contains a 4‑bit quantized version of Zyphra/ZAYA1‑8B using bitsandbytes (load_in_4bit=True, nf4 quantization type).
It reduces VRAM usage to ~5.1 GB while keeping high generation quality – ideal for local deployment, low‑resource environments, and quick experimentation.
⚡ Part of the ZAYA1 Community Deployment Stack
GitHub: zaya1‑vllm‑docker (CUDA/ROCm Docker images & benchmarks coming soon)
📦 Model Details
- Architecture: Mamba‑Transformer hybrid (Zyphra’s ZAYA1 design)
- Original model: Zyphra/ZAYA1‑8B
- Quantization method: BitsAndBytes 4‑bit NF4 with double quantization
- Precision:
bfloat16compute dtype - VRAM after loading: ~5.1 GB (vs. ~16 GB for FP16)
🚀 Quick Start
Install dependencies:
pip install transformers bitsandbytes accelerate torch
Load and generate:
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer
model_name = "ayoubelouardi/ZAYA1-8B-bnb-4bit"
# The model loads directly in 4‑bit – no extra config needed
model = AutoModelForCausalLM.from_pretrained(
model_name,
device_map="auto",
trust_remote_code=True
)
tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True)
prompt = "Once upon a time,"
inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
outputs = model.generate(**inputs, max_new_tokens=50)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
⚠️ Note:
trust_remote_code=Trueis required because the model uses a custom architecture.
🧪 How it was created
The quantization was performed using the following script (included in the community repo):
from transformers import AutoModelForCausalLM, AutoTokenizer, BitsAndBytesConfig
import torch
bnb_config = BitsAndBytesConfig(
load_in_4bit=True,
bnb_4bit_use_double_quant=True,
bnb_4bit_quant_type="nf4",
bnb_4bit_compute_dtype=torch.bfloat16
)
model = AutoModelForCausalLM.from_pretrained(
"Zyphra/ZAYA1-8B",
quantization_config=bnb_config,
torch_dtype=torch.bfloat16,
device_map="auto",
trust_remote_code=True
)
tokenizer = AutoTokenizer.from_pretrained("Zyphra/ZAYA1-8B", trust_remote_code=True)
model.save_pretrained("./ZAYA1-8B-bnb-4bit")
tokenizer.save_pretrained("./ZAYA1-8B-bnb-4bit")
The saved checkpoint automatically includes the quantization config – so you don’t need to set load_in_4bit again when loading from this repo.
📊 Benchmarks
| GPU | Quantization | Tokens/sec (batch=1) | Notes |
|---|---|---|---|
| NVIDIA A100 80GB | FP16 (original) | coming soon | via vLLM |
| NVIDIA A100 80GB | 4‑bit (this repo) | coming soon | via transformers |
| AMD MI300X 192GB | FP16 (original) | coming soon | via vLLM + ROCm |
Full benchmarks will be published in the GitHub repository. Stay tuned!
🔗 Links
- Original model: Zyphra/ZAYA1‑8B
- Zyphra’s vLLM fork: Zyphra/vllm
- Community deployment repo: zaya1‑vllm‑docker (Docker images, GGUF progress, benchmarks)
- Author: Ayoub El Ouardi
📜 License
This model is subject to the Zyphra Community License Agreement.
Please review the original license before using.
🙏 Acknowledgements
Thanks to Zyphra for releasing ZAYA1‑8B and maintaining the open‑source forks.
This quantized version is a community contribution and is not affiliated with Zyphra.
- Downloads last month
- 367