I want to ask about the distribution of train, validation, and test set? lets assume, i want to make a binary resnet classifier with two class of 'cat' and 'dog'.
Assume the name of the image each class is:
cat: a, b, c, d, e
dog: f, g, h, i, j
Assume that i want 2 images from each class to become test set and 1 image from each class to become validation set.
which scheme of distribution is actually right?
scheme 1
test set
cat: a, b
dog: i, j
train set
cat: c, d
dog: f, g
val set
cat: e
dog: h
scheme 2
test set
cat: a, b
dog: i, j
train set
cat: c, d, e
dog: f, g, h
val set
cat: e
dog: h
what makes me confuse, is the validation set is also a member of training set like in scheme 2?, or the validation set is separate/different from training set like in scheme 1 ? thanks for the help