Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -38,8 +38,8 @@ if container.button('Recommend by title'):
|
|
38 |
index=np.where(coursedf['title'] == result)[0][0]
|
39 |
course_id=coursedf.iloc[index,0]
|
40 |
st.subheader(course_id+": "+result)
|
41 |
-
st.write(course_df_new.iloc[index,3]) #Using the new coursedf because it has proper descriptions for each course
|
42 |
-
link = "[ExploreCourses](https://explorecourses.stanford.edu/search?q="+course_id+"+"+result+")"
|
43 |
st.markdown(link, unsafe_allow_html=True)
|
44 |
st.divider()
|
45 |
|
@@ -49,7 +49,7 @@ if container.button('Recommend by description'):
|
|
49 |
for result in rec_list:
|
50 |
course_id=coursedf.iloc[index_new,0]
|
51 |
st.subheader(course_id+": "+result)
|
52 |
-
st.write(course_df_new.iloc[index_new,3]) #Using the new coursedf because it has proper descriptions for each course
|
53 |
-
link = "[ExploreCourses](https://explorecourses.stanford.edu/search?q="+course_id+"+"+result+")"
|
54 |
st.markdown(link, unsafe_allow_html=True)
|
55 |
st.divider()
|
|
|
38 |
index=np.where(coursedf['title'] == result)[0][0]
|
39 |
course_id=coursedf.iloc[index,0]
|
40 |
st.subheader(course_id+": "+result)
|
41 |
+
#st.write(course_df_new.iloc[index,3]) #Using the new coursedf because it has proper descriptions for each course
|
42 |
+
link = "[ExploreCourses](https://explorecourses.stanford.edu/search?q="+course_id+"+"+result.replace(" ","+")+")"
|
43 |
st.markdown(link, unsafe_allow_html=True)
|
44 |
st.divider()
|
45 |
|
|
|
49 |
for result in rec_list:
|
50 |
course_id=coursedf.iloc[index_new,0]
|
51 |
st.subheader(course_id+": "+result)
|
52 |
+
#st.write(course_df_new.iloc[index_new,3]) #Using the new coursedf because it has proper descriptions for each course
|
53 |
+
link = "[ExploreCourses](https://explorecourses.stanford.edu/search?q="+course_id+"+"+result.replace(" ","+")+")"
|
54 |
st.markdown(link, unsafe_allow_html=True)
|
55 |
st.divider()
|