gcForest
gcForest copied to clipboard
How to save and load models?
How to save and load models?
I have the same question as you
How to save and load models?
SAME QUESTION. How to save a model and load it? Have you found the way?
How to save and load models?
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: