BCICIV2a-FBCSP icon indicating copy to clipboard operation
BCICIV2a-FBCSP copied to clipboard

Test Data Results

Open ParthanOlikkal opened this issue 4 months ago • 1 comments

I went through the code as I was interested in the FBCSP. But later at the end of the coding, it seems that under "Results for test data", you have data_train = mod_data[subj]['train']['mutual'] X_train = data_train['X'] y_train = data_train['y']

data_test = mod_data[subj]['test']['mutual']
X_test = data_train['X']     -------  X_test = data_test['X']
y_test = data_train['y']      -------  y_test = data_test['y']

From the training data results, it seems that the model might have been overfitted.

I did extend your work to 9 subjects using SVC, Naive Bayers Classifier and DecisionTrees.

ParthanOlikkal avatar Feb 20 '24 22:02 ParthanOlikkal