File size: 454 Bytes
ad5047a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import gradio as gr


def hello_world(name):
    return "Hello " + name + "!"

# Definir la interfaz de Gradio
interface = gr.Interface(
    fn=hello_world,
    inputs=gr.Textbox(label="Ingresa tu nombre: "),
    # outputs=gr.Label(num_top_classes=1),
    outputs=gr.Textbox(label="Saludo: "),
    title="Blindness Classification",
    description="Classify the severity of blindness from retinal images."
)


# Ejecutar la aplicación
interface.launch()