--- pretty_name: ESRP-PD task_categories: - robotics - reinforcement-learning language: - en tags: - embodied-ai - rearrangement - indoor-scenes - omnigibson - 3d-front - imitation-learning - benchmark size_categories: - 1K_target.json` | Goal layout: the object poses the agent has to reproduce | | `_initial.json` | Start layout: disarranged poses, plus a `target_bbox` for every rearrangeable object | | `_target.png` | Top-down render of the goal layout, resized to 128×128 and given to the agent | | `robot_pos_ori.txt` | Robot spawn position and orientation | Both JSON files follow OmniGibson's scene-state format. Objects carry an `is_to_rearrange` flag marking the ones the agent has to move; placement is judged against the `target_bbox` stored in the initial file. The task loads the initial layout and derives the goal by swapping `initial` for `target` in the filename, so the two files must stay side by side with matching names. ## Splits | Split | Scenes | File | | --- | --- | --- | | Train | 4,995 | `train_data.txt` | | Validation | 200 | `valid_data.txt` | | Test | 354 | `test_data.txt` | Each file is one scene directory name per line. Difficulty is defined by how many objects have to be rearranged: easy (1 object), medium (2 to 3), and hard (4 to 6). ## About the demonstrations `imitation_example.zip` is a **proof-of-concept subset**, not the full demonstration set used to train the baseline in the paper. It is enough to get a training run working end to end. To train a policy that reproduces the reported numbers, generate demonstrations yourself with the data generation pipeline described in [DATASET.md](https://github.com/BIT-PIE/ESRP/blob/main/DATASET.md). ## Citation ```bibtex @article{chen2026esrp, title = {Embodied Scene Rearrangement Planning}, author = {Chen, Canzhi and Wang, Zan and Zhu, Siqi and Wu, Qi and Li, Yixuan and Liang, Wei}, journal = {IEEE Robotics and Automation Letters}, year = {2026}, publisher = {IEEE} } ``` ## Contact Please open an issue in the [code repository](https://github.com/BIT-PIE/ESRP/issues) for questions about the dataset or the benchmark.