Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -26,10 +26,11 @@ def recommend(index):
|
|
26 |
return list(sorted_final.keys())
|
27 |
|
28 |
st.set_page_config(page_title='DiscoverCourses', page_icon=':bird:')
|
29 |
-
st.
|
|
|
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)
|
@@ -50,7 +51,8 @@ if maincol2.button('Recommend by description'):
|
|
50 |
index_new=np.where((coursedf['ref']+": "+coursedf['title']) == selected_course)[0][0]
|
51 |
rec_list=course_df_new.iloc[index_new,2]
|
52 |
for result in rec_list:
|
53 |
-
|
|
|
54 |
st.subheader(course_id+": "+result)
|
55 |
with st.expander("See description"):
|
56 |
st.write(course_df_new.iloc[index_new,3]) #Using the new coursedf because it has proper descriptions for each course
|
|
|
26 |
return list(sorted_final.keys())
|
27 |
|
28 |
st.set_page_config(page_title='DiscoverCourses', page_icon=':bird:')
|
29 |
+
st.header('DiscoverCourses')
|
30 |
+
st.markdown('#')
|
31 |
#st.write('© 2023 Rushank Goyal. All rights reserved.')
|
32 |
|
33 |
+
selected_course = st.selectbox('Pick a course from the dropdown:',course_title_list)
|
34 |
|
35 |
container = st.container()
|
36 |
maincol1, maincol2 = container.columns(2)
|
|
|
51 |
index_new=np.where((coursedf['ref']+": "+coursedf['title']) == selected_course)[0][0]
|
52 |
rec_list=course_df_new.iloc[index_new,2]
|
53 |
for result in rec_list:
|
54 |
+
index=np.where(coursedf['title'] == result)[0][0]
|
55 |
+
course_id=coursedf.iloc[index,0]
|
56 |
st.subheader(course_id+": "+result)
|
57 |
with st.expander("See description"):
|
58 |
st.write(course_df_new.iloc[index_new,3]) #Using the new coursedf because it has proper descriptions for each course
|