annanau commited on
Commit
07c42e2
·
verified ·
1 Parent(s): 7da39d2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
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()],