sidhomj/DeepTCR

Wrong sklearn version

choosehappy opened this issue · 1 comments

requirements.txt states 0.19.1

but OneHotEncoder in that version doesn't have a "categories" named variable:

https://scikit-learn.org/0.19/modules/generated/sklearn.preprocessing.OneHotEncoder.html#sklearn.preprocessing.OneHotEncoder

which is used here:

OH = OneHotEncoder(sparse=False,categories='auto')

This wasn't introduced until version 0.20

thank you for letting me know! will update the requirements soon!