How to use from
vLLM
Install from pip and serve model
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "RedHatAI/Qwen3.8-2.4T-A95B-NVFP4-REAP-25"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/chat/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "RedHatAI/Qwen3.8-2.4T-A95B-NVFP4-REAP-25",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Use Docker
docker model run hf.co/RedHatAI/Qwen3.8-2.4T-A95B-NVFP4-REAP-25
Quick Links

RedHatAI/Qwen3.8-2.4T-A95B-NVFP4-REAP-25

This is a quantized version of Qwen/Qwen3.8-2.4T-A95B with MoE layers quantized to NVFP4 and 25% uniform expert sparsity. The model was calibrated using 1024 samples from perfectblend.

Usage

This model is intended for deployment with vLLM. You can serve the model using

vllm serve RedHatAI/Qwen3.8-2.4T-A95B-NVFP4-REAP-25 \
    --tensor-parallel-size 8 \
    --enable-expert-parallel 8 \
    --reasoning-parser qwen3

Evaluation

inspect eval hf/Idavidrein/gpqa/diamond \
  --model vllm/RedHatAI/Qwen3.8-2.4T-A95B-NVFP4-REAP-25 \
  --reasoning-effort xhigh \
  --model-base-url http://localhost:8000/v1 \
  -M client_timeout=2400 \
  --token-limit 100000 \
  --retry-on-error=2
from inspect_ai import eval
from inspect_ai.model import set_model_info, ModelInfo

set_model_info(
    "vllm/qwen_model",  # model names with `-A` are badly sanitized through docker jobs
    ModelInfo(
        context_length=262144,
        reasoning=True,
    ),
)

eval(
    "inspect_harbor/datacurve_deep_swe",
    model="vllm/qwen_model",
    reasoning_effort="xhigh",
    model_base_url="http://localhost:8000/v1",
    max_connections=8,
    retry_on_error=2,
)
Benchmark Qwen/Qwen3.8-2.4T-A95B RedHatAI/Qwen3.8-2.4T-A95B-NVFP4-REAP-50 RedHatAI/Qwen3.8-2.4T-A95B-NVFP4-REAP-25 RedHatAI/Qwen3.8-2.4T-A95B-NVFP4
GPQA Diamond 92.6 90.7 91.5 92.9
DeepSWE 1.1 56.6 50.4 56.6 56.6
Downloads last month
845
Safetensors
Model size
1.9T params
Tensor type
BF16
·
U8
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for RedHatAI/Qwen3.8-2.4T-A95B-NVFP4-REAP-25

Quantized
(27)
this model