ramnath-k / machine_learning

Planning to document basic concepts in ML

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Basic concepts in Machine Learning

  1. Supervised Learning
  2. Learning from labeled examples - e.g. sentiment prediction - given sentences labeled as positive or negative train a model which classifies a new sentence
  3. Regression - model outputs a continuous valued output - say predicting price of a house given past data 1. Linear models 1. SVMs 1. Neural nets
  4. Classification - model assigns class labels to inputs - e.g. given an image say whether it is an apple or an orange. 1. Logistic regression 1. SVM 1. Neural nets 1. Decision trees 1. Random forests
  5. Unsupervised learning
  6. Learning from unlabeled data - e.g. say we have 3 sizes of shoes - and we want to find the optimal sizes so that most of the users fall into one of these buckets. One way is to run a clustering algorithm that identifies 3 clusters with the property that the points within a cluster are as close as possible and points in different clusters are as far as possible.
  7. Clustering 1. K-means
  8. Dimensionality reduction 1. Principal component analysis
  9. Reinforcement learning
  10. e.g. a program which learns to play checkers by playing many games against itself or other opponents

Programming Language - Libraries

  1. Python - Scikit-learn (open source), Tensorflow (supported by Google)
  2. Java/Scala - Spark ML lib
  3. Lua - Torch (supported by Facebook)
  4. MXNet (supported by Amazon, part of Apache incubator)

About

Planning to document basic concepts in ML