Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -222,15 +222,14 @@ with gr.Blocks(theme=custom_theme, css=custom_css, title="Movie Recommender") as
|
|
| 222 |
scale=1
|
| 223 |
)
|
| 224 |
|
| 225 |
-
|
| 226 |
with gr.Row():
|
| 227 |
with gr.Column(scale=1):
|
| 228 |
-
|
| 229 |
-
|
| 230 |
-
|
| 231 |
-
|
| 232 |
-
|
| 233 |
-
)
|
| 234 |
|
| 235 |
# Bind events
|
| 236 |
submit_btn.click(
|
|
|
|
| 222 |
scale=1
|
| 223 |
)
|
| 224 |
|
| 225 |
+
# Output section - BIG output box
|
| 226 |
with gr.Row():
|
| 227 |
with gr.Column(scale=1):
|
| 228 |
+
output_results = gr.Textbox(
|
| 229 |
+
label="π― Recommended Movies",
|
| 230 |
+
lines=10,
|
| 231 |
+
interactive=False
|
| 232 |
+
)
|
|
|
|
| 233 |
|
| 234 |
# Bind events
|
| 235 |
submit_btn.click(
|