RedHatAI / Qwen3-Coder-Next-NVFP4

huggingface.co
Total runs: 129.5K
24-hour runs: 0
7-day runs: 18.3K
30-day runs: 50.1K
Model's Last Updated: April 29 2026
text-generation

Introduction of Qwen3-Coder-Next-NVFP4

Model Details of Qwen3-Coder-Next-NVFP4

Qwen3-Coder-Next-NVFP4

Model Overview
  • Model Architecture: Qwen3NextForCausalLM
    • Input: Text
    • Output: Text
  • Model Optimizations:
    • Weight quantization: FP4
    • Activation quantization: FP4
  • Release Date:
  • Version: 1.0
  • Model Developers: : Red Hat

Quantized version of Qwen/Qwen3-Coder-Next .

Model Optimizations

This model was obtained by quantizing the weights and activations of Qwen/Qwen3-Coder-Next to FP4 data type. This optimization reduces the number of bits per parameter from 16 to 4, reducing the disk size and GPU memory requirements by approximately 75%. Only the weights and activations of the linear operators within transformers blocks of the language model are quantized.

Deployment
Use with vLLM
  1. Initialize vLLM server:
vllm serve inference-optimization/Qwen3-Coder-Next-NVFP4 --port 8000 --tensor-parallel-size 2 --enable-auto-tool-choice --tool-call-parser qwen3_coder
 
  1. Send requests to the server:
# Your tool implementation
def square_the_number(num: float) -> dict:
    return num ** 2

# Define Tools
tools=[
    {
        "type":"function",
        "function":{
            "name": "square_the_number",
            "description": "output the square of the number.",
            "parameters": {
                "type": "object",
                "required": ["input_num"],
                "properties": {
                    'input_num': {
                        'type': 'number', 
                        'description': 'input_num is a number that will be squared'
                        }
                },
            }
        }
    }
]

from openai import OpenAI
# Define LLM
client = OpenAI(
    # Use a custom endpoint compatible with OpenAI API
    base_url='http://localhost:8000/v1',  # api_base
    api_key="EMPTY"
)
 
messages = [{'role': 'user', 'content': 'square the number 1024'}]

completion = client.chat.completions.create(
    messages=messages,
    model="RedHatAI/Qwen3-Coder-Next-NVFP4",
    max_tokens=65536,
    tools=tools,
)

print(completion.choices[0])
Creation

This model was quantized using the llm-compressor library as shown below.

Creation details
from transformers import AutoModelForCausalLM, AutoTokenizer
from datasets import load_dataset

from llmcompressor import oneshot
from llmcompressor.modifiers.quantization import QuantizationModifier
from compressed_tensors.offload import dispatch_model

MODEL_ID = "Qwen/Qwen3-Coder-Next"

# Load model.
model = AutoModelForCausalLM.from_pretrained(
    MODEL_ID,
    torch_dtype="auto",
    low_cpu_mem_usage=True,
    trust_remote_code=True,
)
tokenizer = AutoTokenizer.from_pretrained(MODEL_ID, trust_remote_code=True)

DATASET_ID = "HuggingFaceH4/ultrachat_200k"
DATASET_SPLIT = "train_sft"

# Select number of samples
NUM_CALIBRATION_SAMPLES = 20
MAX_SEQUENCE_LENGTH = 2048

# Load dataset and preprocess.
ds = load_dataset(DATASET_ID, split=f"{DATASET_SPLIT}[:{NUM_CALIBRATION_SAMPLES}]")
ds = ds.shuffle(seed=42)


def preprocess(example):
    return {
        "text": tokenizer.apply_chat_template(
            example["messages"],
            tokenize=False,
        )
    }


ds = ds.map(preprocess)


# Tokenize inputs.
def tokenize(sample):
    return tokenizer(
        sample["text"],
        padding=False,
        max_length=MAX_SEQUENCE_LENGTH,
        truncation=True,
        add_special_tokens=False,
    )


ds = ds.map(tokenize, remove_columns=ds.column_names)



recipe = QuantizationModifier(
    targets="Linear",
    scheme="NVFP4",
    weight_observer="mse",
    ignore= ['re:.*lm_head', 're:.*mlp.gate$', 're:.*mlp.shared_expert_gate$', 're:.*linear_attn.*'],
)


