Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 800 Bytes

File metadata and controls

9 lines (8 loc) · 800 Bytes

projects

Experimentation

  1. Experimenting with topic modelling: Gibbs sampler for Latent Dirichlet Allocation model using Numpy. Mainly used on the KOS blog data set (including the vocabulary file), which can be downloaded from https://archive.ics.uci.edu/ml/datasets/bag+of+words
  2. Traditional MLP from scratch: implemented only one hidden layer
  3. Experimenting with scikit-learn tools: Basic sentiment analysis using the IMDB data set (http://ai.stanford.edu/~amaas/data/sentiment/)
  4. Coding K-means, Gaussian Mixture model and Hidden Markov Models. Solving them through Expectation Maximization
  5. Reinforcement Learning exploration (RL folder)
  6. TSP: Using Reinforcement Learning to solve the Travelling Salesman Problem. Use of REINFORCE algorithm on an NP classic combinatorial problem.