Instructions to use LLMWildling/Nemotron-175b-A13b-Coder-NVFP4 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use LLMWildling/Nemotron-175b-A13b-Coder-NVFP4 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="LLMWildling/Nemotron-175b-A13b-Coder-NVFP4", trust_remote_code=True) messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("LLMWildling/Nemotron-175b-A13b-Coder-NVFP4", trust_remote_code=True) model = AutoModelForCausalLM.from_pretrained("LLMWildling/Nemotron-175b-A13b-Coder-NVFP4", trust_remote_code=True) messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use LLMWildling/Nemotron-175b-A13b-Coder-NVFP4 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "LLMWildling/Nemotron-175b-A13b-Coder-NVFP4" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "LLMWildling/Nemotron-175b-A13b-Coder-NVFP4", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/LLMWildling/Nemotron-175b-A13b-Coder-NVFP4
- SGLang
How to use LLMWildling/Nemotron-175b-A13b-Coder-NVFP4 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "LLMWildling/Nemotron-175b-A13b-Coder-NVFP4" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "LLMWildling/Nemotron-175b-A13b-Coder-NVFP4", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "LLMWildling/Nemotron-175b-A13b-Coder-NVFP4" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "LLMWildling/Nemotron-175b-A13b-Coder-NVFP4", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use LLMWildling/Nemotron-175b-A13b-Coder-NVFP4 with Docker Model Runner:
docker model run hf.co/LLMWildling/Nemotron-175b-A13b-Coder-NVFP4
NVIDIA-Nemotron-3-Super-175B-A13B-Coder-NVFP4
A coding-focused expansion of NVIDIA Nemotron 3 Super 120B-A12B NVFP4.
This is a community model and is not an official NVIDIA release. It was inspired by NVIDIA's open-model, open-data, and open-tooling work around Nemotron.
Model Summary
| Total Parameters | Approximately 175B |
| Active Parameters | Approximately 13B per token |
| Quantization | NVFP4 mixed-precision checkpoint |
| Architecture | Nemotron hybrid Mamba-2, LatentMoE, Attention, and MTP |
| Validated Context Length | 262,144 tokens |
| Specialization | Agentic coding, reasoning, tool use, and multi-turn software-engineering workflows |
| Base Model | NVIDIA-Nemotron-3-Super-120B-A12B-NVFP4 |
Focus
This iteration places additional emphasis on OpenCode-style task planning and software-engineering reasoning while retaining the broader coding behavior of the model line.
Evaluation Snapshot
In a local OpenCode evaluation, the model used a todo list to plan and carry a Flappy Bird prototype from implementation through a playable result.
Does This Work?
The public Nemotron 130B LLMWildling Canary NVFP4 provides a smaller proof point for this model line. It demonstrates direct recall of newly added domain knowledge and carries that knowledge into a follow-up task without RAG or prompt-injected context.
Intended Use
This checkpoint is intended for production coding assistants, repository analysis, agentic software-engineering systems, and tool-using workflows.
License
This model is derived from NVIDIA Nemotron 3 Super. Use is governed by the NVIDIA Nemotron Open Model License. Review the upstream model card for its full terms, safety information, limitations, and base-model details.
- Downloads last month
- 120

