rushankg commited on
Commit
912fc79
·
1 Parent(s): 2815635

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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([4, 1])
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])