GGUF quantization of nex-agi/Nex-N2-mini — a 35B MoE agentic model (3B active) built on Qwen3.5-35B-A3B-Base with 256 experts, Gated DeltaNet hybrid attention, 262K context, and 27-layer vision encoder.
Quantized to NVFP4 format for efficient inference with minimal quality loss.
About NVFP4
NVFP4 is NVIDIA's native 4-bit floating-point format (E4M3) for Blackwell GPUs. It stores weights in FP4 with a shared per-block scale, enabling native Blackwell tensor core acceleration with no dequantization overhead during inference.
Architecture: Mixture-of-Experts (MoE) with Gated DeltaNet + full attention
Parameters: 35B total, 3B activated per token
Experts: 256 routed experts (8 per token) + 1 shared
Context Length: 262,144 tokens
Vision: 27-layer ViT encoder (1152 hidden), image-text-to-text
Languages: English, Chinese, multilingual
License: Apache 2.0
Usage
llama.cpp (CLI)
bash
1# Text + Image2llama-cli -m nex-n2-mini-nvfp4.gguf \3 --mmproj mmproj-nex-n2-mini-f16.gguf \4 --image photo.jpg \5 -p "Describe this image in detail"\6 -n 51278# Text only9llama-cli -m nex-n2-mini-nvfp4.gguf \10 -p "Explain quantum computing in simple terms"\11 -n 5121213# OpenAI-compatible server14llama-server -m nex-n2-mini-nvfp4.gguf \15 --mmproj mmproj-nex-n2-mini-f16.gguf \16 --port 8080
llama-cpp-python
python
1from llama_cpp import Llama
23llm = Llama.from_pretrained(4 repo_id="FreedomAISVR/Nex-N2-mini-NVFP4-GGUF",5 filename="nex-n2-mini-nvfp4.gguf",6 n_gpu_layers=-1,7)89response = llm.create_chat_completion([10{"role":"user","content":"What is the capital of France?"}11])12print(response["choices"][0]["message"]["content"])