├── .gitignore ├── License.txt ├── README.md ├── data_utils.py ├── download_data.sh ├── download_models.sh ├── environment.yml ├── keras_utils.py ├── kitti_evaluate.py ├── kitti_extrap_finetune.py ├── kitti_settings.py ├── kitti_train.py ├── prednet.py └── process_kitti.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxlab/prednet/HEAD/.gitignore -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxlab/prednet/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxlab/prednet/HEAD/README.md -------------------------------------------------------------------------------- /data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxlab/prednet/HEAD/data_utils.py -------------------------------------------------------------------------------- /download_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxlab/prednet/HEAD/download_data.sh -------------------------------------------------------------------------------- /download_models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxlab/prednet/HEAD/download_models.sh -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxlab/prednet/HEAD/environment.yml -------------------------------------------------------------------------------- /keras_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxlab/prednet/HEAD/keras_utils.py -------------------------------------------------------------------------------- /kitti_evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxlab/prednet/HEAD/kitti_evaluate.py -------------------------------------------------------------------------------- /kitti_extrap_finetune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxlab/prednet/HEAD/kitti_extrap_finetune.py -------------------------------------------------------------------------------- /kitti_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxlab/prednet/HEAD/kitti_settings.py -------------------------------------------------------------------------------- /kitti_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxlab/prednet/HEAD/kitti_train.py -------------------------------------------------------------------------------- /prednet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxlab/prednet/HEAD/prednet.py -------------------------------------------------------------------------------- /process_kitti.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coxlab/prednet/HEAD/process_kitti.py --------------------------------------------------------------------------------