rushankg commited on
Commit
1296882
·
1 Parent(s): 81c9cfc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -33,7 +33,7 @@ st.write('')
33
  st.write("Enter DiscoverCourses. Just pick a course and get dozens of recommendations for similar courses based on titles or descriptions. Give it a go! If you have any thoughts on DiscoverCourses (or project ideas or a book recommendation or really anything), shoot me an email at [email protected].")
34
  st.write('')
35
 
36
- st.markdown('<style> a:link {color: white;background-color: transparent;text-decoration: none;}</style>',unsafe_allow_html=True)
37
 
38
  selected_course = st.selectbox('Pick a course from the dropdown (or click on it and start typing to search).',course_title_list)
39
  #st.write("Description: "+coursedf.iloc[np.where((coursedf['ref']+": "+coursedf['title'])==selected_course)[0][0],3])
@@ -67,7 +67,7 @@ if maincol2.button('Discover by description',use_container_width=True):
67
  st.write(coursedf.iloc[index,3]) #Using the new coursedf because it has proper descriptions for each course
68
  link1 = "[ExploreCourses ↗](https://explorecourses.stanford.edu/search?q="+course_id+"+"+result.replace(" ","+")+")"
69
  link2 = "[Carta ↗](https://carta-beta.stanford.edu/results/"+course_id+")"
70
- st.markdown(+link1+" "+link2, unsafe_allow_html=True)
71
  st.divider()
72
 
73
  st.write('© 2023 Rushank Goyal. All rights reserved. Source for the all-MiniLM-L6-v2 model: Wang, Wenhui, et al. "MiniLM: Deep Self-Attention Distillation for Task-Agnostic Compression of Pre-Trained Transformers." arXiv, 25 Feb. 2020, doi:10.48550/arXiv.2002.10957.')
 
33
  st.write("Enter DiscoverCourses. Just pick a course and get dozens of recommendations for similar courses based on titles or descriptions. Give it a go! If you have any thoughts on DiscoverCourses (or project ideas or a book recommendation or really anything), shoot me an email at [email protected].")
34
  st.write('')
35
 
36
+ st.markdown('<style> a:link {color: white;background-color: transparent;text-decoration: underline;}</style>',unsafe_allow_html=True)
37
 
38
  selected_course = st.selectbox('Pick a course from the dropdown (or click on it and start typing to search).',course_title_list)
39
  #st.write("Description: "+coursedf.iloc[np.where((coursedf['ref']+": "+coursedf['title'])==selected_course)[0][0],3])
 
67
  st.write(coursedf.iloc[index,3]) #Using the new coursedf because it has proper descriptions for each course
68
  link1 = "[ExploreCourses ↗](https://explorecourses.stanford.edu/search?q="+course_id+"+"+result.replace(" ","+")+")"
69
  link2 = "[Carta ↗](https://carta-beta.stanford.edu/results/"+course_id+")"
70
+ st.markdown(link1+" "+link2, unsafe_allow_html=True)
71
  st.divider()
72
 
73
  st.write('© 2023 Rushank Goyal. All rights reserved. Source for the all-MiniLM-L6-v2 model: Wang, Wenhui, et al. "MiniLM: Deep Self-Attention Distillation for Task-Agnostic Compression of Pre-Trained Transformers." arXiv, 25 Feb. 2020, doi:10.48550/arXiv.2002.10957.')