Front-end for medical image classifier Machine Learning model (CNN)
To run your Flask app, execute the following command in your terminal:
python app.py
By default, Flask will start a development server on http://127.0.0.1:5000/
. You can access your app by navigating to this URL in your web browser.
For production environments, it's recommended to use a WSGI HTTP server like Gunicorn or uWSGI, which will handle requests more efficiently than the development server. To run your Flask app with Gunicorn, use:
gunicorn app:app --bind 0.0.0.0:$PORT