Update app.py
Browse files
app.py
CHANGED
@@ -48,5 +48,13 @@ def predict_fn(image):
|
|
48 |
|
49 |
# Gradio application interface
|
50 |
|
51 |
-
gr.Interface(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
|
|
|
48 |
|
49 |
# Gradio application interface
|
50 |
|
51 |
+
gr.Interface(
|
52 |
+
fn=predict_fn,
|
53 |
+
inputs="paint",
|
54 |
+
outputs="label",
|
55 |
+
title="DoodleDecoder",
|
56 |
+
description="Draw something from: Car, House, Wine bottle, Chair, Table, Tree, Camera, Fish, Rain, Clock, Hat",
|
57 |
+
interpretation='default',
|
58 |
+
article="Draw large with thick stroke."
|
59 |
+
).launch()
|
60 |
|