gitextract_gv2hn7lw/ ├── .gitignore ├── AUTHORS ├── README.md ├── configs/ │ ├── config.yaml │ ├── dataset/ │ │ ├── kitti.yaml │ │ ├── nyuv2.yaml │ │ └── re10k.yaml │ ├── experiment/ │ │ ├── layered_kitti.yaml │ │ ├── layered_nyuv2.yaml │ │ └── layered_re10k.yaml │ ├── hydra/ │ │ ├── cluster.yaml │ │ └── defaults.yaml │ ├── loss/ │ │ ├── reconstruction.yaml │ │ └── regularization.yaml │ └── model/ │ ├── backbone/ │ │ └── resnet.yaml │ ├── depth/ │ │ └── unidepth.yaml │ └── gaussian.yaml ├── datasets/ │ ├── colmap_misc.py │ ├── colmap_utils.py │ ├── data.py │ ├── download_realestate10k.py │ ├── download_realestate10k_colmap.sh │ ├── kitti.py │ ├── kitti_raw/ │ │ └── orb-slam_poses/ │ │ ├── 2011_09_26/ │ │ │ ├── 2011_09_26_drive_0001_sync.txt │ │ │ ├── 2011_09_26_drive_0002_sync.txt │ │ │ ├── 2011_09_26_drive_0005_sync.txt │ │ │ ├── 2011_09_26_drive_0009_sync.txt │ │ │ ├── 2011_09_26_drive_0011_sync.txt │ │ │ ├── 2011_09_26_drive_0013_sync.txt │ │ │ ├── 2011_09_26_drive_0014_sync.txt │ │ │ ├── 2011_09_26_drive_0015_sync.txt │ │ │ ├── 2011_09_26_drive_0017_sync.txt │ │ │ ├── 2011_09_26_drive_0018_sync.txt │ │ │ ├── 2011_09_26_drive_0019_sync.txt │ │ │ ├── 2011_09_26_drive_0020_sync.txt │ │ │ ├── 2011_09_26_drive_0022_sync.txt │ │ │ ├── 2011_09_26_drive_0023_sync.txt │ │ │ ├── 2011_09_26_drive_0027_sync.txt │ │ │ ├── 2011_09_26_drive_0028_sync.txt │ │ │ ├── 2011_09_26_drive_0029_sync.txt │ │ │ ├── 2011_09_26_drive_0032_sync.txt │ │ │ ├── 2011_09_26_drive_0035_sync.txt │ │ │ ├── 2011_09_26_drive_0036_sync.txt │ │ │ ├── 2011_09_26_drive_0039_sync.txt │ │ │ ├── 2011_09_26_drive_0046_sync.txt │ │ │ ├── 2011_09_26_drive_0048_sync.txt │ │ │ ├── 2011_09_26_drive_0051_sync.txt │ │ │ ├── 2011_09_26_drive_0052_sync.txt │ │ │ ├── 2011_09_26_drive_0056_sync.txt │ │ │ ├── 2011_09_26_drive_0057_sync.txt │ │ │ ├── 2011_09_26_drive_0059_sync.txt │ │ │ ├── 2011_09_26_drive_0060_sync.txt │ │ │ ├── 2011_09_26_drive_0061_sync.txt │ │ │ ├── 2011_09_26_drive_0064_sync.txt │ │ │ ├── 2011_09_26_drive_0070_sync.txt │ │ │ ├── 2011_09_26_drive_0079_sync.txt │ │ │ ├── 2011_09_26_drive_0084_sync.txt │ │ │ ├── 2011_09_26_drive_0086_sync.txt │ │ │ ├── 2011_09_26_drive_0087_sync.txt │ │ │ ├── 2011_09_26_drive_0091_sync.txt │ │ │ ├── 2011_09_26_drive_0093_sync.txt │ │ │ ├── 2011_09_26_drive_0095_sync.txt │ │ │ ├── 2011_09_26_drive_0096_sync.txt │ │ │ ├── 2011_09_26_drive_0101_sync.txt │ │ │ ├── 2011_09_26_drive_0104_sync.txt │ │ │ ├── 2011_09_26_drive_0106_sync.txt │ │ │ ├── 2011_09_26_drive_0113_sync.txt │ │ │ └── 2011_09_26_drive_0117_sync.txt │ │ ├── 2011_09_28/ │ │ │ ├── 2011_09_28_drive_0001_sync.txt │ │ │ └── 2011_09_28_drive_0002_sync.txt │ │ ├── 2011_09_29/ │ │ │ ├── 2011_09_29_drive_0004_sync.txt │ │ │ ├── 2011_09_29_drive_0026_sync.txt │ │ │ └── 2011_09_29_drive_0071_sync.txt │ │ ├── 2011_09_30/ │ │ │ ├── 2011_09_30_drive_0016_sync.txt │ │ │ ├── 2011_09_30_drive_0018_sync.txt │ │ │ ├── 2011_09_30_drive_0020_sync.txt │ │ │ ├── 2011_09_30_drive_0027_sync.txt │ │ │ ├── 2011_09_30_drive_0028_sync.txt │ │ │ ├── 2011_09_30_drive_0033_sync.txt │ │ │ └── 2011_09_30_drive_0034_sync.txt │ │ └── 2011_10_03/ │ │ ├── 2011_10_03_drive_0027_sync.txt │ │ ├── 2011_10_03_drive_0034_sync.txt │ │ ├── 2011_10_03_drive_0042_sync.txt │ │ └── 2011_10_03_drive_0047_sync.txt │ ├── nyu/ │ │ ├── camera.py │ │ ├── compute_colmap.py │ │ └── dataset.py │ ├── preprocess_realestate10k.py │ ├── re10k.py │ ├── tardataset.py │ └── util.py ├── evaluate.py ├── evaluate.sh ├── evaluation/ │ └── evaluator.py ├── misc/ │ ├── depth.py │ ├── download_pretrained_models.py │ ├── localstorage.py │ ├── logger.py │ ├── util.py │ └── visualise_3d.py ├── models/ │ ├── decoder/ │ │ ├── gauss_util.py │ │ ├── gaussian_decoder.py │ │ └── resnet_decoder.py │ ├── encoder/ │ │ ├── layers.py │ │ ├── resnet_encoder.py │ │ └── unidepth_encoder.py │ └── model.py ├── pyproject.toml ├── requirements-torch.txt ├── requirements.txt ├── splits/ │ ├── eldar/ │ │ ├── test_files.txt │ │ ├── train_files.txt │ │ └── val_files.txt │ ├── nyuv2/ │ │ └── val_files.txt │ ├── re10k_latentsplat/ │ │ ├── test_closer_as_src.txt │ │ ├── test_first_as_src.txt │ │ └── test_second_as_src.txt │ ├── re10k_mine_filtered/ │ │ ├── test_files.txt │ │ └── val_files.txt │ ├── re10k_pixelsplat/ │ │ ├── preprocess_2_frames_split.py │ │ ├── test_closer_as_src.txt │ │ ├── test_first_as_src.txt │ │ └── test_second_as_src.txt │ └── tulsiani2/ │ ├── test_files.txt │ ├── train_files.txt │ └── val_files.txt ├── train.py ├── train.sh └── trainer.py