├── COPYRIGHT.txt ├── README.md ├── compute_openmax.py ├── evt_fitting.py ├── libMR ├── COPYRIGHT_Libmr.txt ├── Makefile ├── MetaRecognition.cpp ├── MetaRecognition.h ├── build_libmr_python.sh ├── compile.sh ├── estimate_wscores.py ├── libmr.c ├── libmr.cpp ├── libmr.pxd ├── libmr.pyx ├── malloc.h ├── setup.py ├── test_libmr.py ├── weibull.c └── weibull.h ├── openmax_utils.py ├── openset_imagenet2010_synsets.txt ├── preprocessing ├── MAV_Compute.py ├── compute_distances.py └── imageNet_Features.py └── synset_words_caffe_ILSVRC12.txt /COPYRIGHT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijitbendale/OSDN/HEAD/COPYRIGHT.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijitbendale/OSDN/HEAD/README.md -------------------------------------------------------------------------------- /compute_openmax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijitbendale/OSDN/HEAD/compute_openmax.py -------------------------------------------------------------------------------- /evt_fitting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijitbendale/OSDN/HEAD/evt_fitting.py -------------------------------------------------------------------------------- /libMR/COPYRIGHT_Libmr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijitbendale/OSDN/HEAD/libMR/COPYRIGHT_Libmr.txt -------------------------------------------------------------------------------- /libMR/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijitbendale/OSDN/HEAD/libMR/Makefile -------------------------------------------------------------------------------- /libMR/MetaRecognition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijitbendale/OSDN/HEAD/libMR/MetaRecognition.cpp -------------------------------------------------------------------------------- /libMR/MetaRecognition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijitbendale/OSDN/HEAD/libMR/MetaRecognition.h -------------------------------------------------------------------------------- /libMR/build_libmr_python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijitbendale/OSDN/HEAD/libMR/build_libmr_python.sh -------------------------------------------------------------------------------- /libMR/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijitbendale/OSDN/HEAD/libMR/compile.sh -------------------------------------------------------------------------------- /libMR/estimate_wscores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijitbendale/OSDN/HEAD/libMR/estimate_wscores.py -------------------------------------------------------------------------------- /libMR/libmr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijitbendale/OSDN/HEAD/libMR/libmr.c -------------------------------------------------------------------------------- /libMR/libmr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijitbendale/OSDN/HEAD/libMR/libmr.cpp -------------------------------------------------------------------------------- /libMR/libmr.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijitbendale/OSDN/HEAD/libMR/libmr.pxd -------------------------------------------------------------------------------- /libMR/libmr.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijitbendale/OSDN/HEAD/libMR/libmr.pyx -------------------------------------------------------------------------------- /libMR/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijitbendale/OSDN/HEAD/libMR/malloc.h -------------------------------------------------------------------------------- /libMR/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijitbendale/OSDN/HEAD/libMR/setup.py -------------------------------------------------------------------------------- /libMR/test_libmr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijitbendale/OSDN/HEAD/libMR/test_libmr.py -------------------------------------------------------------------------------- /libMR/weibull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijitbendale/OSDN/HEAD/libMR/weibull.c -------------------------------------------------------------------------------- /libMR/weibull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijitbendale/OSDN/HEAD/libMR/weibull.h -------------------------------------------------------------------------------- /openmax_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijitbendale/OSDN/HEAD/openmax_utils.py -------------------------------------------------------------------------------- /openset_imagenet2010_synsets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijitbendale/OSDN/HEAD/openset_imagenet2010_synsets.txt -------------------------------------------------------------------------------- /preprocessing/MAV_Compute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijitbendale/OSDN/HEAD/preprocessing/MAV_Compute.py -------------------------------------------------------------------------------- /preprocessing/compute_distances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijitbendale/OSDN/HEAD/preprocessing/compute_distances.py -------------------------------------------------------------------------------- /preprocessing/imageNet_Features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijitbendale/OSDN/HEAD/preprocessing/imageNet_Features.py -------------------------------------------------------------------------------- /synset_words_caffe_ILSVRC12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhijitbendale/OSDN/HEAD/synset_words_caffe_ILSVRC12.txt --------------------------------------------------------------------------------