Update app.py
Browse files
app.py
CHANGED
@@ -1,8 +1,12 @@
|
|
1 |
import streamlit as st
|
2 |
import difflib
|
|
|
3 |
|
4 |
# Assuming you have 'lpi_df' and 'similarity' defined before this point
|
5 |
|
|
|
|
|
|
|
6 |
st.title('Course Recommendation App')
|
7 |
|
8 |
user_input = st.text_input('Enter What You Want to Learn : ')
|
|
|
1 |
import streamlit as st
|
2 |
import difflib
|
3 |
+
import pandas as pd
|
4 |
|
5 |
# Assuming you have 'lpi_df' and 'similarity' defined before this point
|
6 |
|
7 |
+
lpi_df = pd.read_csv('https://huggingface.co/spaces/kmrmanish/LPI_Course_Recommendation_System/blob/f273238053ba214e906f36c6e31c047cf5ed6011/Learning_Pathway_Index.csv')
|
8 |
+
|
9 |
+
|
10 |
st.title('Course Recommendation App')
|
11 |
|
12 |
user_input = st.text_input('Enter What You Want to Learn : ')
|