CoolFace
Modelpublic

mlx-community/NVIDIA-Nemotron-3.5-Lightning-30B-A3B-bf16

sourceHugging Faceotherupdated 2mo agoView on Hugging Face
0likes610downloads
Model Card

mlx-community/NVIDIA-Nemotron-3.5-Lightning-30B-A3B-bf16

This model mlx-community/NVIDIA-Nemotron-3.5-Lightning-30B-A3B-bf16 was converted to MLX format from nvidia/NVIDIA-Nemotron-3.5-Lightning-30B-A3B-BF16 using mlx-lm version 0.31.3 (bf16, unquantized).

NVIDIA-Nemotron-3.5-Lightning-30B-A3B is a hybrid Mamba-2 / attention Mixture-of-Experts model (~31B total parameters, ~3B active per token).

Use with mlx

bash
pip install mlx-lm
python
from mlx_lm import load, generate

model, tokenizer = load("mlx-community/NVIDIA-Nemotron-3.5-Lightning-30B-A3B-bf16")

prompt = "Hello, who are you?"

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)