CoolFace
Datasetpublic

jamilalthani1/SPARC

SPaRC Dataset Website • Solver • Generator A grid-based puzzle dataset for benchmarking LLMs spatial reasoning capabilities. Data Schema Each record (JSON) includes: id (string): unique puzzle identifier difficulty_level (int) & difficulty_score (float) grid_size: { "height": H, "width": W } polyshapes: JSON string mapping shape IDs to binary grids puzzle_array: 2D array with cell codes (e.g., S, E, +, P-O-112) solution_count (int) and solutions list (with… See the full description on the dataset page: https://huggingface.co/datasets/jamilalthani1/SPARC.

sourceHugging Faceupdated 10mo agoView on Hugging Face
0likes108downloads
Dataset Card

<p align="center"> <img src="logo.png" alt="SPaRC Logo" width="128"/> </p>

SPaRC Dataset

WebsiteSolverGenerator

A grid-based puzzle dataset for benchmarking LLMs spatial reasoning capabilities.

Data Schema

Each record (JSON) includes:

  • id (string): unique puzzle identifier
  • difficulty_level (int) & difficulty_score (float)
  • grid_size: { "height": H, "width": W }
  • polyshapes: JSON string mapping shape IDs to binary grids
  • puzzle_array: 2D array with cell codes (e.g., S, E, +, P-O-112)
  • solution_count (int) and solutions list (with index, path, pathLength)
  • text_visualization: YAML-style summary

Sample Entry

json
{
  "id": "10e68dc3a6fbfcdf",
  "difficulty_level": 3,
  "difficulty_score": 2.3261,
  "grid_size": {"height":3,"width":4},
  "polyshapes":"{\"112\":[[0,1,...]]}",
  "puzzle_array":[
    ["+","+","+","E"],
    ["+","P-O-112","+","o-O"],
    ["S","N","+","G"]
  ],
  "solution_count": 10,
  "solutions": [ { "index":0, "pathLength":34, ... } ],
  "text_visualization": "..."
}

Citation Information

If you use the dataset in any way, please cite the following paper. Preprint: https://arxiv.org/abs/2505.16686

bib
@article{kaesberg2025sparc,
  title={SPaRC: A Spatial Pathfinding Reasoning Challenge},
  author={Kaesberg, Lars Benedikt and Wahle, Jan Philip and Ruas, Terry and Gipp, Bela},
  journal={arXiv preprint arXiv:2505.16686},
  year={2025}
}