Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
dtrckd committed Dec 20, 2024
1 parent 0ab0b36 commit 027b391
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/demo_streamlit/views/experiments_set.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,11 +120,11 @@ def display_experiment_sets(experiment_sets):
with st.expander("Failure Analysis", expanded=False):
for exp in exp_set["experiments"]:
if exp["num_try"] != exp["num_success"]:
st.write(f"{id: exp['id']} name: {exp['name']} (failed on output generation)")
st.write(f"id: {exp['id']} name: {exp['name']} (failed on output generation)")
continue

if exp["num_observation_try"] != exp["num_observation_success"]:
st.write(f"{id: exp['id']} name: {exp['name']} (failed on score computation)")
st.write(f"id: {exp['id']} name: {exp['name']} (failed on score computation)")
continue


Expand Down

0 comments on commit 027b391

Please sign in to comment.