library_name, license, language, base_model, tags, pipeline_tag
library_name license language base_model tags pipeline_tag
mlx apache-2.0
en
fr
es
it
pt
zh
ar
ru
HuggingFaceTB/SmolLM3-3B
mlx
text-generation

mlx-community/SmolLM3-3B-bf16

This model mlx-community/SmolLM3-3B-bf16 was converted to MLX format from HuggingFaceTB/SmolLM3-3B using mlx-lm version 0.25.3.

Use with mlx

pip install mlx-lm
from mlx_lm import load, generate

model, tokenizer = load("mlx-community/SmolLM3-3B-bf16")

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)
Description
Model synced from source: mlx-community/SmolLM3-3B-bf16
Readme 31 KiB
Languages
Jinja 100%