wendys-llc commited on
Commit
022cdd4
·
1 Parent(s): fc9b787

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -1,3 +1,7 @@
1
  import gradio as gr
 
2
 
3
- gr.Interface.load("models/wendys-llc/amber-mines").launch()
 
 
 
 
1
  import gradio as gr
2
+ import glob
3
 
4
+ example_images = glob.glob('example/*.png')
5
+
6
+ # Forcing edit
7
+ gr.Interface.load("models/wendys-llc/amber-mines", examples=example_images, cache_examples=True).launch()