I am trying to build a neural network model with one hidden layer (1024 nodes). The hidden layer is nothing but a relu unit. I am also processing the input data in batches o
I had the same issue with flask. adding --without-threads flag to flask run or threaded=False to app.run() fixed it
--without-threads
flask run
threaded=False
app.run()