PedroC11 commited on
Commit
073a25f
·
verified ·
1 Parent(s): a222530

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +2 -2
src/streamlit_app.py CHANGED
@@ -61,7 +61,7 @@ st.header("Instructions", divider=True)
61
  #st.markdown(f"**Instructions:**
62
  st.markdown(f"You will be shown 25 pairs of images. For each pair, please select which image \"Option A\" (left) or \"Option B\" (right) you find more \
63
  **visually appealing** and to have **better quality in its features**.")
64
- st.markdown(f"Please, evaluate each pair of images **independetly** of the other pairs.")
65
  st.markdown(f"If needed, please, look closer to the screen and/or zoom in the pictures.")
66
 
67
 
@@ -113,7 +113,7 @@ for i, (imgA, imgB) in enumerate(image_pairs):
113
 
114
  choice = st.radio(
115
  f"Which image do you prefer for Pair {i+1}?",
116
- ("-","Option A", "Option B"),
117
  key=f"choice_{i}"
118
  )
119
  results[f"pair_{i+1}"] = choice
 
61
  #st.markdown(f"**Instructions:**
62
  st.markdown(f"You will be shown 25 pairs of images. For each pair, please select which image \"Option A\" (left) or \"Option B\" (right) you find more \
63
  **visually appealing** and to have **better quality in its features**.")
64
+ st.markdown(f"Please, evaluate each pair of images **independently** of the other pairs.")
65
  st.markdown(f"If needed, please, look closer to the screen and/or zoom in the pictures.")
66
 
67
 
 
113
 
114
  choice = st.radio(
115
  f"Which image do you prefer for Pair {i+1}?",
116
+ ("-","Option A (left)", "Option B (right)"),
117
  key=f"choice_{i}"
118
  )
119
  results[f"pair_{i+1}"] = choice