Downloads · 30 days
11
4% of all-time downloads
WaveCut/DeepSWE-Preview_MLX-4bit
DeepSWE-Preview_MLX-4bit is a text generation model from WaveCut. Use it when you need the model to write or continue text. It is set up for mlx. The card lists the license as mit.
This model WaveCut/DeepSWE-Preview was converted to MLX format from agentica-org/DeepSWE-Preview using mlx-lm version 0.25.3.
Downloads · 30 days
11
4% of all-time downloads
All-time downloads
249
Public
Parameters
32.8B
20.5 GB on disk
Likes
1
Public
Click a slice to open those files.
.safetensors20.5 GB · 100%
How the weights are stored.
U3232.8B · 100%
From the Hugging Face model README
This model WaveCut/DeepSWE-Preview was converted to MLX format from agentica-org/DeepSWE-Preview using mlx-lm version 0.25.3.
pip install mlx-lm
from mlx_lm import load, generate
model, tokenizer = load("WaveCut/DeepSWE-Preview")
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)