U-Sahaj commited on
Commit
de49f59
·
1 Parent(s): 089ee44

fix: launch without share

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -18,5 +18,5 @@ def predict(movieId):
18
 
19
  title = "Movie Ratings"
20
  description = "Given a movie ID, the predicted rating is displayed"
21
- iface = gr.Interface(fn=predict, inputs="number", outputs="number").launch(share=True)
22
  iface.launch()
 
18
 
19
  title = "Movie Ratings"
20
  description = "Given a movie ID, the predicted rating is displayed"
21
+ iface = gr.Interface(fn=predict, inputs="number", outputs="number")
22
  iface.launch()