Intro to Neural Networks
By: Sid
What are Neural Networks?
Basic Types of Learning
Standard Neural Networks
The input layer takes in the various factors that can affect the output (ex. weather: air pressure, temperature, wind speed, location)
When it gets complicated...
For areas like Finance, there can be thousands of inputs that complicate networks; this is why the predictions take lots of computing power (leads to a nifty field called Big Data Analytics)
Review of Biology - Neurons, Dendrites & Axons
Many electrical signals move through the dendrites into the cell body. If the net electrical signal crosses a certain threshold, the signal is passed on to another Neuron.
The Perceptron Model
The activation function f(x) is usually the sigmoid function:
Or the ReLU function:
b is the bias that is added to each node
The Perceptron Model
This is the same model. It just shows things more clearly.
Note: ŷ is the output of the network...it is only a predicted value. The correct answer provided by the teacher is called y. - this is supervised learning
Some Common Notations
Logistic Regression Cost Function
Gradient Descent
Some extra stuff for you...