-
Notifications
You must be signed in to change notification settings - Fork 30
14. Neural Networks
Antonio Erdeljac edited this page Mar 28, 2019
·
1 revision
Topic: Neural Networks
Course: GMLC
Date: 24 March 2019
Professor: Not specified
-
Neural Networks are used to solve non-linear problems by adding hidden layers & activation functions
-
Hidden layer
- Sum of all inputs
-
Activation function
-
Sum of all hidden layers ran through an activation function (weighted sum of input values)
-
Rectified Linear Unit
-
Sigmoid Function
-
σ(w⋅x+b)
-
-
Structure
-
Set of nodes in layers
-
Set of weights representing the connection
-
Set of biases
-
An activation function
-
-
Neuron
- Node which takes multiple inputs and generates a single output value using activation functions
-
Know the structure of Neural Networks
-
Understand what are activation functions & what are they used for
Summary of Notes
- Neural Networks are used to solve non linear problems using hidden layers summing the weights on inputs ran through an activation function