InterviewSolution
Saved Bookmarks
| 1. |
In a Convolutional Neural Network (CNN), how can you fix the constant validation accuracy? |
|
Answer» When training any neural network, constant validation accuracy is a common issue because the network just REMEMBERS the SAMPLE, resulting in an over-fitting problem. Over-fitting a model indicates that the neural network model performs ADMIRABLY on the training sample, but the model's PERFORMANCE deteriorates on the validation set. Following are some ways for improving CNN's constant validation accuracy:
|
|