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

https://github.com/upul/getting-started-with-tensorflow

Getting Started with TensorFlow: How to Build Machine Learning Models using TensorFlow
https://github.com/upul/getting-started-with-tensorflow

deep-learning jupyter-notebook machine-learning python-3 tensorflow

Last synced: 2 months ago
JSON representation

Getting Started with TensorFlow: How to Build Machine Learning Models using TensorFlow

Awesome Lists containing this project

README

          

# Getting Started with TensorFlow

This repository contains a collection of Tensorflow tutorials mainly written in Jupiter Notebooks. Please kindly note that this is being developed and I'm planning to discuss following topics.

1. Introduction
2. Regression Models
3. Introduction to Classification Models
4. Introduction to Neural Networks
5. Digit Classification using Deep Networks
6. Introduction to Convolutional Neural Networks

```python
x, y = DataGenerator.linear(lambda x: 3*x + 5, 0, 10, sample_size=250, noise_mean=0, noise_var=5)
plt.scatter(x, y, s=25, color = '#c51b3a')
plt.show()
```