Downloads · 30 days
20
22% of all-time downloads
usermma/Darwin-28B-Coder-mlx-5Bit
Darwin-28B-Coder-mlx-5Bit is a text generation model from usermma. Use it when you need the model to write or continue text. It is set up for transformers. The card lists the license as apache-2.0.
The Model usermma/Darwin-28B-Coder-mlx-5Bit was converted to MLX format from FINAL-Bench/Darwin-28B-Coder using mlx-lm version 0.31.2.
Downloads · 30 days
20
22% of all-time downloads
All-time downloads
91
Public
Parameters
26.9B
18.5 GB on disk
Likes
1
Public
Click a slice to open those files.
.safetensors18.5 GB · 100%
How the weights are stored.
U3226.9B · 100%
From the Hugging Face model README
The Model usermma/Darwin-28B-Coder-mlx-5Bit was converted to MLX format from FINAL-Bench/Darwin-28B-Coder using mlx-lm version 0.31.2.
pip install mlx-lm
from mlx_lm import load, generate
model, tokenizer = load("usermma/Darwin-28B-Coder-mlx-5Bit")
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)