I am using MatConvNet for the classification two different pants.
i am using MINST example architecture of 28x28 input image.
the dataset I have for two classes are ~14000 images after data augmentation. 45% for training and testing and 10% for testing.
While i was getting overfitting.
The Original architecture is like that:
Conv1-relu1-pool1 Conv2-relu2-pool2 Conv3-relu3 Conv4-relu4
To avoid overfitting I have added dropout layers.
Conv1-relu1-pool1 dropout 70, Conv2-relu2-pool2 dropout 70, Conv3-relu3 dropout 50, Conv4-relu4 dropout 70
But still its showing overfitting at the output..
Any suggestions please to solve this issue
Asked
Active
Viewed 450 times
2
Addee
- 151
- 4
the dataset I have for two classes are ~14000 images after data augmentation. 45% for training and testing and 10% for testing.Please modify your question and fix the percentages. – NULL Aug 01 '17 at 11:58