File size: 3,500 Bytes
f7bbd09 39bbf07 ac2c1d1 39bbf07 1f1d271 39bbf07 1f1d271 39bbf07 1f1d271 39bbf07 b7f2617 39bbf07 1f1d271 39bbf07 f7bbd09 1f1d271 39bbf07 1f1d271 b7f2617 1f1d271 39bbf07 9f89528 9dfb746 9f89528 39bbf07 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 | ---
language:
- en
tags:
- multimodal-learning
---
# Dataset Card for TST-ProcTHOR
## Dataset Description
- **Homepage:** [https://tst-vision.epfl.ch](https://tst-vision.epfl.ch)
- **Repository:** [TST official repository](https://github.com)
- **Paper:** [Arxiv](https://arxiv.org)
### Dataset Summary
This custom TST-ProcTHOR dataset is used in research work "Multimodality as Supervision: Self-Supervised Specialization to the Test Environment via Multimodality".
- `pretrain/` is a multimodal pretraining dataset collected using ProcTHOR environment. It contains RGB images, and 9 additional tokenized modalities.
- `segmentation/train` is the associated downstream dataset used to finetune TST pretrained models on semantic segmentation tasks.
- `segmentation/test` contains the test dataset used for evaluation/testing on semantic segmentation task. This data corresponds to samples obtained from the test-space itself.
- `captioning/train` is the associated downstream dataset used to finetune TST pretrained models on captioning task.
- `captioning/test` contains the test dataset used for evaluation/testing on captioning task. This data corresponds to samples obtained from the test-space itself.
## Dataset Structure
```python
TST-ProcTHOR/
├── pretrain/
│ ├── test_spaces/
│ │ ├── crop_settings/ # Contains .tar shards
│ │ ├── det/ # Contains .tar shards
│ │ ├── rgb/ # Contains .tar shards
│ │ ├── tok_canny_edge@224/ # Contains .tar shards
│ │ ├── ... # More tokenized feature directories
│ │ └── tok_semseg@224/ # Contains .tar shards
│ └── transfer/
│ ├── crop_settings/ # Contains .tar shards
│ ├── det/ # Contains .tar shards
│ ├── rgb/ # Contains .tar shards
│ ├── tok_canny_edge@224/ # Contains .tar shards
│ ├── ... # More tokenized feature directories
│ └── tok_semseg@224/ # Contains .tar shards
├── segmentation/
│ ├── train/ # Training data for segmentation
│ └── test/ # Test data for segmentation
├── captioning/
│ ├── train/ # Training data for captioning
│ └── test/ # Test data for captioning
└── README.md
```
## Dataset Creation
It includes procedurally generated
house-like environments. We use 5 procedurally generated
houses as our test space. Dataset is collected by randomly sample various agent
x, y, z positions and orientations along its axis in the test
space, and collect RGB-D images at these points.
### Source Data
Dataset is collected from ProcTHOR simulator.
### Citation Information
```
@inproceedings{singh2026tst,
title={Multimodality as Supervision: Self-Supervised Specialization to the Test Environment via Multimodality},
author={Kunal Pratap Singh and Ali Garjani and Rishubh Singh and Muhammad Uzair Khattak and Efe Tarhan and Jason Toskov and Andrei Atanov and O{\u{g}}uzhan Fatih Kar and Amir Zamir},
booktitle={International Conference on Learning Representations (ICLR)},
year={2026}
}
``` |