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
How to save and load models?
The text was updated successfully, but these errors were encountered:
I have the same question as you
Sorry, something went wrong.
SAME QUESTION. How to save a model and load it? Have you found the way?
class SKlearnBaseClassifier(BaseClassifierWrapper): def _load_model_from_disk(self, cache_path): return joblib.load(cache_path)
def _save_model_to_disk(self, clf, cache_path): joblib.dump(clf, cache_path)
you can refer to this:
No branches or pull requests
How to save and load models?
The text was updated successfully, but these errors were encountered: