Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -37,12 +37,17 @@ def classify_image(inp):
|
|
37 |
|
38 |
return predicted_class
|
39 |
|
40 |
-
#
|
41 |
iface = gr.Interface(
|
42 |
fn=classify_image,
|
43 |
inputs=gr.inputs.Image(shape=(192, 256)),
|
44 |
-
outputs="
|
|
|
|
|
|
|
|
|
|
|
45 |
)
|
46 |
|
47 |
# Inicie a interface Gradio
|
48 |
-
iface.launch(
|
|
|
37 |
|
38 |
return predicted_class
|
39 |
|
40 |
+
# Formate a interface Gradio com HTML
|
41 |
iface = gr.Interface(
|
42 |
fn=classify_image,
|
43 |
inputs=gr.inputs.Image(shape=(192, 256)),
|
44 |
+
outputs=gr.outputs.HTML("<h2>Resultado da Classificação</h2><p><strong>Categoria Predita:</strong> {}</p>"), # Saída formatada com HTML
|
45 |
+
live=True,
|
46 |
+
title="Classificador de Imagens",
|
47 |
+
description="Faça o upload de uma imagem e classifique sua categoria.",
|
48 |
+
allow_screenshot=False, # Desativar a captura de tela
|
49 |
+
allow_flagging=False, # Desativar a opção de sinalizar
|
50 |
)
|
51 |
|
52 |
# Inicie a interface Gradio
|
53 |
+
iface.launch()
|