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