How to increase validation accuracy with deep neural net?

前端 未结 2 1250
甜味超标
甜味超标 2021-01-30 11:43

I am trying to build a 11 class image classifier with 13000 training images and 3000 validation images. I am using deep neural network which is being trained using mxnet. Traini

2条回答
  •  猫巷女王i
    2021-01-30 12:23

    This clearly looks like a case where the model is overfitting the Training set, as the validation accuracy was improving step by step till it got fixed at a particular value. If the learning rate was a bit more high, you would have ended up seeing validation accuracy decreasing, with increasing accuracy for training set.

    Increasing the number of training set is the best solution to this problem. You could also try applying different transformations (flipping, cropping random portions from a slightly bigger image)to the existing image set and see if the model is learning better.

提交回复
热议问题