You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Are there functions in thundergbm that can save a trained model to file and reload it from the file later?
There is a function "clf.predict_proba()" in sklearn that calculates probabilities of the different labels. Is there a corresponding function in thundergbm?
There is a function in sklearn that calculates the importance of the different features, called "clf.feature_importances_". Is there is a similar function in thundergbm?
The text was updated successfully, but these errors were encountered:
Hi @DonSeger, You can use clf.save_model(path) and clf.reload_model(path) to save and reload trained models.
But the calculation of probabilities for different labels and the feature importance evaluation are unsupported features in ThunderGBM. We are considering supporting these features in the future, thank you.
Are there functions in thundergbm that can save a trained model to file and reload it from the file later?
There is a function "clf.predict_proba()" in sklearn that calculates probabilities of the different labels. Is there a corresponding function in thundergbm?
There is a function in sklearn that calculates the importance of the different features, called "clf.feature_importances_". Is there is a similar function in thundergbm?
The text was updated successfully, but these errors were encountered: