Datasets:
Upload folder using huggingface_hub
Browse files- README.md +33 -0
- dataset/data-00000-of-00001.arrow +3 -0
- dataset/dataset_info.json +47 -0
- dataset/state.json +13 -0
- episode_data_index.safetensors +3 -0
- meta_data/info.json +1 -0
- stats.safetensors +3 -0
README.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
task_categories:
|
| 3 |
+
- reinforcement-learning
|
| 4 |
+
- robotics
|
| 5 |
+
license: mit
|
| 6 |
+
---
|
| 7 |
+
|
| 8 |
+
# Ball Maze Environment Dataset
|
| 9 |
+
|
| 10 |
+
This dataset contains episodes of a ball maze environment, converted to the LeRobot format for visualization and training.
|
| 11 |
+
|
| 12 |
+
## Features
|
| 13 |
+
|
| 14 |
+
- RGB camera view of the maze environment
|
| 15 |
+
- State space representation (x, y, dx, dy)
|
| 16 |
+
- Actions (2D force vector)
|
| 17 |
+
- Episode indexing and timestamps
|
| 18 |
+
|
| 19 |
+
## Usage
|
| 20 |
+
|
| 21 |
+
```python
|
| 22 |
+
from lerobot.common.datasets.lerobot_dataset import LeRobotDataset
|
| 23 |
+
|
| 24 |
+
dataset = LeRobotDataset("Sagar18/ball-maze-lerobot")
|
| 25 |
+
```
|
| 26 |
+
|
| 27 |
+
## Visualization
|
| 28 |
+
|
| 29 |
+
You can visualize episodes using the LeRobot visualization tools:
|
| 30 |
+
|
| 31 |
+
```bash
|
| 32 |
+
python lerobot/scripts/visualize_dataset.py --repo-id Sagar18/ball-maze-lerobot --episode-index 0
|
| 33 |
+
```
|
dataset/data-00000-of-00001.arrow
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d3e13997e203f03dd663d582a4b074c6cd84d5bd844b779298dfb92e7ea23e57
|
| 3 |
+
size 109258832
|
dataset/dataset_info.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"citation": "",
|
| 3 |
+
"description": "",
|
| 4 |
+
"features": {
|
| 5 |
+
"episode_index": {
|
| 6 |
+
"dtype": "int64",
|
| 7 |
+
"_type": "Value"
|
| 8 |
+
},
|
| 9 |
+
"frame_index": {
|
| 10 |
+
"dtype": "int64",
|
| 11 |
+
"_type": "Value"
|
| 12 |
+
},
|
| 13 |
+
"timestamp": {
|
| 14 |
+
"dtype": "float32",
|
| 15 |
+
"_type": "Value"
|
| 16 |
+
},
|
| 17 |
+
"camera.rgb": {
|
| 18 |
+
"_type": "Image"
|
| 19 |
+
},
|
| 20 |
+
"observation.state": {
|
| 21 |
+
"feature": {
|
| 22 |
+
"dtype": "float32",
|
| 23 |
+
"_type": "Value"
|
| 24 |
+
},
|
| 25 |
+
"length": 4,
|
| 26 |
+
"_type": "Sequence"
|
| 27 |
+
},
|
| 28 |
+
"action": {
|
| 29 |
+
"feature": {
|
| 30 |
+
"dtype": "float32",
|
| 31 |
+
"_type": "Value"
|
| 32 |
+
},
|
| 33 |
+
"length": 2,
|
| 34 |
+
"_type": "Sequence"
|
| 35 |
+
},
|
| 36 |
+
"next.done": {
|
| 37 |
+
"dtype": "bool",
|
| 38 |
+
"_type": "Value"
|
| 39 |
+
},
|
| 40 |
+
"index": {
|
| 41 |
+
"dtype": "int64",
|
| 42 |
+
"_type": "Value"
|
| 43 |
+
}
|
| 44 |
+
},
|
| 45 |
+
"homepage": "",
|
| 46 |
+
"license": ""
|
| 47 |
+
}
|
dataset/state.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_data_files": [
|
| 3 |
+
{
|
| 4 |
+
"filename": "data-00000-of-00001.arrow"
|
| 5 |
+
}
|
| 6 |
+
],
|
| 7 |
+
"_fingerprint": "cdfd46e92d83ea6e",
|
| 8 |
+
"_format_columns": null,
|
| 9 |
+
"_format_kwargs": {},
|
| 10 |
+
"_format_type": null,
|
| 11 |
+
"_output_all_columns": false,
|
| 12 |
+
"_split": null
|
| 13 |
+
}
|
episode_data_index.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cfbdba6c3a2aae5285cace50a154978e58b359aff1e71533ce54acce4fc1af3e
|
| 3 |
+
size 2584
|
meta_data/info.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"fps": 30, "video": false, "version": "v1.4"}
|
stats.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c9c56827b671a6552051edf6f8e18bdef7eb6a482b8f7264e028716595c376d4
|
| 3 |
+
size 336
|