├── LICENSE.txt ├── README.md ├── corextopic ├── __init__.py ├── corextopic.py ├── example │ └── corex_topic_example.ipynb └── vis_topic.py └── setup.py /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregversteeg/corex_topic/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregversteeg/corex_topic/HEAD/README.md -------------------------------------------------------------------------------- /corextopic/__init__.py: -------------------------------------------------------------------------------- 1 | name = "corex_topic" 2 | -------------------------------------------------------------------------------- /corextopic/corextopic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregversteeg/corex_topic/HEAD/corextopic/corextopic.py -------------------------------------------------------------------------------- /corextopic/example/corex_topic_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregversteeg/corex_topic/HEAD/corextopic/example/corex_topic_example.ipynb -------------------------------------------------------------------------------- /corextopic/vis_topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregversteeg/corex_topic/HEAD/corextopic/vis_topic.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregversteeg/corex_topic/HEAD/setup.py --------------------------------------------------------------------------------