HF SmolLM
Collection
A series of smol LLMs: 135M, 360M and 1.7B.
•
18 items
•
Updated
•
2
The Model mlx-community/SmolLM-360M-Instruct-8bit was converted to MLX format from HuggingFaceTB/SmolLM-360M-Instruct using mlx-lm version 0.15.2.
pip install mlx-lm
from mlx_lm import load, generate
model, tokenizer = load("mlx-community/SmolLM-360M-Instruct-8bit")
response = generate(model, tokenizer, prompt="hello", verbose=True)