├── .gitignore ├── LICENSE ├── Solution.md ├── Solution.pdf ├── data └── .gitignore ├── directory_structure.txt ├── logs └── .gitignore ├── models └── .gitignore ├── readme.md ├── requirements.txt ├── settings.json ├── source ├── ensemble │ ├── .ipynb_checkpoints │ │ └── prediction_ensemble-checkpoint.py │ ├── prediction_ensemble.py │ └── unionfind.py ├── mask_rcnn │ ├── .ipynb_checkpoints │ │ ├── adriving_util-checkpoint.py │ │ ├── predict-checkpoint.py │ │ └── train_mrcnn-checkpoint.py │ ├── adriving_util.py │ ├── mrcnn │ │ ├── .ipynb_checkpoints │ │ │ └── config-checkpoint.py │ │ ├── __init__.py │ │ ├── config.py │ │ ├── model.py │ │ ├── model_inceptionresnet.py │ │ ├── parallel_model.py │ │ ├── utils.py │ │ └── visualize.py │ ├── predict.py │ └── train_mrcnn.py ├── preprocess │ ├── .ipynb_checkpoints │ │ └── keep_instance_larger_than_threshod-checkpoint.py │ ├── keep_instance_larger_than_threshod.py │ ├── train_imageid.txt │ ├── train_imageid_ninstance.txt │ ├── val_imageid.txt │ └── val_imageid_ninstance.txt └── pytorch-mask-rcnn │ ├── .gitignore │ ├── .ipynb_checkpoints │ ├── predict_resnet-checkpoint.py │ ├── predict_resnet_v2-checkpoint.py │ ├── predict_seresnext-checkpoint.py │ ├── train_resnet-checkpoint.py │ ├── train_resnet_v2-checkpoint.py │ ├── train_resnext101-checkpoint.py │ └── train_seresnext-checkpoint.py │ ├── adriving.py │ ├── adriving_util.py │ ├── config.py │ ├── convert_from_keras.py │ ├── loss.py │ ├── model.py │ ├── model_resnet_v2.py │ ├── model_resnext.py │ ├── model_resnext_v2.py │ ├── model_seresnext.py │ ├── nms │ ├── __init__.py │ ├── build.py │ ├── nms_wrapper.py │ ├── pth_nms.py │ └── src │ │ ├── cuda │ │ ├── nms_kernel.cu │ │ └── nms_kernel.h │ │ ├── nms.c │ │ ├── nms.h │ │ ├── nms_cuda.c │ │ └── nms_cuda.h │ ├── predict_resnet.py │ ├── predict_resnet_v2.py │ ├── predict_seresnext.py │ ├── prediction_rle_mp.py │ ├── resnext101_32x4d_features.py │ ├── roialign │ ├── __init__.py │ └── roi_align │ │ ├── __init__.py │ │ ├── build.py │ │ ├── crop_and_resize.py │ │ ├── roi_align.py │ │ └── src │ │ ├── crop_and_resize.c │ │ ├── crop_and_resize.h │ │ ├── crop_and_resize_gpu.c │ │ ├── crop_and_resize_gpu.h │ │ └── cuda │ │ ├── crop_and_resize_kernel.cu │ │ └── crop_and_resize_kernel.h │ ├── train_resnet.py │ ├── train_resnet_v2.py │ ├── train_resnext101.py │ ├── train_seresnext.py │ ├── utils.py │ └── visualize.py └── submissions └── .gitignore /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/LICENSE -------------------------------------------------------------------------------- /Solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/Solution.md -------------------------------------------------------------------------------- /Solution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/Solution.pdf -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/data/.gitignore -------------------------------------------------------------------------------- /directory_structure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/directory_structure.txt -------------------------------------------------------------------------------- /logs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/logs/.gitignore -------------------------------------------------------------------------------- /models/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/models/.gitignore -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/requirements.txt -------------------------------------------------------------------------------- /settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/settings.json -------------------------------------------------------------------------------- /source/ensemble/.ipynb_checkpoints/prediction_ensemble-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/ensemble/.ipynb_checkpoints/prediction_ensemble-checkpoint.py -------------------------------------------------------------------------------- /source/ensemble/prediction_ensemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/ensemble/prediction_ensemble.py -------------------------------------------------------------------------------- /source/ensemble/unionfind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/ensemble/unionfind.py -------------------------------------------------------------------------------- /source/mask_rcnn/.ipynb_checkpoints/adriving_util-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/mask_rcnn/.ipynb_checkpoints/adriving_util-checkpoint.py -------------------------------------------------------------------------------- /source/mask_rcnn/.ipynb_checkpoints/predict-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/mask_rcnn/.ipynb_checkpoints/predict-checkpoint.py -------------------------------------------------------------------------------- /source/mask_rcnn/.ipynb_checkpoints/train_mrcnn-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/mask_rcnn/.ipynb_checkpoints/train_mrcnn-checkpoint.py -------------------------------------------------------------------------------- /source/mask_rcnn/adriving_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/mask_rcnn/adriving_util.py -------------------------------------------------------------------------------- /source/mask_rcnn/mrcnn/.ipynb_checkpoints/config-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/mask_rcnn/mrcnn/.ipynb_checkpoints/config-checkpoint.py -------------------------------------------------------------------------------- /source/mask_rcnn/mrcnn/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/mask_rcnn/mrcnn/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/mask_rcnn/mrcnn/config.py -------------------------------------------------------------------------------- /source/mask_rcnn/mrcnn/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/mask_rcnn/mrcnn/model.py -------------------------------------------------------------------------------- /source/mask_rcnn/mrcnn/model_inceptionresnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/mask_rcnn/mrcnn/model_inceptionresnet.py -------------------------------------------------------------------------------- /source/mask_rcnn/mrcnn/parallel_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/mask_rcnn/mrcnn/parallel_model.py -------------------------------------------------------------------------------- /source/mask_rcnn/mrcnn/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/mask_rcnn/mrcnn/utils.py -------------------------------------------------------------------------------- /source/mask_rcnn/mrcnn/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/mask_rcnn/mrcnn/visualize.py -------------------------------------------------------------------------------- /source/mask_rcnn/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/mask_rcnn/predict.py -------------------------------------------------------------------------------- /source/mask_rcnn/train_mrcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/mask_rcnn/train_mrcnn.py -------------------------------------------------------------------------------- /source/preprocess/.ipynb_checkpoints/keep_instance_larger_than_threshod-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/preprocess/.ipynb_checkpoints/keep_instance_larger_than_threshod-checkpoint.py -------------------------------------------------------------------------------- /source/preprocess/keep_instance_larger_than_threshod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/preprocess/keep_instance_larger_than_threshod.py -------------------------------------------------------------------------------- /source/preprocess/train_imageid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/preprocess/train_imageid.txt -------------------------------------------------------------------------------- /source/preprocess/train_imageid_ninstance.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/preprocess/train_imageid_ninstance.txt -------------------------------------------------------------------------------- /source/preprocess/val_imageid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/preprocess/val_imageid.txt -------------------------------------------------------------------------------- /source/preprocess/val_imageid_ninstance.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/preprocess/val_imageid_ninstance.txt -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/.gitignore -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/.ipynb_checkpoints/predict_resnet-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/.ipynb_checkpoints/predict_resnet-checkpoint.py -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/.ipynb_checkpoints/predict_resnet_v2-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/.ipynb_checkpoints/predict_resnet_v2-checkpoint.py -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/.ipynb_checkpoints/predict_seresnext-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/.ipynb_checkpoints/predict_seresnext-checkpoint.py -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/.ipynb_checkpoints/train_resnet-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/.ipynb_checkpoints/train_resnet-checkpoint.py -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/.ipynb_checkpoints/train_resnet_v2-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/.ipynb_checkpoints/train_resnet_v2-checkpoint.py -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/.ipynb_checkpoints/train_resnext101-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/.ipynb_checkpoints/train_resnext101-checkpoint.py -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/.ipynb_checkpoints/train_seresnext-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/.ipynb_checkpoints/train_seresnext-checkpoint.py -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/adriving.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/adriving.py -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/adriving_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/adriving_util.py -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/config.py -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/convert_from_keras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/convert_from_keras.py -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/loss.py -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/model.py -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/model_resnet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/model_resnet_v2.py -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/model_resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/model_resnext.py -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/model_resnext_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/model_resnext_v2.py -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/model_seresnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/model_seresnext.py -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/nms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/nms/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/nms/build.py -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/nms/nms_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/nms/nms_wrapper.py -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/nms/pth_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/nms/pth_nms.py -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/nms/src/cuda/nms_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/nms/src/cuda/nms_kernel.cu -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/nms/src/cuda/nms_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/nms/src/cuda/nms_kernel.h -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/nms/src/nms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/nms/src/nms.c -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/nms/src/nms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/nms/src/nms.h -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/nms/src/nms_cuda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/nms/src/nms_cuda.c -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/nms/src/nms_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/nms/src/nms_cuda.h -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/predict_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/predict_resnet.py -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/predict_resnet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/predict_resnet_v2.py -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/predict_seresnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/predict_seresnext.py -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/prediction_rle_mp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/prediction_rle_mp.py -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/resnext101_32x4d_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/resnext101_32x4d_features.py -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/roialign/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/roialign/roi_align/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/roialign/roi_align/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/roialign/roi_align/build.py -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/roialign/roi_align/crop_and_resize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/roialign/roi_align/crop_and_resize.py -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/roialign/roi_align/roi_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/roialign/roi_align/roi_align.py -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/roialign/roi_align/src/crop_and_resize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/roialign/roi_align/src/crop_and_resize.c -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/roialign/roi_align/src/crop_and_resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/roialign/roi_align/src/crop_and_resize.h -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/roialign/roi_align/src/crop_and_resize_gpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/roialign/roi_align/src/crop_and_resize_gpu.c -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/roialign/roi_align/src/crop_and_resize_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/roialign/roi_align/src/crop_and_resize_gpu.h -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/roialign/roi_align/src/cuda/crop_and_resize_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/roialign/roi_align/src/cuda/crop_and_resize_kernel.cu -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/roialign/roi_align/src/cuda/crop_and_resize_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/roialign/roi_align/src/cuda/crop_and_resize_kernel.h -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/train_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/train_resnet.py -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/train_resnet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/train_resnet_v2.py -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/train_resnext101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/train_resnext101.py -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/train_seresnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/train_seresnext.py -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/utils.py -------------------------------------------------------------------------------- /source/pytorch-mask-rcnn/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/source/pytorch-mask-rcnn/visualize.py -------------------------------------------------------------------------------- /submissions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwoody827/cvpr-2018-autonomous-driving-autopilot-solution/HEAD/submissions/.gitignore --------------------------------------------------------------------------------