Publish Markdown to Medium in 2 Minutes Introduction Markdown is a simple and powerful tools to writing your notes, etc. Even Notion supports exporting as markdown. Why not publish your study note...
Clustering
Deep Learning: Clustering Here is my Deep Learning Full Tutorial! Unsupervised Learning Clustering K-means Kmeans python code import numpy as np m = [ [2,2], [5,1] ] X = [...
Ensemble Methods
Deep Learning: Ensemble Methods Here is my Deep Learning Full Tutorial! Bagging and Boosting Ensemble learning Adaptive Boost Adaboost - Adaptive Boost Training python code i...
Support Vector Machines
Deep Learning: Support Vector Machines Here is my Deep Learning Full Tutorial! Nonlinear SVMs Multi-class SVMs SVM find hyperplane by support ve...
Feature Extraction
Deep Learning: Feature Extraction Here is my Deep Learning Full Tutorial! Principal Components Analysis Traditional PCA python code import numpy as np def pca(dataset, dim): ...
Deep Generative Neural Networks
Deep Learning: Deep Generative Neural Networks Here is my Deep Learning Full Tutorial! Maximum Likelihood Generate image **Generative Adversarial Networks** Ge...
Deep Discriminative Neural Networks
Deep Learning: Deep Discriminative Neural Networks Here is my Deep Learning Full Tutorial! Activation Functions with Non-Vanishing Derivatives Activate Functions Python code # Acti...
Multilayer Perceptrons and Backpropagation
Deep Learning: Multilayer Perceptrons and Backpropagation Here is my Deep Learning Full Tutorial! Feedforward Neural Networks Feedforward Neural Networks Python code # Feedforward Ne...
Neural Networks
Deep Learning: Neural Networks Here is my Deep Learning Full Tutorial! Neural Networks Linear Threshold Unit / Perceptron Linear Threshold Unit Python code # Linear Thre...
Discriminant Functions
Deep Learning: Discriminant Functions Here is my Deep Learning Full Tutorial! Discriminant functions divide feature space into regions Linear Discriminant Functions Generalised Linear ...