Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -12,4 +12,7 @@ gradio_app = gr.Interface(
|
|
| 12 |
inputs=gr.Image(label="Select hot dog candidate", sources=['upload', 'webcam'], type="pil"),
|
| 13 |
outputs = [gr.Image(label="Processed Image"), gr.Label(label="Result", num_top_classes=2)],
|
| 14 |
title="Hot Dog? Or Not?",
|
| 15 |
-
)
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
inputs=gr.Image(label="Select hot dog candidate", sources=['upload', 'webcam'], type="pil"),
|
| 13 |
outputs = [gr.Image(label="Processed Image"), gr.Label(label="Result", num_top_classes=2)],
|
| 14 |
title="Hot Dog? Or Not?",
|
| 15 |
+
)
|
| 16 |
+
|
| 17 |
+
if __name__ == "__main__":
|
| 18 |
+
gradio_app.launch()
|