Modules:lifetimes.models.__init__.BaseModel class object
Issue: Currently the User API has multiple predictive methods which must have arrays passed in individually as arguments, which is clunky for the end user.
Work Summary: Add a self.predict() function with arguments for each of the predictive methods and their respective inputs. Something like this:
Modules:
lifetimes.models.__init__.BaseModel
class objectIssue: Currently the User API has multiple predictive methods which must have arrays passed in individually as arguments, which is clunky for the end user.
Work Summary: Add a
self.predict()
function with arguments for each of the predictive methods and their respective inputs. Something like this:Other Comments:
method_dict
will probably need to be defined outside of this method as an object of the model subclass.