IoBT-VISTEC / MIN2Net

End-to-End Multi-Task Learning for Subject-Independent Motor Imagery EEG Classification (IEEE Transactions on Biomedical Engineering)
https://min2net.github.io
Apache License 2.0
74 stars 25 forks source link

What is self.subsampling_size? #3

Open Buddies-as-you-know opened 1 year ago

Buddies-as-you-know commented 1 year ago

What is self.subsampling_size? The self.subsampling_size in the MIN2Net model is 100, what is the value?

xydxdy commented 1 year ago

We set the subsampling size equal to the sampling rate, and it is used to define the pooling size to reduce the input size of the next CNN block.

Buddies-as-you-know commented 1 year ago

Thank you.