H1W0XXX commited on
Commit ·
0c9eac5
1
Parent(s): 783df97
添加千问新模型得分
Browse files- README.md +1 -0
- README_EN.md +1 -0
- run_eval.py +1 -1
README.md
CHANGED
|
@@ -166,6 +166,7 @@ $$
|
|
| 166 |
|
| 167 |
| 模型 (Model) | 加权准确率 (Weighted Acc) | 备注 (Notes) |
|
| 168 |
| :--- | :---: | :--- |
|
|
|
|
| 169 |
| **Qwen3-VL-32B-Instruct** | 35.16% | Retries: 3 |
|
| 170 |
| **GLM-4.5V-INT8** | 19.53% | Retries: 3 |
|
| 171 |
|
|
|
|
| 166 |
|
| 167 |
| 模型 (Model) | 加权准确率 (Weighted Acc) | 备注 (Notes) |
|
| 168 |
| :--- | :---: | :--- |
|
| 169 |
+
| **Qwen3.5-35B-A3B** | 40.23% | Retries: 3 |
|
| 170 |
| **Qwen3-VL-32B-Instruct** | 35.16% | Retries: 3 |
|
| 171 |
| **GLM-4.5V-INT8** | 19.53% | Retries: 3 |
|
| 172 |
|
README_EN.md
CHANGED
|
@@ -145,6 +145,7 @@ $$
|
|
| 145 |
|
| 146 |
| Model | Weighted Accuracy | Notes |
|
| 147 |
| :--- | :---: | :--- |
|
|
|
|
| 148 |
| **Qwen3-VL-32B-Instruct** | 35.16% | Retries: 3 |
|
| 149 |
| **GLM-4.5V-INT8** | 19.53% | Retries: 3 |
|
| 150 |
|
|
|
|
| 145 |
|
| 146 |
| Model | Weighted Accuracy | Notes |
|
| 147 |
| :--- | :---: | :--- |
|
| 148 |
+
| **Qwen3.5-35B-A3B** | 40.23% | Retries: 3 |
|
| 149 |
| **Qwen3-VL-32B-Instruct** | 35.16% | Retries: 3 |
|
| 150 |
| **GLM-4.5V-INT8** | 19.53% | Retries: 3 |
|
| 151 |
|
run_eval.py
CHANGED
|
@@ -282,7 +282,7 @@ def main():
|
|
| 282 |
|
| 283 |
for attempt in range(args.max_retries + 1):
|
| 284 |
attempts_used = attempt + 1
|
| 285 |
-
current_temp = 0.
|
| 286 |
|
| 287 |
# 构造本次请求的消息列表
|
| 288 |
messages = base_messages + retry_context
|
|
|
|
| 282 |
|
| 283 |
for attempt in range(args.max_retries + 1):
|
| 284 |
attempts_used = attempt + 1
|
| 285 |
+
current_temp = 0.6 if attempt == 0 else 0.7
|
| 286 |
|
| 287 |
# 构造本次请求的消息列表
|
| 288 |
messages = base_messages + retry_context
|