h2o-tutorials icon indicating copy to clipboard operation
h2o-tutorials copied to clipboard

The autoML leaderboard is null(and I used the IDE is spyder)

Open brucesunxi opened this issue 5 years ago • 2 comments

When I use the H2OAutoML, the code like below: aml = H2OAutoML(max_runtime_secs = 30) aml.train(x = x, y = y, training_frame = train, leaderboard_frame = test)

View the AutoML Leaderboard

lb = aml.leaderboard lb

but run the lb is null. need your help ,thanks !

brucesunxi avatar Jun 08 '19 11:06 brucesunxi

I solved this issue by transforming it into dataframe object:

lb = aml.leaderboard.as_data_frame()
print(lb.head())

ArioBattolla avatar Jul 05 '19 14:07 ArioBattolla

Same issue here.

ericbrownaustin avatar Mar 06 '20 16:03 ericbrownaustin