I have 250 human face images and with those I am going to train the model. for the sake of convenience, what I am going to do is to pick first 10 images and use leave-one-image-out cross validation to train the model so that each image gets the chance to be the test image. What I understand is that in that case size of my training data set is 9 and size of my testing data set is 1. After that I'm going to get next 10 images and then use them as well to train the model. In that case,size of my training data set would be 19 and testing data set would be 1 (this takes place repeatedly 20 times so that every image gets the chance to be in the testing set ). Likewise, this goes up until I've used all the 250 images to train the model.
What I don't understand is "Validation Data set ". Am I doing it in the wrong way ?
There was one answer on Stackoverflow but it wasn't clear to me. That's why I posted this question