Please enable JavaScript.
Coggle requires JavaScript to display documents.
Neural Network - Coggle Diagram
Neural Network
General
-
-
-
Issues of training
Overtraining, that cause the parameters to overfit to the training data
-
Convergence
-
-
-
-
-
Add regularisation to cost function so that the error function depends partly on weight of the nodes
-
-
Gradient descent
-
-
-
Mini batch, n training examples by n
Design guidelines
- Preprocess e.g., data normalisation, smoothening
- Train and trial&error hyperparameters
- Once good enough, optimise through pruning etc
Normalisation is good for NN because it may learn faster for some inputs and not for others if the scale of the inputs are different
Deep Learning
CNN
-
-
-
-
Input and outputs are fixed size, suitable for spatial data
RNN/LSTM
-
Suitable for temporal data, input and output are arbitrary length
-
-
-
Keras API styles
Sequential Model
Simple, for single input/output
-
no branching or merging, no reuse layer, no shared layer
-
-
-
Type of networks
-
General Regression NN
-
-
-
-
Features
-
Self-growing, will grow by one pattern unit for each new training patter
-
-
-
-
-