DHEIVER commited on
Commit
9698b9b
1 Parent(s): ffc1de3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -36,7 +36,12 @@ iface = gr.Interface(
36
  fn=classify_image,
37
  inputs=gr.inputs.Image(shape=(192, 256)),
38
  outputs=gr.outputs.Label(),
39
- capture_session=True
 
 
 
 
 
40
  )
41
 
42
  # Inicie a interface Gradio
 
36
  fn=classify_image,
37
  inputs=gr.inputs.Image(shape=(192, 256)),
38
  outputs=gr.outputs.Label(),
39
+ capture_session=True,
40
+ title="Detecção de Catarata",
41
+ description="Esta interface permite a detecção de catarata em imagens de olhos.",
42
+ instructions="Carregue uma imagem de um olho e clique em 'Classificar' para obter a previsão.",
43
+ theme="default", # Você pode escolher um tema predefinido ou personalizar as cores manualmente.
44
+ button_text="Classificar Imagem", # Personalize o texto do botão.
45
  )
46
 
47
  # Inicie a interface Gradio