Spaces:
Runtime error
Runtime error
Jim Dowling
commited on
Commit
β’
147d8bb
1
Parent(s):
b4865be
fix
Browse files
app.py
CHANGED
@@ -85,7 +85,7 @@ def handle_interaction(user_id, video_id, interactions_fg, query_model_deploymen
|
|
85 |
|
86 |
# Main Streamlit application logic
|
87 |
def main():
|
88 |
-
st.title('π¬
|
89 |
# Initialize or re-use existing deployments
|
90 |
if 'deployments_initialized' not in st.session_state:
|
91 |
st.session_state.interactions_fg, st.session_state.videos_fg, st.session_state.ranking_deployment, st.session_state.query_model_deployment = get_deployments()
|
@@ -94,7 +94,7 @@ def main():
|
|
94 |
# User selection box
|
95 |
user_id_option = st.selectbox(
|
96 |
'For which user?',
|
97 |
-
('
|
98 |
key='user_select'
|
99 |
)
|
100 |
|
|
|
85 |
|
86 |
# Main Streamlit application logic
|
87 |
def main():
|
88 |
+
st.title('π¬ Video Recommender')
|
89 |
# Initialize or re-use existing deployments
|
90 |
if 'deployments_initialized' not in st.session_state:
|
91 |
st.session_state.interactions_fg, st.session_state.videos_fg, st.session_state.ranking_deployment, st.session_state.query_model_deployment = get_deployments()
|
|
|
94 |
# User selection box
|
95 |
user_id_option = st.selectbox(
|
96 |
'For which user?',
|
97 |
+
('CJ730Y', 'AL707G', 'WS920J', 'YP322C', 'HE156H',),
|
98 |
key='user_select'
|
99 |
)
|
100 |
|