I've built myself a flask web server, and am deploying it with Gunicorn. It works perfectly well with the default flask app.run(), but this isn't meant for production, so up until now I've had my flask app running on gunicorn.
However, since adding my TensorFlow program to my site, when I go to run a prediction it runs forever, I have timeout set to like 5 minutes. I tested with a print statement before and a print statement after my predict. Second print never shows up.
Any ideas?