davidrd123 commited on
Commit
82539e2
1 Parent(s): af86b0e

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -16,5 +16,5 @@ gr.Interface(fn=predict,
16
  inputs=gr.inputs.Image(shape=((512,512))),
17
  outputs=gr.outputs.Label(num_top_classes=5),
18
  title = "Art Movements",
19
- examples = examples,
20
  description= "What Art Movement Matches the Image Best? Expressionism | Impressionism | Hudson River School | Ukiyo-e | Pre-Raphaelite").launch(share=True, enable_queue=True)
 
16
  inputs=gr.inputs.Image(shape=((512,512))),
17
  outputs=gr.outputs.Label(num_top_classes=5),
18
  title = "Art Movements",
19
+ examples = [f"Image{n:02d}" for n in range(10)],
20
  description= "What Art Movement Matches the Image Best? Expressionism | Impressionism | Hudson River School | Ukiyo-e | Pre-Raphaelite").launch(share=True, enable_queue=True)