Tagged in

Machine Learning

SomX Labs
SomX Labs
https://somx.in — We find the crux of the data. In the quest of finding interesting insights from open data in focused domains. Stay tuned for some interesting ‘Insights’.
More information
Followers
46
Elsewhere
More, on Medium

Linear Regression in Tensorflow

In the last post we learnt what is linear regression, now lets try to implement it in tensorflow.

Lets represent the linear regression model first.

Y = X * W + b

Tensorflow Operations

In tensorflow Constants, Variables & Operations are collectively called ops.

In the introduction post about tensorflow we saw how to write a basic program in tensorflow. Also about graphs, sessions and how they work. Now lets explore further and dig deep into…