Spaces:
Running
Running
Nischay103
commited on
Commit
•
e1ef17a
1
Parent(s):
90505a0
Update app.py
Browse files
app.py
CHANGED
@@ -97,6 +97,8 @@ if uploaded_file is not None:
|
|
97 |
st.write(f"Recognized Character Sequence: {output}")
|
98 |
|
99 |
st.write("## Examples")
|
100 |
-
|
101 |
-
|
102 |
-
|
|
|
|
|
|
97 |
st.write(f"Recognized Character Sequence: {output}")
|
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}")
|