Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -69,7 +69,8 @@ with gr.Blocks() as iface:
|
|
69 |
# gr.Markdown("## Recommendation - Content-Based Filtering")
|
70 |
gr.Interface(fn=recommend_movies,
|
71 |
inputs=gr.Dropdown(movie_list, label=f"Select a Movie (Total movies: {total_movies}, randomly list {input_count} for demo purpose.)"),
|
72 |
-
outputs=
|
|
|
73 |
title="Movie Recommender - Content-Based Filtering",
|
74 |
description="Select a movie to get recommendations based on content filtering.")
|
75 |
|
|
|
69 |
# gr.Markdown("## Recommendation - Content-Based Filtering")
|
70 |
gr.Interface(fn=recommend_movies,
|
71 |
inputs=gr.Dropdown(movie_list, label=f"Select a Movie (Total movies: {total_movies}, randomly list {input_count} for demo purpose.)"),
|
72 |
+
outputs="textbox",
|
73 |
+
output_label="Recommended Movies:",
|
74 |
title="Movie Recommender - Content-Based Filtering",
|
75 |
description="Select a movie to get recommendations based on content filtering.")
|
76 |
|