mlx-community/Dolphin-Mistral-24B-Venice-Edition-DWQ
4427
mlx-community/Dolphin-Mistral-24B-Venice-Edition-DWQ
This model mlx-community/Dolphin-Mistral-24B-Venice-Edition-DWQ was converted to MLX format from cognitivecomputations/Dolphin-Mistral-24B-Venice-Edition using mlx-lm version 0.25.3.
Use with mlx
pip install mlx-lmfrom mlx_lm import load, generate
model, tokenizer = load("mlx-community/Dolphin-Mistral-24B-Venice-Edition-DWQ")
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)