Update app.py
Browse files
app.py
CHANGED
|
@@ -4,6 +4,7 @@ from sklearn.metrics.pairwise import cosine_similarity
|
|
| 4 |
from keyphrasetransformer import KeyPhraseTransformer
|
| 5 |
from wordcloud import WordCloud
|
| 6 |
import matplotlib.pyplot as plt
|
|
|
|
| 7 |
|
| 8 |
kp = KeyPhraseTransformer()
|
| 9 |
|
|
@@ -63,3 +64,4 @@ if st.button("Calculate Match Score"):
|
|
| 63 |
st.write(list(missing_keywords))
|
| 64 |
else:
|
| 65 |
st.write("Please enter both the job description and resume.", )
|
|
|
|
|
|
| 4 |
from keyphrasetransformer import KeyPhraseTransformer
|
| 5 |
from wordcloud import WordCloud
|
| 6 |
import matplotlib.pyplot as plt
|
| 7 |
+
import evaluate
|
| 8 |
|
| 9 |
kp = KeyPhraseTransformer()
|
| 10 |
|
|
|
|
| 64 |
st.write(list(missing_keywords))
|
| 65 |
else:
|
| 66 |
st.write("Please enter both the job description and resume.", )
|
| 67 |
+
accuracy = evaluate.load("accuracy")
|