linzhao-amd commited on
Commit
162ba26
·
verified ·
1 Parent(s): cf865ec

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -4
README.md CHANGED
@@ -107,10 +107,13 @@ MODEL_ARGS="model_name=amd/DeepSeek-R1-0528-MXFP4-Preview,dtype=bfloat16,tensor_
107
  OUTPUT_DIR="results/DeepSeek-R1-0528-MXFP4-Preview-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 "$OUTPUT_DIR/seed_$SEED" \
113
- 2>&1 | tee -a "$LOG"
 
 
 
114
  ```
115
 
116
  # License
 
107
  OUTPUT_DIR="results/DeepSeek-R1-0528-MXFP4-Preview-Seed"
108
  LOG="logs/deepseek_0528_maxfp4.log"
109
 
110
+ for i in $(seq 1 10); do
111
+ SEED=$(shuf -i 0-1073741823 -n 1)
112
+
113
+ lighteval vllm $MODEL_ARGS "custom|aime24_single|0|0,custom|math_500_single|0|0,custom|gpqa:diamond_single|0|0" \
114
+ --use-chat-template \
115
+ --output-dir "$OUTPUT_DIR/seed_$SEED" \
116
+ 2>&1 | tee -a "$LOG"
117
  ```
118
 
119
  # License