jonjhiggins commited on
Commit
ce13163
1 Parent(s): 3a22773

Remove default arguments from Gradio interface launch

Browse files

Looking at https://gradio.app/docs/#interface-launch Hugging Face appears to set both enable_queue and cache_examples to True by default

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -60,4 +60,4 @@ examples = [
60
  ["lions.jpg"]
61
  ]
62
 
63
- gr.Interface(depth, inputs, outputs, title=title, description=description, article=article, examples=examples, analytics_enabled=False).launch(enable_queue=True,cache_examples=True)
 
60
  ["lions.jpg"]
61
  ]
62
 
63
+ gr.Interface(depth, inputs, outputs, title=title, description=description, article=article, examples=examples, analytics_enabled=False).launch()