You need to agree to share your contact information to access this dataset

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this dataset content.

Structured3D-SpatialLM Dataset

Structured3D dataset preprocessed in SpatialLM format for layout estimation with LLMs.

Overview

This dataset is derived from Structured3D 3,500 synthetic house designs created by professional designers, preprocessed and formatted specifically for SpatialLM training.

Point clouds and layouts are derived from the RoomFormer data preprocessing script.

Data Extraction

Point clouds and layouts are compressed in zip files. To extract the files, run the following script:

cd structured3d-spatiallm
chmod +x extract.sh
./extract.sh

Dataset Strucutre

structured3d-spatiallm/
β”œβ”€β”€ structured3d_train.json # Training conversations
β”œβ”€β”€ structured3d_test.json # Test conversations
β”œβ”€β”€ dataset_info.json # Dataset metadata
β”œβ”€β”€ split.csv # Train/val split mapping
β”œβ”€β”€ pcd/ # Point cloud data
β”‚ └── .ply
β”œβ”€β”€ layout/ # Scene layout annotations
β”‚ └── .txt
└── extract.sh # Extraction script

The structured3d_train.json and structured3d_test.json dataset follows the SpatialLM format with ShareGPT-style conversations:

{
  "conversations": [
    {
      "from": "human",
      "value": "<point_cloud>Detect walls, doors, windows. The reference code is as followed: ..."
    },
    {
      "from": "gpt",
      "value": "<|layout_s|>wall_0=...<|layout_e|>"
    }
  ],
  "point_clouds": ["pcd/scene_id.ply"]
}

License

This dataset is derived from Structured3D dataset. Please refer to the original dataset's license terms for usage restrictions.

Citation

If you use this dataset in your research, please cite the original Structured3D paper:

@inproceedings{Structured3D,
  title     = {Structured3D: A Large Photo-realistic Dataset for Structured 3D Modeling},
  author    = {Jia Zheng and Junfei Zhang and Jing Li and Rui Tang and Shenghua Gao and Zihan Zhou},
  booktitle = {Proceedings of The European Conference on Computer Vision (ECCV)},
  year      = {2020}
}
Downloads last month
7