jchen8000 commited on
Commit
d2c0601
·
verified ·
1 Parent(s): 30059ee

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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.inputs.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()
 
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()