Downloads · 30 days
159
5% of all-time downloads
mlx-community/deepseek-coder-33b-instruct
deepseek-coder-33b-instruct is a text generation model from mlx-community. Use it when you need the model to write or continue text. It is set up for mlx. The card lists the license as other.
This model mlx-community/deepseek-coder-33b-instruct was converted to MLX format from deepseek-ai/deepseek-coder-33b-instruct using mlx-lm version 0.25.2.
Downloads · 30 days
159
5% of all-time downloads
All-time downloads
3.4K
Public
Parameters
33.3B
18.8 GB on disk
Likes
2
Public
Click a slice to open those files.
.safetensors18.8 GB · 100%
How the weights are stored.
U3233.3B · 100%
From the Hugging Face model README
This model mlx-community/deepseek-coder-33b-instruct was converted to MLX format from deepseek-ai/deepseek-coder-33b-instruct using mlx-lm version 0.25.2.
pip install mlx-lm
from mlx_lm import load, generate
model, tokenizer = load("mlx-community/deepseek-coder-33b-instruct")
prompt = "hello"
if tokenizer.chat_template is not None:
messages = [{"role": "user", "content": prompt}]
prompt = tokenizer.apply_chat_template(
messages, add_generation_prompt=True
)
response = generate(model, tokenizer, prompt=prompt, verbose=True)