Jfink09 commited on
Commit
a91a0aa
·
1 Parent(s): cbe9e87

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -4
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
  """)