gitextract_lf1bmt9g/ ├── LICENSE ├── README.md ├── checkpoints/ │ └── place_checkpoints_here.txt ├── environment.yaml ├── infer.py ├── inference/ │ └── depthlab_pipeline.py ├── output/ │ └── in-the-wild_example/ │ └── depth_npy/ │ └── RGB_pred.npy ├── scripts/ │ └── infer.sh ├── src/ │ └── models/ │ ├── attention.py │ ├── mutual_self_attention.py │ ├── projection.py │ ├── transformer_2d.py │ ├── unet_2d_blocks.py │ ├── unet_2d_condition.py │ └── unet_2d_condition_main.py ├── test_cases/ │ ├── know_depth.npy │ └── mask.npy └── utils/ ├── image_util.py └── seed_all.py