Update app.py
Browse files
app.py
CHANGED
@@ -31,6 +31,8 @@ example_images = [
|
|
31 |
|
32 |
# Gradio interface
|
33 |
demo = gr.Interface(
|
|
|
|
|
34 |
fn=classify_image,
|
35 |
inputs=gr.Image(type="pil"),
|
36 |
outputs=[gr.Label(num_top_classes=len(class_labels)), gr.Number()],
|
|
|
31 |
|
32 |
# Gradio interface
|
33 |
demo = gr.Interface(
|
34 |
+
title="Stage of Human Decay Classification",
|
35 |
+
description = "Predict the stage of decay of a corpse.",
|
36 |
fn=classify_image,
|
37 |
inputs=gr.Image(type="pil"),
|
38 |
outputs=[gr.Label(num_top_classes=len(class_labels)), gr.Number()],
|