Apex-X commited on
Commit
fa4d0f7
·
verified ·
1 Parent(s): a833b50

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -1
app.py CHANGED
@@ -48,5 +48,13 @@ def predict_fn(image):
48
 
49
  # Gradio application interface
50
 
51
- gr.Interface(fn=predict_fn, inputs="paint", outputs="label", title="DoodleDecoder", description="Draw something from: Car, House, Wine bottle, Chair, Table, Tree, Camera, Fish, Rain, Clock, Hat", interpretation='default', article="Draw large with thick stroke.").launch()
 
 
 
 
 
 
 
 
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