oneshot(
    model=model,
    dataset=ds,
    recipe=recipe,
    max_seq_length=MAX_SEQUENCE_LENGTH,
    num_calibration_samples=NUM_CALIBRATION_SAMPLES,
    moe_calibrate_all_experts=True,
)


print("\n\n")
print("========== SAMPLE GENERATION ==============")

dispatch_model(model)

input_ids = tokenizer("Hello my name is", return_tensors="pt").input_ids.to(
    model.device
)
output = model.generate(input_ids, max_new_tokens=100)
print(tokenizer.decode(output[0]))
print("==========================================\n\n")


# Save to disk in compressed-tensors format.
SAVE_DIR = MODEL_ID.rstrip("/").split("/")[-1] + "-NVFP4"
model.save_pretrained(SAVE_DIR, save_compressed=True)
tokenizer.save_pretrained(SAVE_DIR)
Evaluation

The model was evaluated on the OpenLLM leaderboard task, using lm-evaluation-harness . vLLM was used for all evaluations.

Evaluation details

**Coding Benchmarks **

SWE-Bench

python -m swebench.harness.run_evaluation \
  --dataset_name princeton-nlp/SWE-bench_Lite \
  --predictions_path preds.json \
  --run_id validate-preds
Accuracy
Category Metric Qwen3-Coder-Next Qwen3-Coder-Next-NVFP4 Recovery (%)
SWE-Bench Lite 49.33 52 105.4

Runs of RedHatAI Qwen3-Coder-Next-NVFP4 on huggingface.co

129.5K
Total runs
0
24-hour runs
4.4K
3-day runs
18.3K
7-day runs
50.1K
30-day runs

More Information About Qwen3-Coder-Next-NVFP4 huggingface.co Model

More Qwen3-Coder-Next-NVFP4 license Visit here:

https://choosealicense.com/licenses/apache-2.0

Qwen3-Coder-Next-NVFP4 huggingface.co

Qwen3-Coder-Next-NVFP4 huggingface.co is an AI model on huggingface.co that provides Qwen3-Coder-Next-NVFP4's model effect (), which can be used instantly with this RedHatAI Qwen3-Coder-Next-NVFP4 model. huggingface.co supports a free trial of the Qwen3-Coder-Next-NVFP4 model, and also provides paid use of the Qwen3-Coder-Next-NVFP4. Support call Qwen3-Coder-Next-NVFP4 model through api, including Node.js, Python, http.

Qwen3-Coder-Next-NVFP4 huggingface.co Url

https://huggingface.co/RedHatAI/Qwen3-Coder-Next-NVFP4

RedHatAI Qwen3-Coder-Next-NVFP4 online free

Qwen3-Coder-Next-NVFP4 huggingface.co is an online trial and call api platform, which integrates Qwen3-Coder-Next-NVFP4's modeling effects, including api services, and provides a free online trial of Qwen3-Coder-Next-NVFP4, you can try Qwen3-Coder-Next-NVFP4 online for free by clicking the link below.

RedHatAI Qwen3-Coder-Next-NVFP4 online free url in huggingface.co:

https://huggingface.co/RedHatAI/Qwen3-Coder-Next-NVFP4

Qwen3-Coder-Next-NVFP4 install

Qwen3-Coder-Next-NVFP4 is an open source model from GitHub that offers a free installation service, and any user can find Qwen3-Coder-Next-NVFP4 on GitHub to install. At the same time, huggingface.co provides the effect of Qwen3-Coder-Next-NVFP4 install, users can directly use Qwen3-Coder-Next-NVFP4 installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

Qwen3-Coder-Next-NVFP4 install url in huggingface.co:

https://huggingface.co/RedHatAI/Qwen3-Coder-Next-NVFP4

Url of Qwen3-Coder-Next-NVFP4

Qwen3-Coder-Next-NVFP4 huggingface.co Url

Provider of Qwen3-Coder-Next-NVFP4 huggingface.co

RedHatAI
ORGANIZATIONS

Other API from RedHatAI

huggingface.co

Total runs: 26.2K
Run Growth: -15.7K
Growth Rate: -59.90%
Updated:May 18 2026
huggingface.co

Total runs: 20.9K
Run Growth: -11.8K
Growth Rate: -56.48%
Updated:April 29 2026