mondejar / ecg-classification

Code for training and test machine learning classifiers on MIT-BIH Arrhyhtmia database
GNU General Public License v3.0
528 stars 193 forks source link

Module cPickle is missing. #2

Closed GrayLand119 closed 6 years ago

GrayLand119 commented 6 years ago

I can't find the cPickle module in project, and I searching cPickle In Project, got the result below: image

lehoangthanh1809 commented 6 years ago

cPickle is a python's library. You can install it via pip.

TaeJoongYoon commented 6 years ago

Use _pickle instead of cPickle.

cPickle is not supported in Python3.x.

GrayLand119 commented 6 years ago

Thanks @TaeJoongYoon !~ I use_pickle to instead, It does work.