Downloads · 30 days
12
5% of all-time downloads
shashikanth-a/tinyllama-4bit
tinyllama-4bit is a text generation model from shashikanth-a. Use it when you need the model to write or continue text. It is set up for transformers. The card lists the license as apache-2.0.
The Model shashikanth-a/tinyllama-4bit was converted to MLX format from unsloth/tinyllama using mlx-lm version 0.19.3.
Downloads · 30 days
12
5% of all-time downloads
All-time downloads
234
Public
Parameters
1.1B
619 MB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors619 MB · 99%
How the weights are stored.
U321.1B · 100%
From the Hugging Face model README
The Model shashikanth-a/tinyllama-4bit was converted to MLX format from unsloth/tinyllama using mlx-lm version 0.19.3.
pip install mlx-lm
from mlx_lm import load, generate
model, tokenizer = load("shashikanth-a/tinyllama-4bit")
prompt="hello"
if hasattr(tokenizer, "apply_chat_template") and tokenizer.chat_template is not None:
messages = [{"role": "user", "content": prompt}]
prompt = tokenizer.apply_chat_template(
messages, tokenize=False, add_generation_prompt=True
)
response = generate(model, tokenizer, prompt=prompt, verbose=True)