- bias refers to underfitting and variance refers to overfitting
- In Neural network, there are few set rules to counter bais and variance issue
- High Bias/Underfitting:
- Bigger Network: Add more layers and increase nodes in layer to counter underfitting
- More Epochs/Train Longer: Increase number of passes over the entire data to counter underfitting
- Differnt NN architecture: Try different network architecture
- High Variance/Overfitting:
- Get more data: Increase data points collected
- Make model simpler: Simplify the model in terms of less layers, and less nodes
- Regularization: Add l1/l2 regularization to weights
- Dropout: Dropout means some % of nodes will be automatically turned off (not trained); generally set to 10%-30%
No comments:
Post a Comment