ikmckenz / target-pred-py

A simple machine learning model for small-molecule target prediction in Python.
GNU General Public License v3.0
18 stars 8 forks source link

Parallelize feature generation #7

Closed ikmckenz closed 4 years ago

ikmckenz commented 5 years ago

Right now features are created with

X = data_set["canonical_smiles"].map(self.get_numpy_fingerprint_from_smiles)

This should be parallelized, and it should be pretty easy to do.