Skip to content

Commit

Permalink
hot fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dtrckd committed Dec 20, 2024
1 parent d7bcbf2 commit ee96a21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/demo_streamlit/views/experiments.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def display_experiment_results(exp_id):

if experiment["num_success"] != experiment["num_try"]:
st.warning("Warning: some experiments are failed.")
if experiment["num_observation_sucess"] != experiment["num_observation_try"]:
if experiment["num_observation_success"] != experiment["num_observation_try"]:
st.warning("Warning: some metrics are failed.")

results_df = process_experiment_results(experiment)
Expand Down

0 comments on commit ee96a21

Please sign in to comment.