ifyoungnet / ADMETlab

A platform for systematic ADME evaluation of drug molecules, thereby accelerating the drug discovery process.
GNU Affero General Public License v3.0
59 stars 27 forks source link

Unable to load PPB_Label.pkl #1

Closed Bibyutatsu closed 4 years ago

Bibyutatsu commented 4 years ago

Hi, I am unable to load the pickle file named PPB_Label.pkl so please can you share the contents of the file. I just need the list of names of the descriptors used to predict the PPB value.

ifyoungnet commented 4 years ago

@Bibyutatsu Hi, try use sklearn to do this (under python2.7, sklearn 0.17.1). from sklearn.externals import joblib joblib.dump(clf,'xxx.pkl') clf=joblib.load('xxx.pkl')

Bibyutatsu commented 4 years ago

@ifyoungnet Hi, Thank you very much for that help.