BlazeLlama/EuclideaGame
收藏Hugging Face2024-05-07 更新2024-06-12 收录
下载链接:
https://hf-mirror.com/datasets/BlazeLlama/EuclideaGame
下载链接
链接失效反馈官方服务:
资源简介:
---
license: apache-2.0
---
# Euclidea Dataset
The Euclidea Dataset, derived from the challenging geometry game Euclidea, includes 105 construction challenges across 11 difficulty levels, each with a series of progressively complex geometric problems.
## Features
- **Scaling Challenges:** From simple constructions to advanced geometric tasks.
- **Natural Language Descriptions:** Detailed descriptions and natural language solutions accompany each challenge.
- **Tool Language Descriptions:** Solution tool sequences alongside their points of application are provided for each challenge.
## Dataset Structure
Each entry in the dataset includes the following columns:
- **pack:** Identifier for the challenge pack.
- **level_id:** URL to the level's detailed description on the Euclidea fandom wiki.
- **question:** The geometric problem presented in the challenge.
- **solution_nl:** The solution explained in natural language.
- **solution_tool:** The list of geometric tools used in the solution.
- **solution_symbol:** The sequence of geometric objects involved in each solution step.
- **initial_symbol:** The initial geometric objects present at the start of the problem.
## Usage
To integrate this dataset into your projects as a whole:
```python
from datasets import load_dataset
dataset = load_dataset("BlazeLlama/euclidea")
```
To load specific packs - for example packs Alpha and Beta:
```python
from datasets import load_dataset
dataset = load_dataset("BlazeLlama/euclidea", pack=['Alpha', 'Beta'])
```
提供机构:
BlazeLlama
原始信息汇总
Euclidea Dataset 概述
数据集特点
- 挑战难度分级: 包含11个难度级别,共105个几何构造挑战。
- 详细描述与解决方案: 每个挑战配有详细的自然语言描述和解决方案。
- 工具使用说明: 提供每个挑战解决方案中使用的几何工具及其应用点序列。
数据集结构
- 数据列说明:
- pack: 挑战包标识符。
- level_id: 指向Euclidea Fandom Wiki上该级别详细描述的URL。
- question: 挑战中提出的几何问题。
- solution_nl: 自然语言解释的解决方案。
- solution_tool: 解决方案中使用的几何工具列表。
- solution_symbol: 解决方案每一步涉及的几何对象序列。
- initial_symbol: 问题开始时存在的初始几何对象。
使用方法
-
整体加载: python from datasets import load_dataset dataset = load_dataset("BlazeLlama/euclidea")
-
特定包加载: 例如加载Alpha和Beta包: python from datasets import load_dataset dataset = load_dataset("BlazeLlama/euclidea", pack=[Alpha, Beta])



