This repository contains streamlit app that illustrates Top2Vec's hierarchical topic reduction method.
To use or contribute to this repository, first checkout the code. Then create a new virtual environment:
$ git clone https://github.com/hcss-utils/streamlit-topic-reduction.git
$ cd streamlit-topic-reduction
$ python3 -m venv env
$ . env/bin/activate
$ pip install -r requirements.txt
To run the app, use streamlit run
:
$ streamlit run app/main.py
Alternatively, use make
:
$ make env
$ . env/bin/activate
$ make install-dev
$ make app