Hello ResearchGate community
I am working on a deep learning (CNN + AEs) approach on facial images.
I have an input layer of 112*112*3 of facial images, 3 convolution + max pooling + ReLU and also 2 layers of fully connected with 512 neurons with 50% dropout to avoid overfitting and last output layer with 10 neurons since I have 10 classes.
I have also used reduce mean of softmax cross entropy and also L2.
For training I divided my dataset to 3 groups of:
60% for training
20% for validation
20% for evaluation
The problem is after few epochs the validation error rate stay fixed value and never changes. I have used tensorflow to implement my project.
I hadn't such problem before with CNNs so I think it's first time. I have cheked the code it's based on tensorflow documentation so I don't think if the problem is with the code. maybe I need to change some parameters but I am not sure.
Any idea about common solutions for such problem?