Spaces:
Runtime error
Runtime error
Update README.md
Browse files
README.md
CHANGED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: AI Resume Screening System
|
| 3 |
+
emoji: 🧠
|
| 4 |
+
colorFrom: blue
|
| 5 |
+
colorTo: purple
|
| 6 |
+
sdk: gradio
|
| 7 |
+
sdk_version: 4.44.1
|
| 8 |
+
python_version: '3.10'
|
| 9 |
+
app_file: app.py
|
| 10 |
+
pinned: false
|
| 11 |
+
license: ecl-2.0
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# AI Resume Screening System
|
| 15 |
+
|
| 16 |
+
This project provides an AI-powered resume screening tool.
|
| 17 |
+
|
| 18 |
+
The system analyzes uploaded resumes and evaluates how well they match a given job title and experience level.
|
| 19 |
+
|
| 20 |
+
## Features
|
| 21 |
+
|
| 22 |
+
- Upload **PDF or DOCX resumes**
|
| 23 |
+
- Extracts resume text automatically
|
| 24 |
+
- Computes **semantic similarity** between resume and job title
|
| 25 |
+
- Performs **skill matching**
|
| 26 |
+
- Considers **job level**:
|
| 27 |
+
- Entry
|
| 28 |
+
- Junior
|
| 29 |
+
- Mid
|
| 30 |
+
- Senior
|
| 31 |
+
- Generates **accept/reject decision with analytics**
|
| 32 |
+
- Logs screening results to a CSV file
|
| 33 |
+
- Deletes resumes after processing for privacy
|
| 34 |
+
|
| 35 |
+
## Usage
|
| 36 |
+
|
| 37 |
+
1. Upload a resume
|
| 38 |
+
2. Enter the job title
|
| 39 |
+
3. Select the job level
|
| 40 |
+
4. View the screening results
|
| 41 |
+
|
| 42 |
+
The system returns:
|
| 43 |
+
|
| 44 |
+
- similarity score
|
| 45 |
+
- skill match score
|
| 46 |
+
- final hiring decision
|