Datasets:
ArXiv:
License:
metadata
license: apache-2.0
task_categories:
- robotics
- image-to-3d
tags:
- objaverse
- procthor
- ai2-thor
- 3d-objects
- embodied-ai
- procedural-generation
Objaverse SIMS Dataset
Processed 3D assets from Objaverse for use with AI2-THOR and ProcTHOR.
Contents
| Component | Description | Size |
|---|---|---|
processed/ |
~40K processed 3D objects with textures | 27 GB |
houses/ |
160K+ procedurally generated house layouts | 3.7 GB |
procthor_databases/ |
Asset databases, materials, placement rules | 70 MB |
Quick Start
# Install dependencies
pip install huggingface_hub[hf_transfer]
# Download the unpack script
wget https://huggingface.co/datasets/ellisbrown/objaverse_sims/raw/main/unpack.py
# Run it (downloads ~30GB and extracts to ./objaverse_sims)
python unpack.py ./objaverse_sims
Or specify a custom path:
python unpack.py /path/to/destination
Data Format
Processed Objects
Each object directory contains:
{object_id}/
├── {object_id}.pkl.gz # 3D mesh data (gzip pickle)
├── albedo.jpg # Diffuse texture
├── normal.jpg # Normal map
├── emission.jpg # Emission map
└── thor_metadata.json # AI2-THOR metadata
House Layouts
train.jsonl.gz/test.jsonl.gz/val.jsonl.gz- Full house definitionstrain//test//val/- Individual house JSON files
Asset Databases
asset-database.json- Asset catalogmaterial-database.json- Materialsplacement-annotations.json- Placement rulesreceptacles.json- Receptacle definitions
Manual Download
If you prefer not to use the script:
# Clone the dataset
huggingface-cli download ellisbrown/objaverse_sims --repo-type dataset --local-dir ./objaverse_sims
# Extract processed shards
cd objaverse_sims/processed
for f in shard_*.tar; do tar -xf "$f" && rm "$f"; done
rm manifest.json
# Extract house files
cd ../houses
for split in train test val; do
tar -xf "${split}_individual.tar" -C "$split/" && rm "${split}_individual.tar"
done
Citation
@article{brown2025simsv,
title = { {SIMS-V}: Simulated Instruction-Tuning for Spatial Video Understanding },
author = { Brown, Ellis and Ray, Arijit and Krishna, Ranjay and Girshick, Ross and Fergus, Rob and Xie, Saining },
journal = { arXiv preprint arXiv:2511.04668 },
year = { 2025 }
}
@inproceedings{deitke2023objaverse,
title={Objaverse: A Universe of Annotated 3D Objects},
author={Deitke, Matt and others},
booktitle={CVPR},
year={2023}
}
@inproceedings{deitke2022procthor,
title={ProcTHOR: Large-Scale Embodied AI Using Procedural Generation},
author={Deitke, Matt and others},
booktitle={NeurIPS},
year={2022}
}