├── .gitignore ├── Evaluation ├── WordTrends.py ├── getFinalPerplexities.py ├── getWordVariation.py └── lookupWords.py ├── README.md ├── SCVB0 └── scvb0.cpp ├── SCVB0_Evaluation └── scvb.cpp ├── Scrapper ├── __init__.py ├── article.py ├── getarticle.py ├── ldac2uci.py ├── multitext2ldac.py ├── removeInfrequentWords.py ├── stopwords └── text2ldac.py ├── TopicChains ├── GenerateChains.cpp ├── GetData.cpp └── TopicChains.cpp └── makefile /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VaradPathak/DynamicLDA/HEAD/.gitignore -------------------------------------------------------------------------------- /Evaluation/WordTrends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VaradPathak/DynamicLDA/HEAD/Evaluation/WordTrends.py -------------------------------------------------------------------------------- /Evaluation/getFinalPerplexities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VaradPathak/DynamicLDA/HEAD/Evaluation/getFinalPerplexities.py -------------------------------------------------------------------------------- /Evaluation/getWordVariation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VaradPathak/DynamicLDA/HEAD/Evaluation/getWordVariation.py -------------------------------------------------------------------------------- /Evaluation/lookupWords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VaradPathak/DynamicLDA/HEAD/Evaluation/lookupWords.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VaradPathak/DynamicLDA/HEAD/README.md -------------------------------------------------------------------------------- /SCVB0/scvb0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VaradPathak/DynamicLDA/HEAD/SCVB0/scvb0.cpp -------------------------------------------------------------------------------- /SCVB0_Evaluation/scvb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VaradPathak/DynamicLDA/HEAD/SCVB0_Evaluation/scvb.cpp -------------------------------------------------------------------------------- /Scrapper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VaradPathak/DynamicLDA/HEAD/Scrapper/__init__.py -------------------------------------------------------------------------------- /Scrapper/article.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VaradPathak/DynamicLDA/HEAD/Scrapper/article.py -------------------------------------------------------------------------------- /Scrapper/getarticle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VaradPathak/DynamicLDA/HEAD/Scrapper/getarticle.py -------------------------------------------------------------------------------- /Scrapper/ldac2uci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VaradPathak/DynamicLDA/HEAD/Scrapper/ldac2uci.py -------------------------------------------------------------------------------- /Scrapper/multitext2ldac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VaradPathak/DynamicLDA/HEAD/Scrapper/multitext2ldac.py -------------------------------------------------------------------------------- /Scrapper/removeInfrequentWords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VaradPathak/DynamicLDA/HEAD/Scrapper/removeInfrequentWords.py -------------------------------------------------------------------------------- /Scrapper/stopwords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VaradPathak/DynamicLDA/HEAD/Scrapper/stopwords -------------------------------------------------------------------------------- /Scrapper/text2ldac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VaradPathak/DynamicLDA/HEAD/Scrapper/text2ldac.py -------------------------------------------------------------------------------- /TopicChains/GenerateChains.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VaradPathak/DynamicLDA/HEAD/TopicChains/GenerateChains.cpp -------------------------------------------------------------------------------- /TopicChains/GetData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VaradPathak/DynamicLDA/HEAD/TopicChains/GetData.cpp -------------------------------------------------------------------------------- /TopicChains/TopicChains.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VaradPathak/DynamicLDA/HEAD/TopicChains/TopicChains.cpp -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VaradPathak/DynamicLDA/HEAD/makefile --------------------------------------------------------------------------------