├── README.md ├── arguments_test_eigen.txt ├── arguments_train_eigen.txt ├── assets ├── input.gif ├── monodepth2.gif ├── student.gif └── teacher.gif ├── custom_dataloader.py ├── distributed_sampler_no_evenly_divisible.py ├── kitti_archives_to_download.txt ├── layers.py ├── models ├── DPT_student │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── base_model.cpython-37.pyc │ │ ├── blocks.cpython-37.pyc │ │ ├── models.cpython-37.pyc │ │ └── vit.cpython-37.pyc │ ├── base_model.py │ ├── blocks.py │ ├── midas_net.py │ ├── models.py │ ├── transforms.py │ └── vit.py ├── DPT_teacher │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── __init__.cpython-39.pyc │ │ ├── base_model.cpython-37.pyc │ │ ├── base_model.cpython-39.pyc │ │ ├── blocks.cpython-37.pyc │ │ ├── blocks.cpython-39.pyc │ │ ├── models.cpython-37.pyc │ │ ├── models.cpython-39.pyc │ │ ├── vit.cpython-37.pyc │ │ └── vit.cpython-39.pyc │ ├── base_model.py │ ├── blocks.py │ ├── midas_net.py │ ├── models.py │ ├── transforms.py │ └── vit.py └── Monodepth2 │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── depth_decoder.cpython-37.pyc │ ├── depth_network.cpython-37.pyc │ └── resnet_encoder.cpython-37.pyc │ ├── depth_decoder.py │ ├── depth_network.py │ └── resnet_encoder.py ├── test.py ├── train.py └── train_test_inputs ├── eigen_test_files_with_gt.txt ├── eigen_train_files_with_gt.txt ├── nyudepthv2_test_files_with_gt.txt └── nyudepthv2_train_files_with_gt.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/README.md -------------------------------------------------------------------------------- /arguments_test_eigen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/arguments_test_eigen.txt -------------------------------------------------------------------------------- /arguments_train_eigen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/arguments_train_eigen.txt -------------------------------------------------------------------------------- /assets/input.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/assets/input.gif -------------------------------------------------------------------------------- /assets/monodepth2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/assets/monodepth2.gif -------------------------------------------------------------------------------- /assets/student.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/assets/student.gif -------------------------------------------------------------------------------- /assets/teacher.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/assets/teacher.gif -------------------------------------------------------------------------------- /custom_dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/custom_dataloader.py -------------------------------------------------------------------------------- /distributed_sampler_no_evenly_divisible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/distributed_sampler_no_evenly_divisible.py -------------------------------------------------------------------------------- /kitti_archives_to_download.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/kitti_archives_to_download.txt -------------------------------------------------------------------------------- /layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/layers.py -------------------------------------------------------------------------------- /models/DPT_student/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/DPT_student/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/models/DPT_student/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /models/DPT_student/__pycache__/base_model.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/models/DPT_student/__pycache__/base_model.cpython-37.pyc -------------------------------------------------------------------------------- /models/DPT_student/__pycache__/blocks.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/models/DPT_student/__pycache__/blocks.cpython-37.pyc -------------------------------------------------------------------------------- /models/DPT_student/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/models/DPT_student/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /models/DPT_student/__pycache__/vit.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/models/DPT_student/__pycache__/vit.cpython-37.pyc -------------------------------------------------------------------------------- /models/DPT_student/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/models/DPT_student/base_model.py -------------------------------------------------------------------------------- /models/DPT_student/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/models/DPT_student/blocks.py -------------------------------------------------------------------------------- /models/DPT_student/midas_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/models/DPT_student/midas_net.py -------------------------------------------------------------------------------- /models/DPT_student/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/models/DPT_student/models.py -------------------------------------------------------------------------------- /models/DPT_student/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/models/DPT_student/transforms.py -------------------------------------------------------------------------------- /models/DPT_student/vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/models/DPT_student/vit.py -------------------------------------------------------------------------------- /models/DPT_teacher/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/DPT_teacher/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/models/DPT_teacher/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /models/DPT_teacher/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/models/DPT_teacher/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /models/DPT_teacher/__pycache__/base_model.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/models/DPT_teacher/__pycache__/base_model.cpython-37.pyc -------------------------------------------------------------------------------- /models/DPT_teacher/__pycache__/base_model.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/models/DPT_teacher/__pycache__/base_model.cpython-39.pyc -------------------------------------------------------------------------------- /models/DPT_teacher/__pycache__/blocks.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/models/DPT_teacher/__pycache__/blocks.cpython-37.pyc -------------------------------------------------------------------------------- /models/DPT_teacher/__pycache__/blocks.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/models/DPT_teacher/__pycache__/blocks.cpython-39.pyc -------------------------------------------------------------------------------- /models/DPT_teacher/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/models/DPT_teacher/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /models/DPT_teacher/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/models/DPT_teacher/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /models/DPT_teacher/__pycache__/vit.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/models/DPT_teacher/__pycache__/vit.cpython-37.pyc -------------------------------------------------------------------------------- /models/DPT_teacher/__pycache__/vit.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/models/DPT_teacher/__pycache__/vit.cpython-39.pyc -------------------------------------------------------------------------------- /models/DPT_teacher/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/models/DPT_teacher/base_model.py -------------------------------------------------------------------------------- /models/DPT_teacher/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/models/DPT_teacher/blocks.py -------------------------------------------------------------------------------- /models/DPT_teacher/midas_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/models/DPT_teacher/midas_net.py -------------------------------------------------------------------------------- /models/DPT_teacher/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/models/DPT_teacher/models.py -------------------------------------------------------------------------------- /models/DPT_teacher/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/models/DPT_teacher/transforms.py -------------------------------------------------------------------------------- /models/DPT_teacher/vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/models/DPT_teacher/vit.py -------------------------------------------------------------------------------- /models/Monodepth2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/models/Monodepth2/__init__.py -------------------------------------------------------------------------------- /models/Monodepth2/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/models/Monodepth2/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /models/Monodepth2/__pycache__/depth_decoder.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/models/Monodepth2/__pycache__/depth_decoder.cpython-37.pyc -------------------------------------------------------------------------------- /models/Monodepth2/__pycache__/depth_network.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/models/Monodepth2/__pycache__/depth_network.cpython-37.pyc -------------------------------------------------------------------------------- /models/Monodepth2/__pycache__/resnet_encoder.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/models/Monodepth2/__pycache__/resnet_encoder.cpython-37.pyc -------------------------------------------------------------------------------- /models/Monodepth2/depth_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/models/Monodepth2/depth_decoder.py -------------------------------------------------------------------------------- /models/Monodepth2/depth_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/models/Monodepth2/depth_network.py -------------------------------------------------------------------------------- /models/Monodepth2/resnet_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/models/Monodepth2/resnet_encoder.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/train.py -------------------------------------------------------------------------------- /train_test_inputs/eigen_test_files_with_gt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/train_test_inputs/eigen_test_files_with_gt.txt -------------------------------------------------------------------------------- /train_test_inputs/eigen_train_files_with_gt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/train_test_inputs/eigen_train_files_with_gt.txt -------------------------------------------------------------------------------- /train_test_inputs/nyudepthv2_test_files_with_gt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/train_test_inputs/nyudepthv2_test_files_with_gt.txt -------------------------------------------------------------------------------- /train_test_inputs/nyudepthv2_train_files_with_gt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ji-min-song/KD-of-MS-DPT/HEAD/train_test_inputs/nyudepthv2_train_files_with_gt.txt --------------------------------------------------------------------------------