An open API service indexing awesome lists of open source software.

https://github.com/apal21/tensorflow-linear-regression-fit-data

Fit a line passing through data with some random noise using Tensorflow linear regression with Gradient Descent Optimizer.
https://github.com/apal21/tensorflow-linear-regression-fit-data

gradient-descent linear-regression numpy python3 tensorflow

Last synced: 2 months ago
JSON representation

Fit a line passing through data with some random noise using Tensorflow linear regression with Gradient Descent Optimizer.

Awesome Lists containing this project

README

          

## Tensorflow Linear Regression fitting a line through data.

* Tensorflow version `1.8` and Python version `3.5`
* Here data is generated using numpy with some `random noise`.
* Used `Gradient Descent Optimizer` to optimize data
* Set the learning rate to `0.001`
* Plotted a line passing through this data using Matplotlib.