├── .gitignore ├── README.md ├── blogs └── README.md └── notebooks ├── Installation.ipynb ├── README.md ├── RetinaCoCo.ipynb ├── RetinaCoco2.ipynb ├── Using-CAM-for-CNN-Visualization.ipynb ├── Using-Forward-Hook-To-Save-Features.ipynb ├── Using-Grad-CAM-for-CNN-Visualization.ipynb ├── Using-Pretrained-Pytorch-Models.ipynb ├── Using-Sampler-For-Class-Imbalance.ipynb ├── Using_AllenNLP.ipynb ├── Visdom-With-FastAI.ipynb ├── backhook.ipynb ├── lib ├── __init__.py ├── build.sh └── nms │ ├── __init__.py │ ├── _ext │ ├── __init__.py │ └── nms │ │ ├── __init__.py │ │ └── _nms.so │ ├── build.py │ ├── pth_nms.py │ └── src │ ├── cuda │ ├── nms_kernel.cu │ ├── nms_kernel.cu.o │ └── nms_kernel.h │ ├── nms.c │ ├── nms.h │ ├── nms_cuda.c │ └── nms_cuda.h ├── retina_coco_train.py ├── retinacoco_files ├── __pycache__ │ └── utils.cpython-36.pyc └── utils.py └── util_func.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.ipynb_checkpoints/ 2 | data/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/FAI-notes/HEAD/README.md -------------------------------------------------------------------------------- /blogs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/FAI-notes/HEAD/blogs/README.md -------------------------------------------------------------------------------- /notebooks/Installation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/FAI-notes/HEAD/notebooks/Installation.ipynb -------------------------------------------------------------------------------- /notebooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/FAI-notes/HEAD/notebooks/README.md -------------------------------------------------------------------------------- /notebooks/RetinaCoCo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/FAI-notes/HEAD/notebooks/RetinaCoCo.ipynb -------------------------------------------------------------------------------- /notebooks/RetinaCoco2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/FAI-notes/HEAD/notebooks/RetinaCoco2.ipynb -------------------------------------------------------------------------------- /notebooks/Using-CAM-for-CNN-Visualization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/FAI-notes/HEAD/notebooks/Using-CAM-for-CNN-Visualization.ipynb -------------------------------------------------------------------------------- /notebooks/Using-Forward-Hook-To-Save-Features.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/FAI-notes/HEAD/notebooks/Using-Forward-Hook-To-Save-Features.ipynb -------------------------------------------------------------------------------- /notebooks/Using-Grad-CAM-for-CNN-Visualization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/FAI-notes/HEAD/notebooks/Using-Grad-CAM-for-CNN-Visualization.ipynb -------------------------------------------------------------------------------- /notebooks/Using-Pretrained-Pytorch-Models.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/FAI-notes/HEAD/notebooks/Using-Pretrained-Pytorch-Models.ipynb -------------------------------------------------------------------------------- /notebooks/Using-Sampler-For-Class-Imbalance.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/FAI-notes/HEAD/notebooks/Using-Sampler-For-Class-Imbalance.ipynb -------------------------------------------------------------------------------- /notebooks/Using_AllenNLP.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/FAI-notes/HEAD/notebooks/Using_AllenNLP.ipynb -------------------------------------------------------------------------------- /notebooks/Visdom-With-FastAI.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/FAI-notes/HEAD/notebooks/Visdom-With-FastAI.ipynb -------------------------------------------------------------------------------- /notebooks/backhook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/FAI-notes/HEAD/notebooks/backhook.ipynb -------------------------------------------------------------------------------- /notebooks/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebooks/lib/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/FAI-notes/HEAD/notebooks/lib/build.sh -------------------------------------------------------------------------------- /notebooks/lib/nms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebooks/lib/nms/_ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebooks/lib/nms/_ext/nms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/FAI-notes/HEAD/notebooks/lib/nms/_ext/nms/__init__.py -------------------------------------------------------------------------------- /notebooks/lib/nms/_ext/nms/_nms.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/FAI-notes/HEAD/notebooks/lib/nms/_ext/nms/_nms.so -------------------------------------------------------------------------------- /notebooks/lib/nms/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/FAI-notes/HEAD/notebooks/lib/nms/build.py -------------------------------------------------------------------------------- /notebooks/lib/nms/pth_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/FAI-notes/HEAD/notebooks/lib/nms/pth_nms.py -------------------------------------------------------------------------------- /notebooks/lib/nms/src/cuda/nms_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/FAI-notes/HEAD/notebooks/lib/nms/src/cuda/nms_kernel.cu -------------------------------------------------------------------------------- /notebooks/lib/nms/src/cuda/nms_kernel.cu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/FAI-notes/HEAD/notebooks/lib/nms/src/cuda/nms_kernel.cu.o -------------------------------------------------------------------------------- /notebooks/lib/nms/src/cuda/nms_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/FAI-notes/HEAD/notebooks/lib/nms/src/cuda/nms_kernel.h -------------------------------------------------------------------------------- /notebooks/lib/nms/src/nms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/FAI-notes/HEAD/notebooks/lib/nms/src/nms.c -------------------------------------------------------------------------------- /notebooks/lib/nms/src/nms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/FAI-notes/HEAD/notebooks/lib/nms/src/nms.h -------------------------------------------------------------------------------- /notebooks/lib/nms/src/nms_cuda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/FAI-notes/HEAD/notebooks/lib/nms/src/nms_cuda.c -------------------------------------------------------------------------------- /notebooks/lib/nms/src/nms_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/FAI-notes/HEAD/notebooks/lib/nms/src/nms_cuda.h -------------------------------------------------------------------------------- /notebooks/retina_coco_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/FAI-notes/HEAD/notebooks/retina_coco_train.py -------------------------------------------------------------------------------- /notebooks/retinacoco_files/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/FAI-notes/HEAD/notebooks/retinacoco_files/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /notebooks/retinacoco_files/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/FAI-notes/HEAD/notebooks/retinacoco_files/utils.py -------------------------------------------------------------------------------- /notebooks/util_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheShadow29/FAI-notes/HEAD/notebooks/util_func.py --------------------------------------------------------------------------------