Update app.py
Browse files
app.py
CHANGED
|
@@ -54,11 +54,7 @@ with gr.Blocks(theme="default") as demo:
|
|
| 54 |
|
| 55 |
with gr.Row():
|
| 56 |
with gr.Column():
|
| 57 |
-
rx_input = gr.Image(
|
| 58 |
-
type="numpy",
|
| 59 |
-
label="Sube tu RX",
|
| 60 |
-
tool="upload" # Compatible con versiones antiguas
|
| 61 |
-
)
|
| 62 |
boton = gr.Button("Analizar")
|
| 63 |
with gr.Column():
|
| 64 |
resultado = gr.HTML(label="Resultado")
|
|
|
|
| 54 |
|
| 55 |
with gr.Row():
|
| 56 |
with gr.Column():
|
| 57 |
+
rx_input = gr.Image(type="numpy", label="Sube tu RX") # <-- solo upload
|
|
|
|
|
|
|
|
|
|
|
|
|
| 58 |
boton = gr.Button("Analizar")
|
| 59 |
with gr.Column():
|
| 60 |
resultado = gr.HTML(label="Resultado")
|