Datasets:
Benjamin02
commited on
Commit
•
c25e9b1
1
Parent(s):
41ec9e9
Update README.md
Browse files
README.md
CHANGED
@@ -358,5 +358,21 @@ tags:
|
|
358 |
---
|
359 |
|
360 |
|
361 |
-
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
362 |
|
|
|
358 |
---
|
359 |
|
360 |
|
361 |
+
# OlympicArena: Benchmarking Multi-discipline Cognitive Reasoning for Superintelligent AI
|
362 |
+
|
363 |
+
**OlympicArena** is a comprehensive, highly-challenging, and rigorously curated benchmark featuring a detailed, fine-grained evaluation mechanism designed to assess advanced AI capabilities across a broad spectrum of Olympic-level challenges.
|
364 |
+
|
365 |
+
This benchmark encompasses seven disciplines: Mathematics, Physics, Chemistry, Biology, Geography, Astronomy, and Computer Science. Each discipline is divided into two splits: validation (val) and test. The validation split includes publicly available answers for small-scale testing and evaluation, while the test split does not disclose the answers, ensuring an unbiased assessment of AI performance.
|
366 |
+
|
367 |
+
|
368 |
+
# An Example to load the data
|
369 |
+
|
370 |
+
```
|
371 |
+
from datasets import load_dataset
|
372 |
+
dataset=load_dataset("GAIR/OlympicArena", "Math", split="val")
|
373 |
+
print(dataset[0])
|
374 |
+
```
|
375 |
+
|
376 |
+
|
377 |
+
|
378 |
|