Reputation: 373
I am making a convolutional network model with which I want to classify EEG data. The data is an experiment where participants are evoked with images of 3 different classes with 2 subclasses each. To give a brief explanation about the dataset size, a subclass has ±300 epochs of a given participant (this applies for all the subclasses).
I have 5 participants in my training dataset, I took 15% of each participants' data and put it in the testing dataset. Can I consider the 15% as unseen data even though the same participant was used to train the model on?
Upvotes: 0
Views: 252
Reputation: 2656
It depends on what you want to test. A test set is used to estimate the generalization (i.e. performance on unseen data). So the question is:
This really depends on you goal or the claim you are trying to make. I can think of situations for both approaches:
Upvotes: 2