Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -57,9 +57,6 @@ def predict_fn(image):
|
|
57 |
return class_name
|
58 |
|
59 |
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
import gradio as gr
|
64 |
-
|
65 |
-
gr.Interface(fn=predict_fn, inputs="paint", outputs="label", title="DoodleDecoder", interpretation='default').launch()
|
|
|
57 |
return class_name
|
58 |
|
59 |
|
60 |
+
# application interface:
|
61 |
+
import gradio as gr
|
62 |
+
gr.Interface(fn=predict_fn, inputs="paint", outputs="label", title="DoodleDecoder", interpretation='default').launch()
|
|
|
|
|
|