Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -27,12 +27,12 @@ def recommend(index):
|
|
27 |
|
28 |
st.set_page_config(page_title='DiscoverCourses', page_icon=':bird:')
|
29 |
st.title('DiscoverCourses')
|
30 |
-
st.write('© 2023 Rushank Goyal. All rights reserved.')
|
31 |
|
32 |
selected_course = st.selectbox('Pick a course',course_title_list)
|
33 |
|
34 |
container = st.container()
|
35 |
-
maincol1, maincol2 = container.columns(
|
36 |
|
37 |
if maincol1.button('Recommend by title'):
|
38 |
output=recommend(np.where((coursedf['ref']+": "+coursedf['title']) == selected_course)[0][0])
|
|
|
27 |
|
28 |
st.set_page_config(page_title='DiscoverCourses', page_icon=':bird:')
|
29 |
st.title('DiscoverCourses')
|
30 |
+
#st.write('© 2023 Rushank Goyal. All rights reserved.')
|
31 |
|
32 |
selected_course = st.selectbox('Pick a course',course_title_list)
|
33 |
|
34 |
container = st.container()
|
35 |
+
maincol1, maincol2 = container.columns(2)
|
36 |
|
37 |
if maincol1.button('Recommend by title'):
|
38 |
output=recommend(np.where((coursedf['ref']+": "+coursedf['title']) == selected_course)[0][0])
|