Natwar commited on
Commit
b184a4a
Β·
verified Β·
1 Parent(s): ba000ea

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +73 -7
README.md CHANGED
@@ -1,14 +1,80 @@
1
  ---
2
- title: ResumeJobMatcher
3
- emoji: πŸ’»
4
- colorFrom: indigo
5
- colorTo: green
6
  sdk: gradio
7
- sdk_version: 5.43.1
8
  app_file: app.py
9
  pinned: false
10
  license: mit
11
- short_description: 'An AI-powered tool to analyze resumes against JD '
12
  ---
13
 
14
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ title: Standalone Resume & Job Matcher
3
+ emoji: πŸš€
4
+ colorFrom: purple
5
+ colorTo: indigo
6
  sdk: gradio
7
+ sdk_version: 4.31.0
8
  app_file: app.py
9
  pinned: false
10
  license: mit
 
11
  ---
12
 
13
+ # πŸš€ Standalone Resume & Job Matcher
14
+
15
+ This Space hosts a powerful, zero-dependency tool for comprehensive resume analysis and job description matching. It's designed to help both **job seekers** optimize their applications and **recruiters** quickly assess candidate suitability. The entire application runs from a single Python file with no external dependencies, making it incredibly fast and easy to use.
16
+
17
+ ## ✨ Key Features
18
+
19
+ - **🎯 Smart Role Prediction**: Paste a resume and the AI will predict the most suitable job role from a database of over 20 distinct positions, complete with a confidence score.
20
+ - **πŸ“Š Detailed Skill Gap Analysis**: Identifies which required skills are present and which are missing for a predicted role, helping you pinpoint areas for improvement.
21
+ - **πŸ“‹ Resume vs. Job Description Matching**: Get a detailed compatibility score by comparing a resume directly against any job description.
22
+ - **πŸ’‘ Actionable Career Roadmap**: Receive personalized, actionable advice with a short-term (1-3 months) and long-term (1-2 years) career development plan.
23
+ - **πŸ’° Salary & Experience Insights**: The internal database includes typical salary ranges and experience levels for each job role.
24
+ - **βš™οΈ Zero Dependencies**: The entire logic for parsing, scoring, and analysis is self-contained. No API keys or external libraries (beyond Gradio) are needed.
25
+
26
+ ---
27
+
28
+ ## 🧐 How to Use
29
+
30
+ The application is split into two main tabs for different use cases.
31
+
32
+ ### 1. Profile Analysis
33
+
34
+ This tab is perfect for getting a deep understanding of a candidate's profile or your own resume.
35
+ 1. Navigate to the **"🎯 Profile Analysis"** tab.
36
+ 2. Paste the full text of a resume or professional profile into the input box.
37
+ 3. Click the **"πŸ” Analyze Profile"** button.
38
+ 4. Explore the results in the output tabs:
39
+ * **Role Classification**: See the top 5 predicted roles with match scores.
40
+ * **Skill Gap Analysis**: View matching skills, missing skills, and learning recommendations.
41
+ * **Career Roadmap**: Get a visual guide for your next career steps.
42
+
43
+ ### 2. Profile vs. Job Description Matching
44
+
45
+ This tab is ideal for checking how well a resume fits a specific job opening.
46
+ 1. Navigate to the **"πŸ“‹ Profile vs. Job Description"** tab.
47
+ 2. Paste the candidate's resume text in the left box.
48
+ 3. Paste the target job description in the right box.
49
+ 4. Click the **"πŸ” Analyze Match Score"** button.
50
+ 5. Review the outputs:
51
+ * **Match Score & Analysis**: A JSON output with the overall score and breakdown.
52
+ * **Detailed Breakdown**: A color-coded visual report showing the match level, matching vs. missing skills, and key recommendations.
53
+
54
+ ---
55
+
56
+ ## πŸ› οΈ How It Works
57
+
58
+ This tool uses a multi-faceted approach to analyze text without relying on large language models or external APIs:
59
+
60
+ 1. **Text Parsing**: A rule-based parser segments the resume into logical sections like `Education`, `Experience`, and `Skills`.
61
+ 2. **Skill Extraction**: The text is scanned against a comprehensive internal database of over 200 technical, business, and soft skills.
62
+ 3. **Scoring Algorithm**: Role matching is determined by a weighted score combining three factors:
63
+ * **Skill Match Score (40%)**: The percentage of required skills found in the profile.
64
+ * **Keyword Score (30%)**: The frequency of role-specific keywords (e.g., "M&A", "agile", "SEO") in the text.
65
+ * **Text Similarity Score (30%)**: A TF-IDF-inspired cosine similarity calculation between the profile text and the role's description.
66
+
67
+ ---
68
+
69
+ ## πŸš€ How to Deploy Your Own
70
+
71
+ You can easily run this application in your own Hugging Face Space.
72
+
73
+ 1. **Create a Space**: Click the "Create new Space" button on Hugging Face.
74
+ 2. **Configure**: Give it a name, select "Gradio" as the SDK, and choose a free CPU resource.
75
+ 3. **Add Files**:
76
+ * Create a file named `app.py` and paste the Python code into it.
77
+ * (Optional) Create a `requirements.txt` file and add one line: `gradio`.
78
+ * (Optional) Create this `README.md` file to give your space a professional look.
79
+
80
+ That's it! The Space will build and launch your application automatically.