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.
- Introduction
- Regression Models
- Introduction to Classification Models
- Introduction to Neural Networks
- Digit Classification using Deep Networks
- Introduction to Convolutional Neural Networks
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()