├── Dockerfile ├── LICENSE ├── README.md ├── baseline ├── .gitignore ├── LICENSE ├── README.md ├── code │ ├── data_ml_functions │ │ ├── DenseNet │ │ │ ├── .idea │ │ │ │ ├── DenseNet.iml │ │ │ │ ├── encodings.xml │ │ │ │ ├── inspectionProfiles │ │ │ │ │ ├── Project_Default.xml │ │ │ │ │ └── profiles_settings.xml │ │ │ │ ├── markdown-navigator.xml │ │ │ │ ├── markdown-navigator │ │ │ │ │ └── profiles_settings.xml │ │ │ │ ├── misc.xml │ │ │ │ ├── modules.xml │ │ │ │ └── vcs.xml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cifar10.py │ │ │ ├── cifar100.py │ │ │ ├── densenet.py │ │ │ ├── densenet_fast.py │ │ │ ├── imagenet_inference.py │ │ │ ├── images │ │ │ │ ├── accuracy_densenet.JPG │ │ │ │ ├── cheetah.jpg │ │ │ │ ├── dense_net.JPG │ │ │ │ └── elephant.jpg │ │ │ ├── subpixel.py │ │ │ ├── tensorflow_backend.py │ │ │ ├── theano_backend.py │ │ │ └── weights │ │ │ │ ├── weight_translation_121.py │ │ │ │ ├── weight_translation_161.py │ │ │ │ └── weight_translation_169.py │ │ ├── __init__.py │ │ ├── dataFunctions.py │ │ ├── mlFunctions.py │ │ └── multi_gpu.py │ ├── fmowBaseline.py │ ├── params.py │ └── runBaseline.py └── requirements.txt ├── code ├── _common.sh ├── fmow_helper.py ├── pytorch_dpn │ ├── LICENSE │ ├── README.md │ ├── adaptive_avgmax_pool.py │ ├── convert_from_mxnet.py │ ├── dataset.py │ ├── dpn.py │ ├── inference.py │ ├── model_factory.py │ └── validate.py ├── pytorch_utils.py ├── run_baseline.sh ├── step1_parse_json.py ├── step2_add_boxes.py ├── step3_build_crops.py ├── step4_train.py ├── step5_test.py └── step6_ensemble.py ├── models ├── model01.json ├── model02.json ├── model03.json ├── model04.json ├── model05.json ├── model06.json ├── model07.json ├── model08.json ├── model09.json ├── model10.json ├── model11.json └── model12.json ├── test.sh └── train.sh /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/README.md -------------------------------------------------------------------------------- /baseline/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/baseline/.gitignore -------------------------------------------------------------------------------- /baseline/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/baseline/LICENSE -------------------------------------------------------------------------------- /baseline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/baseline/README.md -------------------------------------------------------------------------------- /baseline/code/data_ml_functions/DenseNet/.idea/DenseNet.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/baseline/code/data_ml_functions/DenseNet/.idea/DenseNet.iml -------------------------------------------------------------------------------- /baseline/code/data_ml_functions/DenseNet/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/baseline/code/data_ml_functions/DenseNet/.idea/encodings.xml -------------------------------------------------------------------------------- /baseline/code/data_ml_functions/DenseNet/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/baseline/code/data_ml_functions/DenseNet/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /baseline/code/data_ml_functions/DenseNet/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/baseline/code/data_ml_functions/DenseNet/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /baseline/code/data_ml_functions/DenseNet/.idea/markdown-navigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/baseline/code/data_ml_functions/DenseNet/.idea/markdown-navigator.xml -------------------------------------------------------------------------------- /baseline/code/data_ml_functions/DenseNet/.idea/markdown-navigator/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/baseline/code/data_ml_functions/DenseNet/.idea/markdown-navigator/profiles_settings.xml -------------------------------------------------------------------------------- /baseline/code/data_ml_functions/DenseNet/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/baseline/code/data_ml_functions/DenseNet/.idea/misc.xml -------------------------------------------------------------------------------- /baseline/code/data_ml_functions/DenseNet/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/baseline/code/data_ml_functions/DenseNet/.idea/modules.xml -------------------------------------------------------------------------------- /baseline/code/data_ml_functions/DenseNet/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/baseline/code/data_ml_functions/DenseNet/.idea/vcs.xml -------------------------------------------------------------------------------- /baseline/code/data_ml_functions/DenseNet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/baseline/code/data_ml_functions/DenseNet/LICENSE -------------------------------------------------------------------------------- /baseline/code/data_ml_functions/DenseNet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/baseline/code/data_ml_functions/DenseNet/README.md -------------------------------------------------------------------------------- /baseline/code/data_ml_functions/DenseNet/cifar10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/baseline/code/data_ml_functions/DenseNet/cifar10.py -------------------------------------------------------------------------------- /baseline/code/data_ml_functions/DenseNet/cifar100.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/baseline/code/data_ml_functions/DenseNet/cifar100.py -------------------------------------------------------------------------------- /baseline/code/data_ml_functions/DenseNet/densenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/baseline/code/data_ml_functions/DenseNet/densenet.py -------------------------------------------------------------------------------- /baseline/code/data_ml_functions/DenseNet/densenet_fast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/baseline/code/data_ml_functions/DenseNet/densenet_fast.py -------------------------------------------------------------------------------- /baseline/code/data_ml_functions/DenseNet/imagenet_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/baseline/code/data_ml_functions/DenseNet/imagenet_inference.py -------------------------------------------------------------------------------- /baseline/code/data_ml_functions/DenseNet/images/accuracy_densenet.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/baseline/code/data_ml_functions/DenseNet/images/accuracy_densenet.JPG -------------------------------------------------------------------------------- /baseline/code/data_ml_functions/DenseNet/images/cheetah.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/baseline/code/data_ml_functions/DenseNet/images/cheetah.jpg -------------------------------------------------------------------------------- /baseline/code/data_ml_functions/DenseNet/images/dense_net.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/baseline/code/data_ml_functions/DenseNet/images/dense_net.JPG -------------------------------------------------------------------------------- /baseline/code/data_ml_functions/DenseNet/images/elephant.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/baseline/code/data_ml_functions/DenseNet/images/elephant.jpg -------------------------------------------------------------------------------- /baseline/code/data_ml_functions/DenseNet/subpixel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/baseline/code/data_ml_functions/DenseNet/subpixel.py -------------------------------------------------------------------------------- /baseline/code/data_ml_functions/DenseNet/tensorflow_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/baseline/code/data_ml_functions/DenseNet/tensorflow_backend.py -------------------------------------------------------------------------------- /baseline/code/data_ml_functions/DenseNet/theano_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/baseline/code/data_ml_functions/DenseNet/theano_backend.py -------------------------------------------------------------------------------- /baseline/code/data_ml_functions/DenseNet/weights/weight_translation_121.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/baseline/code/data_ml_functions/DenseNet/weights/weight_translation_121.py -------------------------------------------------------------------------------- /baseline/code/data_ml_functions/DenseNet/weights/weight_translation_161.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/baseline/code/data_ml_functions/DenseNet/weights/weight_translation_161.py -------------------------------------------------------------------------------- /baseline/code/data_ml_functions/DenseNet/weights/weight_translation_169.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/baseline/code/data_ml_functions/DenseNet/weights/weight_translation_169.py -------------------------------------------------------------------------------- /baseline/code/data_ml_functions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /baseline/code/data_ml_functions/dataFunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/baseline/code/data_ml_functions/dataFunctions.py -------------------------------------------------------------------------------- /baseline/code/data_ml_functions/mlFunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/baseline/code/data_ml_functions/mlFunctions.py -------------------------------------------------------------------------------- /baseline/code/data_ml_functions/multi_gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/baseline/code/data_ml_functions/multi_gpu.py -------------------------------------------------------------------------------- /baseline/code/fmowBaseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/baseline/code/fmowBaseline.py -------------------------------------------------------------------------------- /baseline/code/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/baseline/code/params.py -------------------------------------------------------------------------------- /baseline/code/runBaseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/baseline/code/runBaseline.py -------------------------------------------------------------------------------- /baseline/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/baseline/requirements.txt -------------------------------------------------------------------------------- /code/_common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/code/_common.sh -------------------------------------------------------------------------------- /code/fmow_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/code/fmow_helper.py -------------------------------------------------------------------------------- /code/pytorch_dpn/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/code/pytorch_dpn/LICENSE -------------------------------------------------------------------------------- /code/pytorch_dpn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/code/pytorch_dpn/README.md -------------------------------------------------------------------------------- /code/pytorch_dpn/adaptive_avgmax_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/code/pytorch_dpn/adaptive_avgmax_pool.py -------------------------------------------------------------------------------- /code/pytorch_dpn/convert_from_mxnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/code/pytorch_dpn/convert_from_mxnet.py -------------------------------------------------------------------------------- /code/pytorch_dpn/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/code/pytorch_dpn/dataset.py -------------------------------------------------------------------------------- /code/pytorch_dpn/dpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/code/pytorch_dpn/dpn.py -------------------------------------------------------------------------------- /code/pytorch_dpn/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/code/pytorch_dpn/inference.py -------------------------------------------------------------------------------- /code/pytorch_dpn/model_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/code/pytorch_dpn/model_factory.py -------------------------------------------------------------------------------- /code/pytorch_dpn/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/code/pytorch_dpn/validate.py -------------------------------------------------------------------------------- /code/pytorch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/code/pytorch_utils.py -------------------------------------------------------------------------------- /code/run_baseline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/code/run_baseline.sh -------------------------------------------------------------------------------- /code/step1_parse_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/code/step1_parse_json.py -------------------------------------------------------------------------------- /code/step2_add_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/code/step2_add_boxes.py -------------------------------------------------------------------------------- /code/step3_build_crops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/code/step3_build_crops.py -------------------------------------------------------------------------------- /code/step4_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/code/step4_train.py -------------------------------------------------------------------------------- /code/step5_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/code/step5_test.py -------------------------------------------------------------------------------- /code/step6_ensemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/code/step6_ensemble.py -------------------------------------------------------------------------------- /models/model01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/models/model01.json -------------------------------------------------------------------------------- /models/model02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/models/model02.json -------------------------------------------------------------------------------- /models/model03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/models/model03.json -------------------------------------------------------------------------------- /models/model04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/models/model04.json -------------------------------------------------------------------------------- /models/model05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/models/model05.json -------------------------------------------------------------------------------- /models/model06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/models/model06.json -------------------------------------------------------------------------------- /models/model07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/models/model07.json -------------------------------------------------------------------------------- /models/model08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/models/model08.json -------------------------------------------------------------------------------- /models/model09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/models/model09.json -------------------------------------------------------------------------------- /models/model10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/models/model10.json -------------------------------------------------------------------------------- /models/model11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/models/model11.json -------------------------------------------------------------------------------- /models/model12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/models/model12.json -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/test.sh -------------------------------------------------------------------------------- /train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fMoW/first_place_solution/HEAD/train.sh --------------------------------------------------------------------------------