Skip to content

Commit e8d075d

Browse files
Added requirements.txt and main.py
1 parent 2696fc4 commit e8d075d

File tree

3 files changed

+27
-1
lines changed

3 files changed

+27
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# AI-Powered-Resume-Analyzer
2-
An AI-powered tool that analyzes resumes and gives insights on skills, experience, and job match.
2+
Analyze resumes intelligently using Natural Language Processing (NLP) and AI.

main.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
print("Welcome to AI-Powered Resume Analyzer!")
2+
import nltk
3+
import spacy
4+
5+
print("Welcome to AI-Powered Resume Analyzer!")
6+
7+
# Load English tokenizer, POS tagger, parser, NER, and word vectors
8+
nlp = spacy.load('en_core_web_sm')
9+
10+
# Example Resume Text
11+
resume_text = """
12+
John Doe
13+
Experienced Data Scientist with 5+ years in machine learning, Python programming, and data analysis.
14+
"""
15+
16+
# Process the text
17+
doc = nlp(resume_text)
18+
19+
# Extract Entities (like skills, names, etc.)
20+
for ent in doc.ents:
21+
print(ent.text, ent.label_)
22+

requirement.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
pandas
2+
scikit-learn
3+
spacy
4+
nltk

0 commit comments

Comments
 (0)