How to use from
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 "Neooooo/qf-integration-test" \
    --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": "Neooooo/qf-integration-test",
		"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 "Neooooo/qf-integration-test" \
        --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": "Neooooo/qf-integration-test",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

Neooooo/qf-integration-test

QuantForge Metadata

  • Base model: Qwen/Qwen3-30B-A3B
  • Quantization scheme: nvfp4
  • Calibration dataset: HuggingFaceH4/ultrachat_200k
  • Calibration samples: 32
  • Max sequence length: 512
  • Ignored layers: lm_head, re:.*\.mlp\.gate$, re:.*\.mlp\.router$

Accuracy (BF16 vs NVFP4)

Task Metric BF16 NVFP4 Recovery
arc_challenge acc,none 0.4000 0.3000 0.750
hellaswag acc,none 0.4000 0.4000 1.000

Aggregate macro recovery: 0.875

Note: Scores estimated from subset.

Performance

Performance benchmark unavailable: evaluate.skip_perf=true

Usage (vLLM)

vllm serve Neooooo/qf-integration-test
Downloads last month
1
Safetensors
Model size
17B params
Tensor type
F32
·
BF16
·
F8_E4M3
·
U8
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for Neooooo/qf-integration-test

Quantized
(114)
this model

Dataset used to train Neooooo/qf-integration-test