Datasets:
Reference companion MathNet-Retrieve dataset (quick start, tasks callout, links)
Browse files
README.md
CHANGED
|
@@ -309,6 +309,12 @@ print(row["competition"], row["country"])
|
|
| 309 |
print(row["problem_markdown"])
|
| 310 |
for img in row["images"]:
|
| 311 |
img.show() # PIL image — renders inline in the HF viewer
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 312 |
```
|
| 313 |
|
| 314 |
## Overview
|
|
@@ -328,6 +334,10 @@ MathNet spans **47 countries**, **17 languages**, and **two decades** of competi
|
|
| 328 |
|
| 329 |
Even state-of-the-art reasoners remain challenged: **78.4% (Gemini-3.1-Pro)** and **69.3% (GPT-5)** on `MathNet-Solve-Test`. Embedding models struggle with equivalence retrieval (Recall@1 under 5% for all tested models), and RAG gains are highly sensitive to retrieval quality — expert retrieval lifts DeepSeek-V3.2-Speciale to **97.3%** on `MathNet-RAG`.
|
| 330 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 331 |
|
| 332 |
## How MathNet compares to existing math benchmarks
|
| 333 |
|
|
@@ -455,6 +465,7 @@ If you are a rightsholder with a concern, please open an issue or email [shaden@
|
|
| 455 |
|
| 456 |
- 🌐 **Website & paper:** <https://mathnet.mit.edu>
|
| 457 |
- 🔭 **Browse all 30K problems:** <https://mathnet.mit.edu/explorer.html>
|
|
|
|
| 458 |
- ✉️ **Contact:** [shaden@mit.edu](mailto:shaden@mit.edu)
|
| 459 |
|
| 460 |
<p align="center"><sub>© 2026 Massachusetts Institute of Technology · MathNet · ICLR 2026</sub></p>
|
|
|
|
| 309 |
print(row["problem_markdown"])
|
| 310 |
for img in row["images"]:
|
| 311 |
img.show() # PIL image — renders inline in the HF viewer
|
| 312 |
+
|
| 313 |
+
# Companion retrieval benchmark — MathNet-Retrieve (BEIR/MTEB format)
|
| 314 |
+
# tier in {"easy", "medium", "hard"}
|
| 315 |
+
corpus = load_dataset("ShadenA/MathNet-Retrieve", "hard", split="corpus") # {_id, text}
|
| 316 |
+
queries = load_dataset("ShadenA/MathNet-Retrieve", "hard", split="queries") # {_id, text}
|
| 317 |
+
qrels = load_dataset("ShadenA/MathNet-Retrieve", "hard", split="qrels") # {query-id, corpus-id, score}
|
| 318 |
```
|
| 319 |
|
| 320 |
## Overview
|
|
|
|
| 334 |
|
| 335 |
Even state-of-the-art reasoners remain challenged: **78.4% (Gemini-3.1-Pro)** and **69.3% (GPT-5)** on `MathNet-Solve-Test`. Embedding models struggle with equivalence retrieval (Recall@1 under 5% for all tested models), and RAG gains are highly sensitive to retrieval quality — expert retrieval lifts DeepSeek-V3.2-Speciale to **97.3%** on `MathNet-RAG`.
|
| 336 |
|
| 337 |
+
> **Companion dataset:** Task II (Math-Aware Retrieval) is released separately as
|
| 338 |
+
> [`ShadenA/MathNet-Retrieve`](https://huggingface.co/datasets/ShadenA/MathNet-Retrieve) —
|
| 339 |
+
> equivalent-problem retrieval graded across `easy` / `medium` / `hard` difficulty tiers.
|
| 340 |
+
|
| 341 |
|
| 342 |
## How MathNet compares to existing math benchmarks
|
| 343 |
|
|
|
|
| 465 |
|
| 466 |
- 🌐 **Website & paper:** <https://mathnet.mit.edu>
|
| 467 |
- 🔭 **Browse all 30K problems:** <https://mathnet.mit.edu/explorer.html>
|
| 468 |
+
- 🧩 **Retrieval benchmark:** <https://huggingface.co/datasets/ShadenA/MathNet-Retrieve>
|
| 469 |
- ✉️ **Contact:** [shaden@mit.edu](mailto:shaden@mit.edu)
|
| 470 |
|
| 471 |
<p align="center"><sub>© 2026 Massachusetts Institute of Technology · MathNet · ICLR 2026</sub></p>
|