Skip to content

Commit

Permalink
remove 1sec sleep after each log statement
Browse files Browse the repository at this point in the history
  • Loading branch information
AnirudhDagar authored Nov 9, 2024
1 parent f375265 commit ae507e3
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/autogluon_assistant/WebUI/log_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ def process_realtime_logs(line):
if "AutoGluon training complete" in line:
st.session_state.show_remaining_time = False
with st.session_state.stage_status[st.session_state.current_stage]:
time.sleep(1)
if "Fitting model" in line and not st.session_state.show_remaining_time:
st.session_state.progress_bar = stqdm(
desc="Elapsed Time for Fitting models: ", total=TIME_LIMIT_MAPPING[st.session_state.time_limit]
Expand Down

0 comments on commit ae507e3

Please sign in to comment.