def save(self, path):
"""
Use joblib to pickle the object.
Arguments:
path: an open file object or string holding the path to where the
object should be saved
"""
jl.dump(self, path)