Own environment
October 14, 2019 ยท View on GitHub
Streamlit demonstration project. You can run it on cloud (tested on Google Cloud CE) or locally.
Own environment
- Install dependencies
pip install -r requirements.txt - Download word embeddings
chmod +x download_glove.sh ./download_glove.sh - Run the app
streamlit run run_app.py
Docker
- Download word embeddings locally
chmod +x download_glove.sh ./download_glove.sh - Build image
docker build -t glove_streamlit . - Run docker container
docker run -p 8501:8501 -v ${PWD}:/opt/app glove_streamlit