Update app.py
Browse files
app.py
CHANGED
@@ -44,7 +44,7 @@ with st.sidebar:
|
|
44 |
''')
|
45 |
|
46 |
|
47 |
-
model = SentenceTransformer("all-
|
48 |
st.title("AI Resume Analysis based on Sentence Similarity App")
|
49 |
st.divider()
|
50 |
job_desc = st.text_area("Paste the job description and then press Ctrl + Enter", key="job_desc")
|
@@ -101,7 +101,7 @@ for i in range(1, 51): # Looping for 50 applicants
|
|
101 |
|
102 |
st.divider()
|
103 |
st.subheader("Visualise", divider="blue")
|
104 |
-
model = SentenceTransformer("all-
|
105 |
|
106 |
if 'upload_count' not in st.session_state:
|
107 |
st.session_state['upload_count'] = 0
|
|
|
44 |
''')
|
45 |
|
46 |
|
47 |
+
model = SentenceTransformer("all-MiniLM-L6-v2")
|
48 |
st.title("AI Resume Analysis based on Sentence Similarity App")
|
49 |
st.divider()
|
50 |
job_desc = st.text_area("Paste the job description and then press Ctrl + Enter", key="job_desc")
|
|
|
101 |
|
102 |
st.divider()
|
103 |
st.subheader("Visualise", divider="blue")
|
104 |
+
model = SentenceTransformer("all-MiniLM-L6-v2")
|
105 |
|
106 |
if 'upload_count' not in st.session_state:
|
107 |
st.session_state['upload_count'] = 0
|