Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -55,7 +55,7 @@ def recommend_movies(movie):
|
|
55 |
|
56 |
# Create the Gradio interface
|
57 |
movie_list = movies['title'].tolist()
|
58 |
-
iface = gr.Interface(fn=recommend_movies, inputs=gr.
|
59 |
|
60 |
# Launch the app
|
61 |
iface.launch()
|
|
|
55 |
|
56 |
# Create the Gradio interface
|
57 |
movie_list = movies['title'].tolist()
|
58 |
+
iface = gr.Interface(fn=recommend_movies, inputs=gr.Dropdown(movie_list), outputs="text", title="Movie Recommender", description="Select a movie to get recommendations based on content filtering.")
|
59 |
|
60 |
# Launch the app
|
61 |
iface.launch()
|