fix: launch without share
Browse files
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")
|
| 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()
|