lxysl / mit-bih_ecg_recognition

MIT-BIH ECG recognition using 1d CNN with TensorFlow2 and PyTorch
https://www.cnblogs.com/lxysl/p/12830037.html
136 stars 29 forks source link

CNN and Data Type #2

Open MrBlackFox2001 opened 1 year ago

MrBlackFox2001 commented 1 year ago

Hello sir, thanks for your contribution here, I have a question for you, the MIT-BIH dataset is numerical, how did you use it as an input for the CNN, should it be data of images?

lxysl commented 1 year ago

No, just a series of data points. Use wfdb to load it and convert it to a 1d numpy array, finally convert to a pytorch tensor(if using pytorch).