Nischay103 commited on
Commit
5a0ead0
1 Parent(s): e1ef17a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -98,7 +98,7 @@ if uploaded_file is not None:
98
 
99
  st.write("## Examples")
100
  cols = st.columns(3)
101
- for idx,model_variant, captcha_path in enumerate(example_captchas.items()):
102
  col = cols[idx % 3]
103
  col.image(captcha_path,caption=f'Model {model_variant}: {captcha_path.split("/")[-1]}', width=100)
104
  col.write(f"Model Version: {model_variant}")
 
98
 
99
  st.write("## Examples")
100
  cols = st.columns(3)
101
+ for idx,(model_variant,captcha_path) in enumerate(example_captchas.items()):
102
  col = cols[idx % 3]
103
  col.image(captcha_path,caption=f'Model {model_variant}: {captcha_path.split("/")[-1]}', width=100)
104
  col.write(f"Model Version: {model_variant}")