Just translation improvements
Browse files
app.py
CHANGED
|
@@ -50,19 +50,19 @@ with col1:
|
|
| 50 |
ex = Image.open(ejemplos[0])
|
| 51 |
st.image(ex, width=200)
|
| 52 |
## If push the button then, let's use that example within the model
|
| 53 |
-
if st.button("
|
| 54 |
archivo_imagen = ejemplos[0]
|
| 55 |
|
| 56 |
with col2:
|
| 57 |
ex1 = Image.open(ejemplos[1])
|
| 58 |
st.image(ex1, width=200)
|
| 59 |
-
if st.button("
|
| 60 |
archivo_imagen = ejemplos[1]
|
| 61 |
|
| 62 |
with col3:
|
| 63 |
ex2 = Image.open(ejemplos[2])
|
| 64 |
st.image(ex2, width=200)
|
| 65 |
-
if st.button("
|
| 66 |
archivo_imagen = ejemplos[2]
|
| 67 |
|
| 68 |
|
|
|
|
| 50 |
ex = Image.open(ejemplos[0])
|
| 51 |
st.image(ex, width=200)
|
| 52 |
## If push the button then, let's use that example within the model
|
| 53 |
+
if st.button("Run this sample 1"):
|
| 54 |
archivo_imagen = ejemplos[0]
|
| 55 |
|
| 56 |
with col2:
|
| 57 |
ex1 = Image.open(ejemplos[1])
|
| 58 |
st.image(ex1, width=200)
|
| 59 |
+
if st.button("Run sample 2"):
|
| 60 |
archivo_imagen = ejemplos[1]
|
| 61 |
|
| 62 |
with col3:
|
| 63 |
ex2 = Image.open(ejemplos[2])
|
| 64 |
st.image(ex2, width=200)
|
| 65 |
+
if st.button("Run sample 3"):
|
| 66 |
archivo_imagen = ejemplos[2]
|
| 67 |
|
| 68 |
|