|
|
|
|
|
by argonaut
3429 days ago
|
|
Two major errors: 1) This doesn't seem to be controlling overfitting on the right validation set. 2) There isn't a test set at all (separate from validation). Using Keras' "validation_split" parameter will just randomly select a validation set. This is not the right thing to do when your data is image sequences, because you will get essentially identical data in training and validation. Because of this, the numbers/plot here might as well be training accuracy numbers. |
|
[1]: https://keras.io/getting-started/faq/#how-is-the-validation-...