yinbq commited on
Commit
3674152
Β·
verified Β·
1 Parent(s): 54c5303

Add README

Browse files
Files changed (1) hide show
  1. README.md +98 -0
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.