Views
No views yet
| Precision | MLX affine 4-bit, group 64 (~4.5 bpw) |
| Size | 2.1 GB |
| Runs on | Apple Silicon, ~16 GB+ unified memory |
Requirestrust_remote_code. The 4B uses MLP layers that the built-in transformersnemotron_hconfig (5.5.x) does not yet support, so it ships its own config code.
mlx_lm.server --model pipenetwork/NVIDIA-Nemotron-3-Nano-4B-MLX-4bit --trust-remote-code1from mlx_lm import load, generate
2model, tok = load(
3 "pipenetwork/NVIDIA-Nemotron-3-Nano-4B-MLX-4bit",
4 tokenizer_config={"trust_remote_code": True},
5)generation_config.json had eos_token_id: 2, but the chat template
ends turns with <|im_end|> (id 11); without 11 in the stop set, generation never halts.
This repo sets eos_token_id: [2, 11].<think>...</think> before the final answer.mlx_lm.convert --hf-path nvidia/NVIDIA-Nemotron-3-Nano-4B-BF16 \
--mlx-path <out> -q --q-bits 4 --q-group-size 64 --trust-remote-codepipenetwork on Apple Silicon (mlx-lm 0.31.2). Not affiliated with NVIDIA;
license and attribution per the original model card above.