RSS Amplifier

Rodrigo Araujo · Jan 9, 2015

Gradient Descent Algorithm in Java

0
Sign in to vote or save

This page cannot be shown here. You can still read it on the original site — the toolbar below keeps your place in the directory.

How can we make a machine learn from data? Then, how can we make the machine predicts things based on that learned data? Those are the question answered by one of the most classic Machine Learning Algorithms, the Gradient Descent Algorithm , from a Mathematical-Statistical side it’s called Univariate Linear Regression . This is one of the tools of the Machine Learning toolbox, and what it tries to…

How can we make a machine learn from data?

Then, how can we make the machine predicts things based on that learned data? Those are the question answered by one of the most classic Machine Learning Algorithms, the Gradient Descent Algorithm, from a Mathematical-Statistical side it’s called Univariate Linear Regression.

This is one of the tools of the Machine Learning toolbox, and what it tries to do is to model a relationship between a scalar dependent variable Y and a explanatory variable X.

In Layman’s term…

Let’s suppose you have a few points distributed in a Graph, so you already know that in a point A you have a well defined X and Y, which means, if you input X, your output will be Y, and in a point B you have a well defined X’ and Y’ as well. But, thing is, if a point emerge between A and B, and you only have the X… what will be the Y (the output)?

Read on /posts/gradient-descent-algorithm-in-java/

Comments

Nothing yet. Say the first thing.

    Sign in to join the conversation.