searchone commited on
Commit
ef3b398
·
1 Parent(s): 3f528a4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -15,6 +15,7 @@ description = "A pet breed classifier trained on the Oxford Pets dataset with fa
15
  article="<p style='text-align: center'><a href='https://tmabraham.github.io/blog/gradio_hf_spaces_tutorial' target='_blank'>Instructions on Tanishq's Blog post</a></p>"
16
  examples = ['grumpy.jpg', 'dogcat.jpg', 'boba.jpg']
17
  interpretation='default'
 
18
  enable_queue=True
19
 
20
  gr.Interface(
@@ -26,4 +27,5 @@ gr.Interface(
26
  article=article,
27
  examples=examples,
28
  interpretation=interpretation,
 
29
  enable_queue=enable_queue).launch()
 
15
  article="<p style='text-align: center'><a href='https://tmabraham.github.io/blog/gradio_hf_spaces_tutorial' target='_blank'>Instructions on Tanishq's Blog post</a></p>"
16
  examples = ['grumpy.jpg', 'dogcat.jpg', 'boba.jpg']
17
  interpretation='default'
18
+ live=True
19
  enable_queue=True
20
 
21
  gr.Interface(
 
27
  article=article,
28
  examples=examples,
29
  interpretation=interpretation,
30
+ live=live,
31
  enable_queue=enable_queue).launch()