Add README
Browse files
README.md
ADDED
|
@@ -0,0 +1,98 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: SMM Dataset
|
| 3 |
+
license: mit
|
| 4 |
+
tags:
|
| 5 |
+
- dataset
|
| 6 |
+
- computer-vision
|
| 7 |
+
- 3d
|
| 8 |
+
- blocks
|
| 9 |
+
- spatial-reasoning
|
| 10 |
+
- minecraft
|
| 11 |
+
size_categories:
|
| 12 |
+
- 10G<n<100G
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
# SMM Dataset
|
| 16 |
+
|
| 17 |
+
This dataset contains 3D block manipulation and spatial reasoning data for training AI models on spatial understanding and block construction tasks.
|
| 18 |
+
|
| 19 |
+
## π¦ Download
|
| 20 |
+
|
| 21 |
+
The dataset is provided as a compressed archive:
|
| 22 |
+
- **File**: `SMM_dataset.tar.gz`
|
| 23 |
+
- **Size**: 1.80 GB (compressed)
|
| 24 |
+
- **Format**: GZ compressed tar archive
|
| 25 |
+
|
| 26 |
+
### Extract the dataset:
|
| 27 |
+
|
| 28 |
+
```bash
|
| 29 |
+
# For .tar.gz files
|
| 30 |
+
tar -xzf SMM_dataset.tar.gz
|
| 31 |
+
|
| 32 |
+
# For .tar.xz files
|
| 33 |
+
tar -xJf SMM_dataset.tar.gz
|
| 34 |
+
|
| 35 |
+
# For .tar.bz2 files
|
| 36 |
+
tar -xjf SMM_dataset.tar.gz
|
| 37 |
+
```
|
| 38 |
+
|
| 39 |
+
## π Dataset Structure
|
| 40 |
+
|
| 41 |
+
After extraction, you will find:
|
| 42 |
+
|
| 43 |
+
```
|
| 44 |
+
SMM/
|
| 45 |
+
βββ SMM_data/ # Main dataset files
|
| 46 |
+
βββ random_pipeline/ # Random block generation pipeline
|
| 47 |
+
βββ semantic_blocks_part1/ # First part of semantic block data
|
| 48 |
+
βββ semantic_blocks_part2/ # Second part of semantic block data
|
| 49 |
+
βββ sementic_blocks.tar.gz # Additional compressed semantic blocks
|
| 50 |
+
```
|
| 51 |
+
|
| 52 |
+
## π― Usage
|
| 53 |
+
|
| 54 |
+
This dataset can be used for:
|
| 55 |
+
- Training models on spatial reasoning
|
| 56 |
+
- 3D object manipulation and understanding
|
| 57 |
+
- Block construction and planning tasks
|
| 58 |
+
- Multi-view 3D reconstruction
|
| 59 |
+
- Sequential decision making in 3D environments
|
| 60 |
+
|
| 61 |
+
## π Data Format
|
| 62 |
+
|
| 63 |
+
The dataset contains:
|
| 64 |
+
- **Images**: RGB images of block structures from multiple viewpoints
|
| 65 |
+
- **Annotations**: Spatial relationships and block configurations
|
| 66 |
+
- **Metadata**: Task descriptions and ground truth labels
|
| 67 |
+
|
| 68 |
+
## π Related Resources
|
| 69 |
+
|
| 70 |
+
- **Paper**: [Link to paper if available]
|
| 71 |
+
- **Code**: [Link to training/inference code]
|
| 72 |
+
- **Model**: [Link to trained models]
|
| 73 |
+
|
| 74 |
+
## π License
|
| 75 |
+
|
| 76 |
+
This dataset is released under the MIT License.
|
| 77 |
+
|
| 78 |
+
## π Citation
|
| 79 |
+
|
| 80 |
+
If you use this dataset in your research, please cite:
|
| 81 |
+
|
| 82 |
+
```bibtex
|
| 83 |
+
@dataset{smm_dataset,
|
| 84 |
+
title={SMM Dataset: Spatial Reasoning with Minecraft Blocks},
|
| 85 |
+
author={Your Name},
|
| 86 |
+
year={2025},
|
| 87 |
+
publisher={Hugging Face},
|
| 88 |
+
url={https://huggingface.co/datasets/yinbq/SMM-Dataset}
|
| 89 |
+
}
|
| 90 |
+
```
|
| 91 |
+
|
| 92 |
+
## π§ Contact
|
| 93 |
+
|
| 94 |
+
For questions or issues, please open an issue on the dataset repository.
|
| 95 |
+
|
| 96 |
+
---
|
| 97 |
+
|
| 98 |
+
**Note**: This is a large dataset. Make sure you have sufficient disk space (~40GB) before extracting.
|