Category: Machine Learning

Artificial Neuron learning in Python
It all starts with a single neuron! Or with a perceptron. Perceptron is a neuron’s computational model. If you link some of them together, you get to a real ‘artificial brain’ capable of learning complex stuff. When I try to explain basic AI concepts to non computer scientist, I usually start like this … You ...

3D Interactive Hotel Market Segmentation
There is a life beyond regression analysis! You can do so much more with pure time-series data! #datascience #plotly #timeseries

Linear Regression with multiple Variables in Matlab
In the previous post I showed you how to implement Linear Regression with one Variable in Matlab. In this one I’m going to discuss implementation with multiple variables. Before implementing multivariate Linear Regression, feature normalization would be the smart step since the gradient descent would converge (would find minimum cost function) much more quickly. Every sample value is ...

Linear Regression with one Variable in Matlab
In this post i will show you how to implement one of the basic Machine Learning concepts in Matlab, the Linear Regression with one Variable. Matlab and Octave are very useful high-level languages for prototyping Machine Learning algorithms. [Linear Regression Example from mathworks.com] The idea is to find the line that perfectly fits all ...