Datasets:

Tasks:
Other
Modalities:
Tabular
Text
Size:
< 1K
ArXiv:
License:
nielsr HF Staff commited on
Commit
2d1e571
·
verified ·
1 Parent(s): 908c9a4

Add dataset card for EqR-data

Browse files

This PR adds a dataset card for the EqR-data repository. It includes:
- Metadata for the license and task category.
- Links to the paper "Equilibrium Reasoners: Learning Attractors Enables Scalable Reasoning", the GitHub repository, and the project page.
- Descriptions of the Sudoku-Extreme and Maze-Unique datasets.
- Sample usage instructions for downloading the data.

Files changed (1) hide show
  1. README.md +44 -0
README.md ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - other
5
+ ---
6
+
7
+ # EqR-data
8
+
9
+ This repository contains the datasets used in the paper [Equilibrium Reasoners: Learning Attractors Enables Scalable Reasoning](https://huggingface.co/papers/2605.21488).
10
+
11
+ The datasets are designed to evaluate scalable test-time reasoning in iterative latent models, specifically focused on learning task-conditioned attractors.
12
+
13
+ ## Dataset Details
14
+
15
+ The repository includes data for two main reasoning tasks:
16
+ - **Sudoku-Extreme**: A set of challenging Sudoku puzzles designed to test the limits of iterative reasoning models, following the setup from [HRM](https://github.com/sapientinc/HRM).
17
+ - **Maze-Unique**: A dataset of 30x30 mazes where each maze has a unique solution path and specific length constraints.
18
+
19
+ ## Links
20
+
21
+ - **Paper**: [Equilibrium Reasoners: Learning Attractors Enables Scalable Reasoning](https://huggingface.co/papers/2605.21488)
22
+ - **GitHub**: [locuslab/eqr](https://github.com/locuslab/eqr)
23
+ - **Project Page**: [X (Twitter) Thread](https://x.com/huskydogewoof/status/2057641657580064941?s=20)
24
+
25
+ ## Usage
26
+
27
+ The datasets can be downloaded using the scripts provided in the official GitHub repository:
28
+
29
+ ```bash
30
+ git clone https://github.com/locuslab/eqr
31
+ cd eqr
32
+ bash scripts/download_artifacts.sh
33
+ ```
34
+
35
+ ## Citation
36
+
37
+ ```bibtex
38
+ @article{huang2026equilibrium,
39
+ title={Equilibrium Reasoners: Learning Attractors Enables Scalable Reasoning},
40
+ author={Huang, Benhao and Geng, Zhengyang and Kolter, Zico},
41
+ journal={arXiv preprint arXiv:2605.21488},
42
+ year={2026}
43
+ }
44
+ ```