zed-industries/zeta
Viewer • Updated • 583 • 1.38k • 162
How to use AlejandroOlmedo/zeta-8bit-mlx with MLX:
# Download the model from the Hub pip install huggingface_hub[hf_xet] huggingface-cli download --local-dir zeta-8bit-mlx AlejandroOlmedo/zeta-8bit-mlx
Tuned from Qwen2.5 coder for coding tasks
Special thanks to the folks at Zed Industries for fine-tuning this version of Qwen2.5-Coder-7B. More information about the model can be found here:
https://huggingface.co/zed-industries/zeta (Base Model)
https://huggingface.co/lmstudio-community/zeta-GGUF (GGUF Version)
| Link | Type | Size | Notes |
|---|---|---|---|
| [MLX] (https://huggingface.co/AlejandroOlmedo/zeta-mlx) | Full | 15.2 GB | Best Quality |
| [MLX] (https://huggingface.co/AlejandroOlmedo/zeta-8bit-mlx) | 8-bit | 8.10 GB | Better Quality |
| [MLX] (https://huggingface.co/AlejandroOlmedo/zeta-4bit-mlx) | 4-bit | 4.30 GB | Good Quality |
The Model AlejandroOlmedo/zeta-8bit-mlx was converted to MLX format from zed-industries/zeta using mlx-lm version 0.20.5.
pip install mlx-lm
from mlx_lm import load, generate
model, tokenizer = load("AlejandroOlmedo/zeta-8bit-mlx")
prompt="hello"
if hasattr(tokenizer, "apply_chat_template") and tokenizer.chat_template is not None:
messages = [{"role": "user", "content": prompt}]
prompt = tokenizer.apply_chat_template(
messages, tokenize=False, add_generation_prompt=True
)
response = generate(model, tokenizer, prompt=prompt, verbose=True)
8-bit
Base model
zed-industries/zeta