gitextract_pwdsdpvy/ ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── augmentations.py ├── commandline.py ├── configuration.py ├── datasets/ │ ├── __init__.py │ ├── common.py │ ├── flyingThings3D.py │ ├── flyingchairs.py │ ├── flyingchairsOcc.py │ ├── kitti_combined.py │ ├── sintel.py │ └── transforms.py ├── flyingchairsocc/ │ └── README.md ├── install.sh ├── logger.py ├── losses.py ├── main.py ├── models/ │ ├── IRR_FlowNet.py │ ├── IRR_PWC.py │ ├── __init__.py │ ├── correlation_package/ │ │ ├── __init__.py │ │ ├── correlation.py │ │ ├── correlation_cuda.cc │ │ ├── correlation_cuda_kernel.cu │ │ ├── correlation_cuda_kernel.cuh │ │ └── setup.py │ ├── correlation_package_cu9/ │ │ ├── __init__.py │ │ ├── correlation.py │ │ ├── correlation_cuda.cc │ │ ├── correlation_cuda_kernel.cu │ │ ├── correlation_cuda_kernel.cuh │ │ └── setup.py │ ├── flownet1s.py │ ├── flownet1s_irr.py │ ├── flownet1s_irr_bi.py │ ├── flownet1s_irr_occ.py │ ├── flownet1s_irr_occ_bi.py │ ├── flownet_modules.py │ ├── irr_modules.py │ ├── pwc_modules.py │ ├── pwcnet.py │ ├── pwcnet_bi.py │ ├── pwcnet_irr.py │ ├── pwcnet_irr_bi.py │ ├── pwcnet_irr_occ.py │ ├── pwcnet_irr_occ_bi.py │ ├── pwcnet_occ.py │ └── pwcnet_occ_bi.py ├── optim/ │ └── __init__.py ├── runtime.py ├── saved_check_point/ │ └── pwcnet/ │ ├── IRR-PWC_flyingchairsOcc/ │ │ ├── checkpoint_best.ckpt │ │ └── checkpoint_latest.ckpt │ ├── IRR-PWC_kitti/ │ │ ├── checkpoint_best.ckpt │ │ └── checkpoint_latest.ckpt │ ├── IRR-PWC_sintel/ │ │ ├── checkpoint_best.ckpt │ │ └── checkpoint_latest.ckpt │ ├── IRR-PWC_things3d/ │ │ ├── checkpoint_best.ckpt │ │ └── checkpoint_latest.ckpt │ ├── PWCNet/ │ │ └── checkpoint_best.ckpt │ └── PWCNet-irr/ │ └── checkpoint_best.ckpt ├── scripts/ │ ├── IRR-FlowNet_flyingChairsOcc.sh │ ├── IRR-PWC_flyingChairsOcc.sh │ ├── IRR-PWC_kitti_train.sh │ ├── IRR-PWC_kitti_train_full.sh │ ├── IRR-PWC_sintel_train.sh │ ├── IRR-PWC_sintel_train_full.sh │ ├── IRR-PWC_things3d.sh │ ├── flownet1s.sh │ ├── flownet1s_irr1.sh │ ├── flownet1s_irr2.sh │ ├── pwcnet.sh │ ├── pwcnet_irr.sh │ └── validation/ │ ├── IRR-FlowNet_flyingChairs.sh │ ├── IRR-PWC_flyingChairs.sh │ ├── IRR-PWC_kitti.sh │ ├── IRR-PWC_sintel.sh │ ├── IRR-PWC_things3d.sh │ ├── flownet1s.sh │ ├── flownet1s_irr1.sh │ ├── flownet1s_irr2.sh │ ├── pwcnet.sh │ └── pwcnet_irr.sh ├── tools.py └── utils/ ├── __init__.py ├── flow.py └── interpolation.py