-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Labels
Description
Customizing a BaseModel is pretty simple at the moment. Something like:
from minutes import BaseModel
class MyBaseMinutesModel(BaseModel):
def fit(self, **kwargs):
X_train, X_test, y_train, y_test = self._generate_training_data()
# Design and train your model, then assign it to self.model.I don't think we need to make this anymore convenient for the user, but some documentation for this should exist in the README.
Reactions are currently unavailable