├── .gitignore ├── LICENSE ├── README.md ├── cat_to_name.json ├── download_testset.py ├── flower_classifier.py ├── load_and_test_model.py ├── requirements.txt └── test_model_pytorch_facebook_challenge.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabrielePicco/deep-learning-flower-identifier/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabrielePicco/deep-learning-flower-identifier/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabrielePicco/deep-learning-flower-identifier/HEAD/README.md -------------------------------------------------------------------------------- /cat_to_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabrielePicco/deep-learning-flower-identifier/HEAD/cat_to_name.json -------------------------------------------------------------------------------- /download_testset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabrielePicco/deep-learning-flower-identifier/HEAD/download_testset.py -------------------------------------------------------------------------------- /flower_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabrielePicco/deep-learning-flower-identifier/HEAD/flower_classifier.py -------------------------------------------------------------------------------- /load_and_test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabrielePicco/deep-learning-flower-identifier/HEAD/load_and_test_model.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabrielePicco/deep-learning-flower-identifier/HEAD/requirements.txt -------------------------------------------------------------------------------- /test_model_pytorch_facebook_challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabrielePicco/deep-learning-flower-identifier/HEAD/test_model_pytorch_facebook_challenge.py --------------------------------------------------------------------------------