Install Azure Kinect SDK on Ubuntu 16.04

Note: The current SDK version when I started this post is 1.3.0. Currently, the only supported Linux distribution for is Ubuntu 18.04 and due to reasons like some existing projects are built on Ubuntu 16.04 etc.,  it would be nice to have support on these older projects. This post documented what I did to make Continue reading Install Azure Kinect SDK on Ubuntu 16.04

Implementing the Perceptron algorithm from scratch with Python

Introduction Perceptron is a fundamental algorithm for binary classification in Machine Learning. The perceptron is a mistake-driven online learning algorithm. It is often said that the perceptron is modeled after neurons in the brain. It has m input values (which correspond with the features of the examples in the training set) and one output value. Continue reading Implementing the Perceptron algorithm from scratch with Python