linzhao-amd commited on
Commit
11b5d19
·
verified ·
1 Parent(s): 6c94c74

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +64 -0
README.md CHANGED
@@ -48,6 +48,70 @@ python3 quantize_quark.py --model_dir $MODEL_DIR \
48
  ### Use with SGLang
49
 
50
  This model can be deployed efficiently using the [SGLang](https://docs.sglang.ai/) backend.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
 
52
  # License
53
  Modifications Copyright(c) 2025 Advanced Micro Devices, Inc. All rights reserved.
 
48
  ### Use with SGLang
49
 
50
  This model can be deployed efficiently using the [SGLang](https://docs.sglang.ai/) backend.
51
+ ## Evaluation
52
+
53
+ The model was evaluated on AIME24, GPQA Diamond, and MATH-500 benchmarks using the [lighteval](https://github.com/huggingface/lighteval/tree/v0.10.0) framework. Each benchmark was run 10 times with different random seeds for reliable performance estimation.
54
+
55
+ ### Accuracy
56
+
57
+ <table>
58
+ <tr>
59
+ <td><strong>Benchmark</strong>
60
+ </td>
61
+ <td><strong>DeepSeek-R1-0528 </strong>
62
+ </td>
63
+ <td><strong>DeepSeek-R1-0528-MXFP4(this model)</strong>
64
+ </td>
65
+ <td><strong>Recovery</strong>
66
+ </td>
67
+ </tr>
68
+ <tr>
69
+ <td>AIME24
70
+ </td>
71
+ <td>88.00
72
+ </td>
73
+ <td>85.00
74
+ </td>
75
+ <td>96.59%
76
+ </td>
77
+ </tr>
78
+ <tr>
79
+ <td>GPQA Diamond
80
+ </td>
81
+ <td>79.90
82
+ </td>
83
+ <td>79.34
84
+ </td>
85
+ <td>99.31%
86
+ </td>
87
+ </tr>
88
+ <tr>
89
+ <td>MATH-500
90
+ </td>
91
+ <td>97.06
92
+ </td>
93
+ <td>97.84
94
+ </td>
95
+ <td>100.80%
96
+ </td>
97
+ </tr>
98
+ </table>
99
+
100
+
101
+ ### Reproduction
102
+
103
+ The results were obtained using the following commands, with custom tasks and 10 rounds using different random seeds.
104
+
105
+ ```
106
+ MODEL_ARGS="model_name=amd/DeepSeek-R1-0528-MXFP4-ASQ,dtype=bfloat16,tensor_parallel_size=8,max_model_length=71536,max_num_batched_tokens=32768,gpu_memory_utilization=0.85,generation_parameters={max_new_tokens:65536,temperature:0.6,top_p:0.95,seed:$SEED}"
107
+ OUTPUT_DIR="results/DeepSeek-R1-0528-MXFP4-ASQ-Seed"
108
+ LOG="logs/deepseek_0528_maxfp4.log"
109
+
110
+ lighteval vllm $MODEL_ARGS "custom|aime24_single|0|0,custom|math_500_single|0|0,custom|gpqa:diamond_single|0|0" \
111
+ --use-chat-template \
112
+ --output-dir "results/DeepSeek-R1-0528-MXFP4-ASQ-Seed/seed_$SEED" \
113
+ 2>&1 | tee -a "$LOG"
114
+ ```
115
 
116
  # License
117
  Modifications Copyright(c) 2025 Advanced Micro Devices, Inc. All rights reserved.