├── .idea ├── inspectionProfiles │ └── Project_Default.xml └── vcs.xml ├── CascadeLDA.py ├── HSLDA.py ├── LabeledLDA.py ├── LocalLDA.py ├── README.md ├── abstracts_data.csv ├── evaluate_CascadeLDA.py ├── evaluate_LabeledLDA.py ├── requirements.txt └── thesis_kenhbs.pdf /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenHBS/LDA_thesis/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenHBS/LDA_thesis/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /CascadeLDA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenHBS/LDA_thesis/HEAD/CascadeLDA.py -------------------------------------------------------------------------------- /HSLDA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenHBS/LDA_thesis/HEAD/HSLDA.py -------------------------------------------------------------------------------- /LabeledLDA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenHBS/LDA_thesis/HEAD/LabeledLDA.py -------------------------------------------------------------------------------- /LocalLDA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenHBS/LDA_thesis/HEAD/LocalLDA.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenHBS/LDA_thesis/HEAD/README.md -------------------------------------------------------------------------------- /abstracts_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenHBS/LDA_thesis/HEAD/abstracts_data.csv -------------------------------------------------------------------------------- /evaluate_CascadeLDA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenHBS/LDA_thesis/HEAD/evaluate_CascadeLDA.py -------------------------------------------------------------------------------- /evaluate_LabeledLDA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenHBS/LDA_thesis/HEAD/evaluate_LabeledLDA.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenHBS/LDA_thesis/HEAD/requirements.txt -------------------------------------------------------------------------------- /thesis_kenhbs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenHBS/LDA_thesis/HEAD/thesis_kenhbs.pdf --------------------------------------------------------------------------------