We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 007a715 commit 4f8881aCopy full SHA for 4f8881a
bench/vllm_semantic_router_bench/dataset_implementations/math_dataset.py
@@ -43,10 +43,10 @@ def _load_raw_dataset(self):
43
# Load the test split - try different possible dataset names
44
try:
45
dataset = load_dataset("hendrycks/math", split="test")
46
- except:
+ except Exception:
47
48
dataset = load_dataset("lighteval/MATH", split="test")
49
50
dataset = load_dataset("competition_math", split="test")
51
self._dataset_cache = pd.DataFrame(dataset)
52
return self._dataset_cache
0 commit comments