Update app.py
Browse files
app.py
CHANGED
|
@@ -45,6 +45,10 @@ if st.button("Calculate Match Score"):
|
|
| 45 |
# Find missing keywords in rp with respect to jp
|
| 46 |
|
| 47 |
missing_keywords = set(jp) - set(rp)
|
|
|
|
|
|
|
|
|
|
|
|
|
| 48 |
|
| 49 |
# st.write(f"The match score is: {score}", )
|
| 50 |
st.write("The match score is:")
|
|
|
|
| 45 |
# Find missing keywords in rp with respect to jp
|
| 46 |
|
| 47 |
missing_keywords = set(jp) - set(rp)
|
| 48 |
+
|
| 49 |
+
# Generate word clouds for JD and Resume
|
| 50 |
+
generate_wordcloud(' '.join(jp), 'Word Cloud for JD Keywords')
|
| 51 |
+
generate_wordcloud(' '.join(rp), 'Word Cloud for Resume Keywords')
|
| 52 |
|
| 53 |
# st.write(f"The match score is: {score}", )
|
| 54 |
st.write("The match score is:")
|