Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions eval/run_eval.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from langdetect import detect_langs

language_list = ["en", "zh", "ar", "bn", "de", "es", "fr", "id", "it", "ja", "ko", "ms", "pt", "ru", "sw", "te", "th", "vi", ]
level_list = ["low", "middle", "high", "top"]
level_list = ["low", "medium", "high", "top"]


def initial_score_json(score_file):
Expand Down Expand Up @@ -175,4 +175,4 @@ def evaluation(args):
parser.add_argument('--level', type=str, required=True)

args = parser.parse_args()
evaluation(args)
evaluation(args)
2 changes: 1 addition & 1 deletion eval/run_eval.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
model_list=(qwq-32b)
language_list=(en zh ar bn de es fr id it ja ko ms pt ru sw te th vi)
language_list=(zh ja te)
level_list=(low middle high top)
level_list=(low medium high top)

for i in ${model_list[*]}; do
for j in ${language_list[*]}; do
Expand Down
2 changes: 1 addition & 1 deletion eval/scripts.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Union, Optional, Any
import regex
from bundled.latex2sympy2.latex2sympy2 import latex2sympy
from bundled.symeval import EvaluatorMath
from bundled.symeval.core import EvaluatorMath
import multiprocessing
from math import isclose
import time
Expand Down