Firworks commited on
Commit
884aa0c
·
verified ·
1 Parent(s): e6a1a0e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +18 -3
README.md CHANGED
@@ -1,7 +1,22 @@
 
 
 
 
 
1
  # QwQ-32B-nvfp4
2
 
3
- **Format:** NVFP4 — weights & activations quantized to FP4 with dual scaling.
4
- **Base model:** `Qwen/QwQ-32B`
5
- **How it was made:** One-shot calibration with LLM Compressor (NVFP4 recipe), long-seq calibration.
6
 
7
  > Notes: Keep `lm_head` in high precision; calibrate on long, domain-relevant sequences.
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model:
3
+ - Qwen/QwQ-32B
4
+ ---
5
+
6
  # QwQ-32B-nvfp4
7
 
8
+ **Format:** NVFP4 — weights & activations quantized to FP4 with dual scaling.
9
+ **Base model:** `Qwen/QwQ-32B`
10
+ **How it was made:** One-shot calibration with LLM Compressor (NVFP4 recipe), long-seq calibration with Rombo-Org/Optimized_Reasoning.
11
 
12
  > Notes: Keep `lm_head` in high precision; calibrate on long, domain-relevant sequences.
13
+
14
+ Check the original model card for information about this model.
15
+
16
+ # Running the model with VLLM in Docker
17
+ ```sh
18
+ sudo docker run --runtime nvidia --gpus all -p 8000:8000 --ipc=host vllm/vllm-openai:latest --model Firworks/QwQ-32B-nvfp4 --dtype auto --max-model-len 32768
19
+ ```
20
+ This was tested on a B200 cloud instance.
21
+
22
+ If there are other models you're interested in seeing quantized to NVFP4 for use on the DGX Spark, or other modern Blackwell (or newer) cards let me know. I'm trying to make more NVFP4 models available to allow more people to try them out.