We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi Awni Y. Hannun, I have been reproducing you paper published on Nature medicine.
I am confused about your settings of MaxPooling 1d.
Here is the function for building the whole network.
ecg/ecg/network.py
Lines 42 to 81 in c97bb96
You created the shortcut on line 62, where the subsample_length can only be 1 or 2 in your settings.
subsample_length
shortcut = MaxPooling1D(pool_size=subsample_length)(layer)
when subsample_length = 1, MaxPooling1D applies 1x1 window on input data, therefore, no change made to the input. Is this intended?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi Awni Y. Hannun, I have been reproducing you paper published on Nature medicine.
I am confused about your settings of MaxPooling 1d.
Here is the function for building the whole network.
ecg/ecg/network.py
Lines 42 to 81 in c97bb96
You created the shortcut on line 62, where the
subsample_length
can only be 1 or 2 in your settings.when subsample_length = 1, MaxPooling1D applies 1x1 window on input data, therefore, no change made to the input.
Is this intended?
The text was updated successfully, but these errors were encountered: