Topic Modelling is essentially a method to find the topics from a document. These topics are set of words which best describe the document. It helps us to understand and organize large amount of information. In the era of exponentially increasing data, it is very difficult to understand and summarize the large collections of unstructured textual documents. Topic Modelling not only helps to understand the semantics of documents, it also helps to annotate them. It helps to recover hidden and recurring patterns in texts and can be considered as a text mining tool. There are multiple Topic models like Latent Dirichlet Allocation, TextRank and Probabilistic Latent Semantic Analysis etc. Latent Dirichlet Allocation (LDA) LDA is a statistical model. Intuition behind LDA is that every document contains some topics and every word in the document is attributable to one of the topics. It is different from PLSA in the idea that every document is a mixture of small number of topic...