A web app that uses a LSTM Recurrent Neural Net to generate text based on user inputted training data.
Before following these steps you will need to open three separate terminal windows.
- Start celery worker by running in the first terminal window:
celery -A mimicrnn.app.celery worker
- Start redis server (assuming that you've added redis to PATH) in the second terminal window:
redis-server
- Set the flask app, in cmd:
set FLASK_APP=mimicrnn
OR in powershell:setx FLASK_APP mimicrnn
- Run the flask app in the third terminal window:
flask run
- Navigate to http://localhost:5000/ in your browser