1212
Machine-Learning-with-Python/README.md at master · Asad-Raza/Machine-Learning-with-Python · GitHub
Skip to content

Latest commit

 

History

History
78 lines (53 loc) · 5.3 KB

File metadata and controls

78 lines (53 loc) · 5.3 KB

Python Machine Learning Notebooks (Tutorial style)


Dr. Tirthajyoti Sarkar, Fremont, CA (Please feel free to add me on LinkedIn here)


Essential codes/demo IPython notebooks for jump-starting machine learning/data science.

You can start with this article that I wrote in Heartbeat magazine (on Medium platform):

Essential tutorial-type notebooks on Pandas and Numpy

Jupyter notebooks covering a wide range of functions and operations on the topics of NumPy, Pandans, Seaborn, matplotlib etc.

Tutorial-type notebooks covering regression, classification, clustering, dimensionality reduction, and some basic neural network algorithms

Regression

  • Simple linear regression with t-statistic generation


Classification

  • Logistic regression/classification

  • Naive Bayes classification

Clustering

  • K-means clustering
  • Affinity propagation (showing its time complexity and the effect of damping factor)
  • Mean-shift technique (showing its time complexity and the effect of noise on cluster discovery)
  • DBSCAN (showing how it can generically detect areas of high density irrespective of cluster shapes, which the k-means fails to do)
  • Hierarchical clustering with Dendograms showing how to choose optimal number of clusters


Dimensionality reduction

  • Principal component analysis


Deep Learning/Neural Network


Random data generation using symbolic expressions