Resume Matcher
Upload your resume(s) and paste the job description to find the best match!
Upload Resumes (PDF or DOCX):
Job Description:
Match Job Description
{% if message %}
{{ message }}
{% endif %} {% if top_resumes %}
Top Match Resumes:
{% for resume, score in zip(top_resumes, similarity_scores) %}
{{ resume }}
- Similarity Score:
{{ score }}%
{% if score < 50 %}
(Consider revising your resume for a better match)
{% endif %}
{% endfor %}
{% endif %} {% if tfidf_matrix %}
TF-IDF Matrix
Features
{% for doc_num in range(tfidf_matrix|length) %}
Doc {{ doc_num }}
{% endfor %}
{% for feature_idx, feature_name in enumerate(feature_names) %}
{{ feature_name }}
{% for doc_num in range(tfidf_matrix|length) %}
{{ tfidf_matrix[doc_num][feature_idx]|round(2) }}
{% endfor %}
{% endfor %}
{% endif %}