Simple GloVe embeddings explorer (powered by Streamlit)
Streamlit demonstration project. You can run it on cloud (tested on Google Cloud CE) or locally.
- 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
- 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