We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I would strongly suggest, the readme should have a usage vignette, e.g.,
from rolch.model import Foo from rolch.data import load_bar from rolch.prettyplot import veryprettyplot X, y, X1, y1, X2, y2 = load_bar() m = Foo() m.fit(X, y) y_pred = m.predict(X1) m.update(X1, y1) y_pred2 = m.predict(X2) veryprettyplot(everything)
The text was updated successfully, but these errors were encountered:
Good point! Note to self: keep in mind for #21
Sorry, something went wrong.
This was implemented in #21
simon-hirsch
No branches or pull requests
I would strongly suggest, the readme should have a usage vignette, e.g.,
The text was updated successfully, but these errors were encountered: