Closed lienz closed 4 years ago
Hi, Thanks for the nice library. Just a small comment, the first example in the README is:
from pyeeglab import * dataset = TUHEEGAbnormalDataset() pipeline = Pipeline([ CommonChannelSet(), LowestFrequency(), ToDataframe(), MinMaxCentralizedNormalization(), DynamicWindow(8), ToNumpy() ]) dataset = dataset.set_pipeline(preprocessing).load() data, labels = dataset['data'], dataset['labels']
but it should be:
from pyeeglab import * dataset = TUHEEGAbnormalDataset() preprocessing = Pipeline([ CommonChannelSet(), LowestFrequency(), ToDataframe(), MinMaxCentralizedNormalization(), DynamicWindow(8), ToNumpy() ]) dataset = dataset.set_pipeline(preprocessing).load() data, labels = dataset['data'], dataset['labels']
Opsie, it's a typo, thanks!
Hi, Thanks for the nice library. Just a small comment, the first example in the README is:
but it should be: