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
according to this code in wave-h2o-automl/src/app.py: for i in range(1, max_runtime_secs): pct_complete = int(np.ceil(i/max_runtime_secs * 100)) main_page.items = [ui.progress(label='Training Progress', caption=f'{pct_complete}% complete', value=i / max_runtime_secs)] await q.page.save() await q.sleep(1)
it seems that max_runtime_secs denotes round instead of time, and is used for the progress bar. is it right?
The text was updated successfully, but these errors were encountered:
according to this code in wave-h2o-automl/src/app.py:
for i in range(1, max_runtime_secs): pct_complete = int(np.ceil(i/max_runtime_secs * 100)) main_page.items = [ui.progress(label='Training Progress', caption=f'{pct_complete}% complete', value=i / max_runtime_secs)] await q.page.save() await q.sleep(1)
it seems that max_runtime_secs denotes round instead of time, and is used for the progress bar. is it right?
The text was updated successfully, but these errors were encountered: