Ensemble #25
Unanswered
Sandeep Pawar (pawarbi)
asked this question in
Q&A
Replies: 1 comment 7 replies
|
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
I ran the demo example from here: https://github.com/microsoft/FLAML/blob/main/notebook/flaml_demo.ipynb
Couple of things:
from flaml.data import load_openml_datasetensemble=Trueinsettingsforce flaml to create and output an ensemble model? Expected behavior should be ifensemble=True, train individual models and ensembles but return the best model based for the chosen metric. If you run the demo notebook from above, an ensemble model is returned which has lower accuracy than the single best model (lgbm). Expected output in this case would be best LGBMClassifier model not the StackingClassifer which has lower accuracy.All reactions