I am working on a small computer vision project and I'm using convolutional nets for classification. I have already used dropout, l1, l2 regularization and data augmentation to reduce overfitting. Are there any other techniques and algorithms for improving model accuracy and reducing overfitting?
Asked
Active
Viewed 78 times
-2
-
(1)-Add more data (2)-Use smaller CNN – Abhi25t Feb 20 '21 at 12:13
1 Answers
0
there could be a 100 solutions
- Use pretrained model (transfer learning).
- Try to implement a smaller network.
- Bigger data set.
- Try different parameters[learning rate, batch size..].
- Use grid search for these parameters.
- Try data augmentation for your training data set. ...

Elie Eid
- 703
- 7
- 11
-
1*there could be a 100 solutions* ... which is why we discourage posting answers to questions that are unclear in their requirements. – Adrian Mole Feb 20 '21 at 21:30