Instructions to use noctrex/Nemotron-3-Nano-30B-A3B-MXFP4_MOE-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use noctrex/Nemotron-3-Nano-30B-A3B-MXFP4_MOE-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="noctrex/Nemotron-3-Nano-30B-A3B-MXFP4_MOE-GGUF", filename="NVIDIA-Nemotron-3-Nano-30B-A3B-MXFP4_MOE.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use noctrex/Nemotron-3-Nano-30B-A3B-MXFP4_MOE-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf noctrex/Nemotron-3-Nano-30B-A3B-MXFP4_MOE-GGUF:MXFP4_MOE # Run inference directly in the terminal: llama cli -hf noctrex/Nemotron-3-Nano-30B-A3B-MXFP4_MOE-GGUF:MXFP4_MOE
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf noctrex/Nemotron-3-Nano-30B-A3B-MXFP4_MOE-GGUF:MXFP4_MOE # Run inference directly in the terminal: llama cli -hf noctrex/Nemotron-3-Nano-30B-A3B-MXFP4_MOE-GGUF:MXFP4_MOE
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf noctrex/Nemotron-3-Nano-30B-A3B-MXFP4_MOE-GGUF:MXFP4_MOE # Run inference directly in the terminal: ./llama-cli -hf noctrex/Nemotron-3-Nano-30B-A3B-MXFP4_MOE-GGUF:MXFP4_MOE
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf noctrex/Nemotron-3-Nano-30B-A3B-MXFP4_MOE-GGUF:MXFP4_MOE # Run inference directly in the terminal: ./build/bin/llama-cli -hf noctrex/Nemotron-3-Nano-30B-A3B-MXFP4_MOE-GGUF:MXFP4_MOE
Use Docker
docker model run hf.co/noctrex/Nemotron-3-Nano-30B-A3B-MXFP4_MOE-GGUF:MXFP4_MOE
- LM Studio
- Jan
- vLLM
How to use noctrex/Nemotron-3-Nano-30B-A3B-MXFP4_MOE-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "noctrex/Nemotron-3-Nano-30B-A3B-MXFP4_MOE-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "noctrex/Nemotron-3-Nano-30B-A3B-MXFP4_MOE-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/noctrex/Nemotron-3-Nano-30B-A3B-MXFP4_MOE-GGUF:MXFP4_MOE
- Ollama
How to use noctrex/Nemotron-3-Nano-30B-A3B-MXFP4_MOE-GGUF with Ollama:
ollama run hf.co/noctrex/Nemotron-3-Nano-30B-A3B-MXFP4_MOE-GGUF:MXFP4_MOE
- Unsloth Studio
How to use noctrex/Nemotron-3-Nano-30B-A3B-MXFP4_MOE-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for noctrex/Nemotron-3-Nano-30B-A3B-MXFP4_MOE-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for noctrex/Nemotron-3-Nano-30B-A3B-MXFP4_MOE-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for noctrex/Nemotron-3-Nano-30B-A3B-MXFP4_MOE-GGUF to start chatting
- Pi
How to use noctrex/Nemotron-3-Nano-30B-A3B-MXFP4_MOE-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf noctrex/Nemotron-3-Nano-30B-A3B-MXFP4_MOE-GGUF:MXFP4_MOE
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "noctrex/Nemotron-3-Nano-30B-A3B-MXFP4_MOE-GGUF:MXFP4_MOE" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use noctrex/Nemotron-3-Nano-30B-A3B-MXFP4_MOE-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf noctrex/Nemotron-3-Nano-30B-A3B-MXFP4_MOE-GGUF:MXFP4_MOE
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default noctrex/Nemotron-3-Nano-30B-A3B-MXFP4_MOE-GGUF:MXFP4_MOE
Run Hermes
hermes
- Atomic Chat new
- Docker Model Runner
How to use noctrex/Nemotron-3-Nano-30B-A3B-MXFP4_MOE-GGUF with Docker Model Runner:
docker model run hf.co/noctrex/Nemotron-3-Nano-30B-A3B-MXFP4_MOE-GGUF:MXFP4_MOE
- Lemonade
How to use noctrex/Nemotron-3-Nano-30B-A3B-MXFP4_MOE-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull noctrex/Nemotron-3-Nano-30B-A3B-MXFP4_MOE-GGUF:MXFP4_MOE
Run and chat with the model
lemonade run user.Nemotron-3-Nano-30B-A3B-MXFP4_MOE-GGUF-MXFP4_MOE
List all available models
lemonade list
MXFP4
Hey @noctrex
I saw you recently quantize your models in mxfp4, but I think you should read this little comment from ggerganov :) I think it's relevant here for example as I didn't read anywhere it they upscaled from mxpf4.
Was a pain to find this comment back :D but here it is: https://github.com/ggml-org/llama.cpp/pull/15507#issuecomment-3234684569
Good day friend!
Oh and just in case you didn't try: for this specific model, even if the Q4_K_XL from Unsloth is 22.8GB, with 24GB of VRAM I can entirely fit it without even needing to quantize the kv cache, with a 131K token window ;) It grows really slowly as the context is increased
Oh ok! Interesting! Thanks for sharing, and even if I don't use this one, thanks for the quants!
@owao at the end of day, this is another quant type. a 4-bit that uses floating point instead of integer. I have seem some differences on tool calling for example on other models, so I thought of just quantizing them in this format and just upload them if anyone want to use them.
Interesting convo. I've noticed MXFP4 was ok, but for some reason your vanilla Qwen3 30B A3B 2507 Thinking MXFP4 performed worse than Coder and Instruct in some of my tasks. I have to recheck this. Probably just my mind.
@owao at the end of day, this is another quant type. a 4-bit that uses floating point instead of integer. I have seem some differences on tool calling for example on other models, so I thought of just quantizing them in this format and just upload them if anyone want to use them.
Interesting convo. I've noticed MXFP4 was ok, but for some reason your vanilla Qwen3 30B A3B 2507 Thinking MXFP4 performed worse than Coder and Instruct in some of my tasks. I have to recheck this. Probably just my mind.
Yeah, it will need actual extended benchmarking, but I don't have the resources to do some, as I only have my main rig with a powerful enough card to do it, but I need it for work.
@cmp-nct why do you think that? if you have a look at the other 30B models I've quantized, they are the same size. I didn't use any custom code. Used the official llama.cpp tools to create it.
Your quants are fine, GG likely is right that MXFP4 is not optimal for most models. Q4_K is likely a bit better in quality at same size.
I was wondering about the size because all Q2_K quants are also 18GB of size, I checked them now and they are labelled as 2 bit but actually 4-5 bit inside.
@owao at the end of day, this is another quant type. a 4-bit that uses floating point instead of integer. I have seem some differences on tool calling for example on other models, so I thought of just quantizing them in this format and just upload them if anyone want to use them.
Interesting convo. I've noticed MXFP4 was ok, but for some reason your vanilla Qwen3 30B A3B 2507 Thinking MXFP4 performed worse than Coder and Instruct in some of my tasks. I have to recheck this. Probably just my mind.
Yeah, it will need actual extended benchmarking, but I don't have the resources to do some, as I only have my main rig with a powerful enough card to do it, but I need it for work.
Totally get you. Thanks anyway for these quants. They're amazing.
I thought you had the quantized MXFP4 for the Qwen3 30B A3B 2507 Thinking but I cannot find it? I had someone elses MXFP4 against the UD-Q4_K_XL when I realized it wasn't your quant.
The MXFP4 did better by ~2% than UD-Q4_K_XL on some mathematical calculations on my financial work books. However the MXFP4 succeeded in refactoring 1 monolith NextJS component into 9 parts, albeit it did not keep the design as requested but it wasn't broken - a similar behaviour with Coder variant. The UD-Q4_K_XL kept looping different fixes without success.
It's not a sanitized test but since I know my work better than some random benchmarks, there's less risk of over-fitting. I did used GPT 5.2 Thinking against my mathematical calcs as baseline, so it could be temperature variance or else.
Considering the weights I do suppose it's fine like cmp-nct touched.
The best part is, I was able to do the same bench I did above on your Nemotron and it was 5-7% better on the same mathematical equations from my books.
Refactoring the NextJS component was extremely good. It completed exactly as it was originally. Spent <155k tokens to complete on my framework, whereas some of my other models did between 800k-4.7M on the same refactor. Heck, even GLM 4.6 did that in 647k.
Too early to tell on anything else but this was very good. I think NVIDIA cooked here.
Thank you for sharing this valuable information.
Yes it seems that it's better to see it on actual workflows, because at this point I don't know how much we can trust many of the benchmarks released, cause of bechmaxxing.
That said, I found some interesting benches I could maybe run.
https://github.com/chigkim/Ollama-MMLU-Pro
https://github.com/muayyad-alsadi/HalluBench
The MMLU one takes a long time to complete, and the hallubench seems promising, in order to see who hallucinates less
Thank you for sharing this valuable information.
Yes it seems that it's better to see it on actual workflows, because at this point I don't know how much we can trust many of the benchmarks released, cause of bechmaxxing.
That said, I found some interesting benches I could maybe run.
https://github.com/chigkim/Ollama-MMLU-Pro
https://github.com/muayyad-alsadi/HalluBench
The MMLU one takes a long time to complete, and the hallubench seems promising, in order to see who hallucinates less
Never tried them over the fact if models know this stuff or not.
I was able to load your quant at 512k context with virtually 30GB without KV Cache quantizations. Couldn't try it fully as I had something else to cook.
This doesn't seem right? Way too good but not sure processing powers gets there. Was running about 150 t/s generation early on.