rushankg commited on
Commit
bd698d1
·
1 Parent(s): d9a6e1a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -28,10 +28,11 @@ def recommend(index):
28
  st.set_page_config(page_title='DiscoverCourses', page_icon=':bird:')
29
  st.header('DiscoverCourses')
30
  st.write('')
31
- st.write("Do you like the tech + social impact focus of CS51? Excited by film-centered courses like FILMEDIA245B? Saw a cool study-abroad course (OSPISTAN76) and want similar on-campus options? Enter DiscoverCourses. Just pick a course and get dozens of recommendations based on its title or description.")
32
 
33
  selected_course = st.selectbox('Pick a course from the dropdown (or click on it and start typing to search).',course_title_list)
34
- st.write("Description: "+coursedf.iloc[np.where((coursedf['ref']+": "+coursedf['title'])==selected_course)[0][0],3])
 
35
 
36
  container = st.container()
37
  maincol1, maincol2 = container.columns(2)
 
28
  st.set_page_config(page_title='DiscoverCourses', page_icon=':bird:')
29
  st.header('DiscoverCourses')
30
  st.write('')
31
+ st.write("Do you like the tech + social impact focus of CS51? Excited by film-centered courses like FILMEDIA245B? Saw a cool study-abroad course (OSPISTAN76) and want to study that topic on campus? Enter DiscoverCourses. Just pick a course and get dozens of similarly interesting recommendations based on its title or description.")
32
 
33
  selected_course = st.selectbox('Pick a course from the dropdown (or click on it and start typing to search).',course_title_list)
34
+ #st.write("Description: "+coursedf.iloc[np.where((coursedf['ref']+": "+coursedf['title'])==selected_course)[0][0],3])
35
+ st.write('')
36
 
37
  container = st.container()
38
  maincol1, maincol2 = container.columns(2)