garethjns / Kaggle-EEG

Seizure prediction from EEG data using machine learning. 3rd place solution for Kaggle/Uni Melbourne seizure prediction competition.
101 stars 29 forks source link

Temporary change to data sub paths #8

Closed garethjns closed 7 years ago

garethjns commented 7 years ago

In featuresObject methods genFileListNoConcat and genFileListSomeSingles sub path has been changed to:

sDir = [paths.dataDir, str, '_', subs{s}, '_New\'];

Rather than:

sDir = [paths.dataDir, str, '_', subs{s}, '\'];

It now doesn't match the locations created by copyTestLeakToTrain(params.paths) during initial set up and will need to be changed back after hold out testing.

garethjns commented 7 years ago

Reverted to:

sDir = [paths.dataDir, str, '_', subs{s}, '\'];

Not tested yet.