Downloads · 30 days
14
19% of all-time downloads
Kingcade/NONE
NONE is a text generation model from Kingcade. Use it when you need the model to write or continue text. It is set up for mlx.
Downloads · 30 days
14
19% of all-time downloads
All-time downloads
73
Public
Parameters
596M
1.5 GB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors1.2 GB · 99%
From the Hugging Face model README
pip install mlx-lm
from mlx_lm import load, generate
model, tokenizer = load("NONE")
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)