π±Introduction
π©βπ» Intro to Neural Networks Coding
Like every first app we should start with something super simple that gives us an idea about the whole methodology.
β¨ What is Keras?
Keras is a high-level neural networks API, written in Python and capable of running on top of TensorFlow, CNTK, or Theano.
π Important Terms
Term
Description
Dense
A layer of neurons in a neural network
Loss Function
A mathematical way of measuring how wrong your predictions are
Optimizer
An algorithm to find parameter values which correspond to minimum value of loss function
π©βπ¬ The Simplest Neural Network
It contains one layer with one neuron.
π©βπ» Code Example
After building out neural network we can feed it with our sample data π
π©βπ» Code Example
Then we have to start training process π
π©βπ» Code Example
Every thing is done π ! Now we can test our neural network with new data π
π©βπ» Code Example
π©βπ» My Code
π Traditional Programming vs Machine Learning
π§ References
Last updated