For training, we use RealEstate10K and DL3DV. We additionally use ScanNet for zero-shot evaluation with RE10K-trained models. This repository provides data processing scripts to convert the original datasets to PyTorch chunk files that can be directly loaded by the codebase.
Expected folder structure:
data
├── re10k
│ ├── train
│ │ ├── 000000.torch
│ │ ├── ...
│ │ └── index.json
│ └── test
│ ├── 000000.torch
│ ├── ...
│ └── index.json
└── dl3dv
├── train
│ ├── 000000.torch
│ ├── ...
│ └── index.json
└── test
├── 000000.torch
├── ...
└── index.json
By default, this repository looks for packed datasets under ./data/re10k and ./data/dl3dv. You can also set RE10K_ROOT, DL3DV_ROOT, SCANNET_ROOT, or SCANNETPP_ROOT, or override paths directly with Hydra, for example dataset.re10k.roots=[$RE10K_ROOT].
We also provide instructions to convert additional datasets to the desired format.
For experiments on RealEstate10K, we primarily follow pixelSplat and MVSplat to train and evaluate on 256x256 resolution.
Please refer to here for acquiring the processed 360p dataset (360x640 resolution).
If you would like to train and evaluate on the high-resolution RealEstate10K dataset, you will need to download the 720p (720x1280) version. Please refer to here for the downloading script. Note that the script by default downloads the 360p videos, you will need to modify the360p to 720p in this line of code to download the 720p videos.
After downloading the 720p dataset, you can use the scripts here to convert the dataset to the desired format in this codebase.
In the DL3DV experiments, we train on DL3DV-480p by default.
For the training set, we use the DL3DV-480p dataset (270x480 resolution), where the 140 scenes in the test set are excluded during processing the training set. After downloading the DL3DV-480p dataset, you can then use the script src/scripts/convert_dl3dv.py to convert the training set.
Please note that you will need to update the dataset paths in the aforementioned processing scripts.
If you would like to train on the high-resolution DL3DV dataset, you will need to download the DL3DV-960P version (540x960 resolution). Simply follow the same procedure for data processing (use the images_4 folder instead of images_8).