Downloads · 30 days
8
10% of all-time downloads
IvanHU/YuLan-Mini-Instruct-8bit
YuLan-Mini-Instruct-8bit is a text generation model from IvanHU. 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 IvanHU/YuLan-Mini-Instruct-8bit was converted to MLX format from yulan-team/YuLan-Mini-Instruct using mlx-lm version 0.22.2.
Downloads · 30 days
8
10% of all-time downloads
All-time downloads
84
Public
Parameters
2.4B
2.6 GB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors2.6 GB · 100%
How the weights are stored.
U322.4B · 100%
From the Hugging Face model README
This model IvanHU/YuLan-Mini-Instruct-8bit was converted to MLX format from yulan-team/YuLan-Mini-Instruct using mlx-lm version 0.22.2.
pip install mlx-lm
from mlx_lm import load, generate
model, tokenizer = load("IvanHU/YuLan-Mini-Instruct-8bit")
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)