├── .gitignore ├── LICENSE ├── README.md ├── app ├── api │ ├── Server_Backend_Xception.py │ ├── __init__.py │ ├── classes.txt │ ├── dbupload │ │ └── dataset.zip │ ├── model_source │ │ └── xxx.h5 │ ├── templates │ │ └── upload.html │ └── upload │ │ └── 2.jpg └── frontend_demo │ ├── Frontend_GUI.py │ └── frontend_test.py └── 封面.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kay-cottage/Flask_Keras_Xception_API/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kay-cottage/Flask_Keras_Xception_API/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kay-cottage/Flask_Keras_Xception_API/HEAD/README.md -------------------------------------------------------------------------------- /app/api/Server_Backend_Xception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kay-cottage/Flask_Keras_Xception_API/HEAD/app/api/Server_Backend_Xception.py -------------------------------------------------------------------------------- /app/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kay-cottage/Flask_Keras_Xception_API/HEAD/app/api/__init__.py -------------------------------------------------------------------------------- /app/api/classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kay-cottage/Flask_Keras_Xception_API/HEAD/app/api/classes.txt -------------------------------------------------------------------------------- /app/api/dbupload/dataset.zip: -------------------------------------------------------------------------------- 1 | 数据集压缩包(dataset.zip/.rar) 2 | -------------------------------------------------------------------------------- /app/api/model_source/xxx.h5: -------------------------------------------------------------------------------- 1 | model download:链接:https://pan.baidu.com/s/1hdLoYS51IqcdVhB01w2yDw 提取码:X1z9 2 | -------------------------------------------------------------------------------- /app/api/templates/upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kay-cottage/Flask_Keras_Xception_API/HEAD/app/api/templates/upload.html -------------------------------------------------------------------------------- /app/api/upload/2.jpg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/frontend_demo/Frontend_GUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kay-cottage/Flask_Keras_Xception_API/HEAD/app/frontend_demo/Frontend_GUI.py -------------------------------------------------------------------------------- /app/frontend_demo/frontend_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kay-cottage/Flask_Keras_Xception_API/HEAD/app/frontend_demo/frontend_test.py -------------------------------------------------------------------------------- /封面.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kay-cottage/Flask_Keras_Xception_API/HEAD/封面.png --------------------------------------------------------------------------------