Spaces:
Running
Running
Upload app.py
Browse files
app.py
CHANGED
@@ -77,10 +77,7 @@ demo = gr.Interface(fn=predict, # mapping function from input to output
|
|
77 |
outputs=[gr.Label(num_top_classes=10, label="Predictions"), # what are the outputs?
|
78 |
gr.Number(label="Prediction time (s)")], # our fn has two outputs, therefore we have two outputs
|
79 |
# Create examples list from "examples/" directory
|
80 |
-
examples=example_list,
|
81 |
-
title=title,
|
82 |
-
description=description,
|
83 |
-
article=article,
|
84 |
css="""
|
85 |
.gradio-container {background-color: #000029}
|
86 |
""")
|
|
|
77 |
outputs=[gr.Label(num_top_classes=10, label="Predictions"), # what are the outputs?
|
78 |
gr.Number(label="Prediction time (s)")], # our fn has two outputs, therefore we have two outputs
|
79 |
# Create examples list from "examples/" directory
|
80 |
+
examples=example_list,
|
|
|
|
|
|
|
81 |
css="""
|
82 |
.gradio-container {background-color: #000029}
|
83 |
""")
|