Spaces:
Runtime error
Runtime error
0.0.1 Canary-Releasing code for a second version. (#39)
Browse files* 001 remove unnecessary images
* 002 Updated the readme
* Removed all the screenshots
* Alpha-001-Initial-changes
* 001-Added Scripts to load data.
* 002 WIP for preprocessing
* 005 Functionable preprocessing pipe
* 006 Classes are complete
* 007 Preprocess, json parsing pipeline is done π
* 008 Preprocessing to JSON is complete. π
* 009 Working on Streamlit app
* 010-Steamlit-app + data-viz is complete
* 011- Updated Git Ignore
* 012 - Code Cleanup Phase 01
* 012 - Code Cleanup Phase 02
* 014 - Code Cleanup Phase 02
* 015 Code cleanup phase 02
* 016 Code Cleanup Phase 02
* 017 Added Header Image
* 018 Updated the Readme.
This view is limited to 50 files because it contains too many changes. Β See raw diff
- .gitignore +8 -0
- Data/Resumes/Amruta B.pdf β Assets/img/header_image.jpg +2 -2
- Cleaner.py +0 -55
- Data/JobDesc/Backend Developer.docx +0 -0
- Data/JobDesc/Billing cum Logistics Manager.docx +0 -0
- Data/JobDesc/Data Scientist.docx +0 -0
- Data/JobDesc/Director of Engineering.docx +0 -0
- Data/JobDesc/Global Industry Content Manager.docx +0 -0
- Data/JobDesc/HTML Developer.docx +0 -0
- Data/JobDesc/IT Project Manager.docx +0 -0
- Data/JobDesc/Lead Technical Program Manager.docx +0 -0
- Data/JobDesc/Primary English Teacher.docx +0 -0
- Data/JobDesc/Revenue Reporting Data Analyst.docx +0 -0
- Data/JobDesc/Senior Product Manager.docx +0 -0
- Data/JobDesc/Senior Software Developer.docx +0 -0
- Data/JobDesc/Web Developer.docx +0 -0
- Data/JobDesc/Web_dev_job.docx +0 -0
- Data/Processed/Job-Desc-37a376db-55f8-476b-a165-81758187b9a8.json +321 -0
- Data/Processed/Job-Desc-a4f06ccb-8d5a-4d0b-9f02-3ba6d686472e.json +430 -0
- Data/Processed/Resume-d531571e-e4fa-45eb-ab6a-267cdeb6647e.json +321 -0
- Data/Processed/Resume-e871fd8d-2097-4804-aa34-004397005e29.json +465 -0
- Data/Raw/job_1.txt +28 -0
- Data/Raw/job_2.txt +25 -0
- Data/{Resumes/Nandagopal.pdf β Raw/job_desc_1.pdf} +2 -2
- Images/logo.png β Data/Raw/job_desc_2.pdf +2 -2
- Images/rm_logo.png β Data/Raw/resume_1.pdf +2 -2
- Data/Resumes/ABHAY RAJ DWIVEDI.docx +0 -0
- Data/Resumes/ADRYJA GHOSH.docx +0 -0
- Data/Resumes/AJAY CHINNI.docx +0 -0
- Data/Resumes/ALANKRIT NIRJHAR.docx +0 -0
- Data/Resumes/AMITABHA.docx +0 -0
- Data/Resumes/Abhishek Sharma.docx +0 -0
- Data/Resumes/Amarpreet Singh.docx +0 -0
- Data/Resumes/Arun Kumar.docx +0 -0
- Data/Resumes/Ashish Singh.docx +0 -0
- Data/Resumes/Ashwani Kumar Rajput.docx +0 -0
- Data/Resumes/Avik Bhattacharya.docx +0 -0
- Data/Resumes/Bijjula Sahithi.docx +0 -0
- Data/Resumes/CHARUTA DANDEKAR.docx +0 -0
- Data/Resumes/Chakuswanu.docx +0 -0
- Data/Resumes/Charu Tyagi.docx +0 -0
- Data/Resumes/DEVENDRA K NAIK.docx +0 -0
- Data/Resumes/DIVYA PRAKASH.docx +0 -0
- Data/Resumes/DRISHTI SHARMA.docx +0 -0
- Data/Resumes/Debmalya Paul.docx +0 -0
- Data/Resumes/Deepak Hariharan.docx +0 -0
- Data/Resumes/Dhavakumar.docx +0 -0
- Data/Resumes/Dileep Matha.docx +0 -0
- Data/Resumes/ELIZABETH SONY THOMAS.docx +0 -0
- Data/Resumes/GurshidPremium.docx +0 -0
.gitignore
CHANGED
|
@@ -127,3 +127,11 @@ dmypy.json
|
|
| 127 |
|
| 128 |
# Pyre type checker
|
| 129 |
.pyre/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 127 |
|
| 128 |
# Pyre type checker
|
| 129 |
.pyre/
|
| 130 |
+
|
| 131 |
+
#IntelliJ Idea Files
|
| 132 |
+
.idea
|
| 133 |
+
.idea/*
|
| 134 |
+
|
| 135 |
+
# Vscode's Files
|
| 136 |
+
.vscode
|
| 137 |
+
.vscode/*
|
Data/Resumes/Amruta B.pdf β Assets/img/header_image.jpg
RENAMED
|
File without changes
|
Cleaner.py
DELETED
|
@@ -1,55 +0,0 @@
|
|
| 1 |
-
import spacy
|
| 2 |
-
import Distill
|
| 3 |
-
|
| 4 |
-
try:
|
| 5 |
-
nlp = spacy.load('en_core_web_sm')
|
| 6 |
-
|
| 7 |
-
except ImportError:
|
| 8 |
-
print("Spacy's English Language Modules aren't present \n Install them by doing \n python -m spacy download en_core_web_sm")
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
def _base_clean(text):
|
| 12 |
-
"""
|
| 13 |
-
Takes in text read by the parser file and then does the text cleaning.
|
| 14 |
-
"""
|
| 15 |
-
text = Distill.tokenize(text)
|
| 16 |
-
text = Distill.remove_stopwords(text)
|
| 17 |
-
text = Distill.remove_tags(text)
|
| 18 |
-
text = Distill.lemmatize(text)
|
| 19 |
-
return text
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
def _reduce_redundancy(text):
|
| 23 |
-
"""
|
| 24 |
-
Takes in text that has been cleaned by the _base_clean and uses set to reduce the repeating words
|
| 25 |
-
giving only a single word that is needed.
|
| 26 |
-
"""
|
| 27 |
-
return list(set(text))
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
def _get_target_words(text):
|
| 31 |
-
"""
|
| 32 |
-
Takes in text and uses Spacy Tags on it, to extract the relevant Noun, Proper Noun words that contain words related to tech and JD.
|
| 33 |
-
|
| 34 |
-
"""
|
| 35 |
-
target = []
|
| 36 |
-
sent = " ".join(text)
|
| 37 |
-
doc = nlp(sent)
|
| 38 |
-
for token in doc:
|
| 39 |
-
if token.tag_ in ['NN', 'NNP']:
|
| 40 |
-
target.append(token.text)
|
| 41 |
-
return target
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
# https://towardsdatascience.com/overview-of-text-similarity-metrics-3397c4601f50
|
| 45 |
-
# https://towardsdatascience.com/the-best-document-similarity-algorithm-in-2020-a-beginners-guide-a01b9ef8cf05
|
| 46 |
-
|
| 47 |
-
def Cleaner(text):
|
| 48 |
-
sentence = []
|
| 49 |
-
sentence_cleaned = _base_clean(text)
|
| 50 |
-
sentence.append(sentence_cleaned)
|
| 51 |
-
sentence_reduced = _reduce_redundancy(sentence_cleaned)
|
| 52 |
-
sentence.append(sentence_reduced)
|
| 53 |
-
sentence_targetted = _get_target_words(sentence_reduced)
|
| 54 |
-
sentence.append(sentence_targetted)
|
| 55 |
-
return sentence
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Data/JobDesc/Backend Developer.docx
DELETED
|
Binary file (18.3 kB)
|
|
|
Data/JobDesc/Billing cum Logistics Manager.docx
DELETED
|
Binary file (12.9 kB)
|
|
|
Data/JobDesc/Data Scientist.docx
DELETED
|
Binary file (16.3 kB)
|
|
|
Data/JobDesc/Director of Engineering.docx
DELETED
|
Binary file (13.5 kB)
|
|
|
Data/JobDesc/Global Industry Content Manager.docx
DELETED
|
Binary file (16.3 kB)
|
|
|
Data/JobDesc/HTML Developer.docx
DELETED
|
Binary file (14.9 kB)
|
|
|
Data/JobDesc/IT Project Manager.docx
DELETED
|
Binary file (15 kB)
|
|
|
Data/JobDesc/Lead Technical Program Manager.docx
DELETED
|
Binary file (14.1 kB)
|
|
|
Data/JobDesc/Primary English Teacher.docx
DELETED
|
Binary file (16.9 kB)
|
|
|
Data/JobDesc/Revenue Reporting Data Analyst.docx
DELETED
|
Binary file (13.6 kB)
|
|
|
Data/JobDesc/Senior Product Manager.docx
DELETED
|
Binary file (15.9 kB)
|
|
|
Data/JobDesc/Senior Software Developer.docx
DELETED
|
Binary file (15.1 kB)
|
|
|
Data/JobDesc/Web Developer.docx
DELETED
|
Binary file (15.7 kB)
|
|
|
Data/JobDesc/Web_dev_job.docx
DELETED
|
Binary file (13.5 kB)
|
|
|
Data/Processed/Job-Desc-37a376db-55f8-476b-a165-81758187b9a8.json
ADDED
|
@@ -0,0 +1,321 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bi_grams": "[Job Description, Description Java, Java Developer, experienced Java, Java developer, Java development, maintaining enterprise, enterprise level, level applications, possess e, e xcellent, xcellent communication, communication skills, collaborative mindset, fast paced, paced dynamic, dynamic team, team environment, Develop test, maintain Java, Java based, based applications, industry standard, Colla borate, cross functional, functional teams, address business, technical issues, architecture discussions, scalable efficient, secure applications, Write clean, clean efficient, welldocumented code, industry best, code reviews, reviews testing, deployment activities, Continuously improve, Java development, development including, emerging technologies, d frameworks, team members, understand business, deliver solutions, exceed expectations, Computer Science, Science Engineering, related field, lea st, Java development, strong proficiency, Java Spring, Hibernate frameworks, web development, development technologies, HTML CSS, database technologies, Oracle MySQL, SQ L, L Server, Agile development, development methodologies, Strong understanding, software development, development best, best practices, practices including, including object, oriented design, design principles, principles testing, version control, control systems, Excellent written, verbal communicatio, communicatio n, n skills, Strong problem, problem solving, critical thinking, thinking skills, work independently, team environment, Java development, cutting edge, edge technologies, competitive salary, salary comprehensive, comprehensive benefits, benefits package, dynamic work]",
|
| 3 |
+
"clean_data": "Job Description Java Developer \n \nWe are seeking an experienced Java developer to join our team The ideal \ncandidate should have at least 5 years of experience in Java development with a \nfocus on developing and maintaining enterprise level applications The candidate \nshould also possess e xcellent communication skills and a collaborative mindset \nwith an ability to work in a fast paced dynamic team environment \n \nResponsibilities \n \nDevelop test and maintain Java based applications using industry standard \nframeworks and technologies \nColla borate with cross functional teams to identify and address business \nrequirements and technical issues \nParticipate in design and architecture discussions to ensure the development of \nscalable efficient and secure applications \nWrite clean efficient and welldocumented code that adheres to industry best \npractices and standards \nParticipate in code reviews testing and deployment activities as required \nContinuously improve your knowledge and skills in Java development including \nemerging technologies an d frameworks \nCommunicate with team members and stakeholders to understand business \nrequirements and deliver solutions that meet or exceed expectations \nRequirements \n \nBachelor's or Master's degree in Computer Science Engineering or related field \nAt lea st 5 years of experience in Java development with strong proficiency in \nJava Spring and Hibernate frameworks Experience with web development technologies such as HTML CSS and \nJavaScript \nKnowledge of database technologies such as Oracle MySQL or SQ L Server \nExperience with Agile development methodologies \nStrong understanding of software development best practices including object \noriented design principles testing and version control systems such as Git \nExcellent written and verbal communicatio n skills \nStrong problem solving and critical thinking skills \nAbility to work independently and collaboratively in a team environment \nIf you are passionate about Java development and have a desire to work with \ncutting edge technologies and frameworks we encourage you to apply We offer a \ncompetitive salary comprehensive benefits package and a dynamic work \nenvironment with opportunities for growth and advancement ",
|
| 4 |
+
"entities": [
|
| 5 |
+
"Computer Science Engineering",
|
| 6 |
+
"HTML CSS",
|
| 7 |
+
"Oracle MySQL or",
|
| 8 |
+
"SQ L Server",
|
| 9 |
+
"Git \nExcellent"
|
| 10 |
+
],
|
| 11 |
+
"extracted_keywords": [
|
| 12 |
+
"Job",
|
| 13 |
+
"Description",
|
| 14 |
+
"Java",
|
| 15 |
+
"Developer",
|
| 16 |
+
"seeking",
|
| 17 |
+
"experienced",
|
| 18 |
+
"Java",
|
| 19 |
+
"developer",
|
| 20 |
+
"join",
|
| 21 |
+
"team",
|
| 22 |
+
"ideal",
|
| 23 |
+
"candidate",
|
| 24 |
+
"have",
|
| 25 |
+
"years",
|
| 26 |
+
"experience",
|
| 27 |
+
"Java",
|
| 28 |
+
"development",
|
| 29 |
+
"focus",
|
| 30 |
+
"developing",
|
| 31 |
+
"maintaining",
|
| 32 |
+
"enterprise",
|
| 33 |
+
"level",
|
| 34 |
+
"applications",
|
| 35 |
+
"candidate",
|
| 36 |
+
"possess",
|
| 37 |
+
"e",
|
| 38 |
+
"xcellent",
|
| 39 |
+
"communication",
|
| 40 |
+
"skills",
|
| 41 |
+
"collaborative",
|
| 42 |
+
"mindset",
|
| 43 |
+
"ability",
|
| 44 |
+
"work",
|
| 45 |
+
"paced",
|
| 46 |
+
"dynamic",
|
| 47 |
+
"team",
|
| 48 |
+
"environment",
|
| 49 |
+
"Responsibilities",
|
| 50 |
+
"Develop",
|
| 51 |
+
"test",
|
| 52 |
+
"maintain",
|
| 53 |
+
"Java",
|
| 54 |
+
"based",
|
| 55 |
+
"applications",
|
| 56 |
+
"using",
|
| 57 |
+
"industry",
|
| 58 |
+
"standard",
|
| 59 |
+
"frameworks",
|
| 60 |
+
"technologies",
|
| 61 |
+
"Colla",
|
| 62 |
+
"borate",
|
| 63 |
+
"cross",
|
| 64 |
+
"functional",
|
| 65 |
+
"teams",
|
| 66 |
+
"identify",
|
| 67 |
+
"address",
|
| 68 |
+
"business",
|
| 69 |
+
"requirements",
|
| 70 |
+
"technical",
|
| 71 |
+
"issues",
|
| 72 |
+
"Participate",
|
| 73 |
+
"design",
|
| 74 |
+
"architecture",
|
| 75 |
+
"discussions",
|
| 76 |
+
"ensure",
|
| 77 |
+
"development",
|
| 78 |
+
"scalable",
|
| 79 |
+
"efficient",
|
| 80 |
+
"secure",
|
| 81 |
+
"applications",
|
| 82 |
+
"Write",
|
| 83 |
+
"clean",
|
| 84 |
+
"efficient",
|
| 85 |
+
"welldocumented",
|
| 86 |
+
"code",
|
| 87 |
+
"adheres",
|
| 88 |
+
"industry",
|
| 89 |
+
"best",
|
| 90 |
+
"practices",
|
| 91 |
+
"standards",
|
| 92 |
+
"Participate",
|
| 93 |
+
"code",
|
| 94 |
+
"reviews",
|
| 95 |
+
"testing",
|
| 96 |
+
"deployment",
|
| 97 |
+
"activities",
|
| 98 |
+
"required",
|
| 99 |
+
"improve",
|
| 100 |
+
"knowledge",
|
| 101 |
+
"skills",
|
| 102 |
+
"Java",
|
| 103 |
+
"development",
|
| 104 |
+
"including",
|
| 105 |
+
"emerging",
|
| 106 |
+
"technologies",
|
| 107 |
+
"d",
|
| 108 |
+
"frameworks",
|
| 109 |
+
"Communicate",
|
| 110 |
+
"team",
|
| 111 |
+
"members",
|
| 112 |
+
"stakeholders",
|
| 113 |
+
"understand",
|
| 114 |
+
"business",
|
| 115 |
+
"requirements",
|
| 116 |
+
"deliver",
|
| 117 |
+
"solutions",
|
| 118 |
+
"meet",
|
| 119 |
+
"exceed",
|
| 120 |
+
"expectations",
|
| 121 |
+
"Requirements",
|
| 122 |
+
"Bachelor",
|
| 123 |
+
"Master",
|
| 124 |
+
"degree",
|
| 125 |
+
"Computer",
|
| 126 |
+
"Science",
|
| 127 |
+
"Engineering",
|
| 128 |
+
"related",
|
| 129 |
+
"field",
|
| 130 |
+
"lea",
|
| 131 |
+
"st",
|
| 132 |
+
"years",
|
| 133 |
+
"experience",
|
| 134 |
+
"Java",
|
| 135 |
+
"development",
|
| 136 |
+
"strong",
|
| 137 |
+
"proficiency",
|
| 138 |
+
"Java",
|
| 139 |
+
"Spring",
|
| 140 |
+
"Hibernate",
|
| 141 |
+
"frameworks",
|
| 142 |
+
"Experience",
|
| 143 |
+
"web",
|
| 144 |
+
"development",
|
| 145 |
+
"technologies",
|
| 146 |
+
"such",
|
| 147 |
+
"HTML",
|
| 148 |
+
"CSS",
|
| 149 |
+
"JavaScript",
|
| 150 |
+
"Knowledge",
|
| 151 |
+
"database",
|
| 152 |
+
"technologies",
|
| 153 |
+
"such",
|
| 154 |
+
"Oracle",
|
| 155 |
+
"MySQL",
|
| 156 |
+
"SQ",
|
| 157 |
+
"L",
|
| 158 |
+
"Server",
|
| 159 |
+
"Experience",
|
| 160 |
+
"Agile",
|
| 161 |
+
"development",
|
| 162 |
+
"methodologies",
|
| 163 |
+
"Strong",
|
| 164 |
+
"understanding",
|
| 165 |
+
"software",
|
| 166 |
+
"development",
|
| 167 |
+
"best",
|
| 168 |
+
"practices",
|
| 169 |
+
"including",
|
| 170 |
+
"object",
|
| 171 |
+
"oriented",
|
| 172 |
+
"design",
|
| 173 |
+
"principles",
|
| 174 |
+
"testing",
|
| 175 |
+
"version",
|
| 176 |
+
"control",
|
| 177 |
+
"systems",
|
| 178 |
+
"such",
|
| 179 |
+
"Git",
|
| 180 |
+
"Excellent",
|
| 181 |
+
"written",
|
| 182 |
+
"verbal",
|
| 183 |
+
"communicatio",
|
| 184 |
+
"skills",
|
| 185 |
+
"Strong",
|
| 186 |
+
"problem",
|
| 187 |
+
"solving",
|
| 188 |
+
"critical",
|
| 189 |
+
"thinking",
|
| 190 |
+
"skills",
|
| 191 |
+
"Ability",
|
| 192 |
+
"work",
|
| 193 |
+
"team",
|
| 194 |
+
"environment",
|
| 195 |
+
"passionate",
|
| 196 |
+
"Java",
|
| 197 |
+
"development",
|
| 198 |
+
"have",
|
| 199 |
+
"desire",
|
| 200 |
+
"work",
|
| 201 |
+
"cutting",
|
| 202 |
+
"edge",
|
| 203 |
+
"technologies",
|
| 204 |
+
"frameworks",
|
| 205 |
+
"encourage",
|
| 206 |
+
"apply",
|
| 207 |
+
"offer",
|
| 208 |
+
"competitive",
|
| 209 |
+
"salary",
|
| 210 |
+
"comprehensive",
|
| 211 |
+
"benefits",
|
| 212 |
+
"package",
|
| 213 |
+
"dynamic",
|
| 214 |
+
"work",
|
| 215 |
+
"environment",
|
| 216 |
+
"opportunities",
|
| 217 |
+
"growth",
|
| 218 |
+
"advancement"
|
| 219 |
+
],
|
| 220 |
+
"job_desc_data": "Job Description: Java Developer \n \nWe are seeking an experienced Java developer to join our team. The ideal \ncandidate should have at least 5 years of experience in Java development, with a \nfocus on developing and maintaining enterprise -level applications. The candidate \nshould also possess e xcellent communication skills and a collaborative mindset, \nwith an ability to work in a fast -paced, dynamic team environment. \n \nResponsibilities: \n \nDevelop, test, and maintain Java -based applications using industry -standard \nframeworks and technologies. \nColla borate with cross -functional teams to identify and address business \nrequirements and technical issues. \nParticipate in design and architecture discussions to ensure the development of \nscalable, efficient, and secure applications. \nWrite clean, efficient, and well-documented code that adheres to industry best \npractices and standards. \nParticipate in code reviews, testing, and deployment activities as required. \nContinuously improve your knowledge and skills in Java development, including \nemerging technologies an d frameworks. \nCommunicate with team members and stakeholders to understand business \nrequirements and deliver solutions that meet or exceed expectations. \nRequirements: \n \nBachelor's or Master's degree in Computer Science, Engineering, or related field. \nAt lea st 5 years of experience in Java development, with strong proficiency in \nJava, Spring, and Hibernate frameworks. Experience with web development technologies such as HTML, CSS, and \nJavaScript. \nKnowledge of database technologies such as Oracle, MySQL, or SQ L Server. \nExperience with Agile development methodologies. \nStrong understanding of software development best practices, including object -\noriented design principles, testing, and version control systems such as Git. \nExcellent written and verbal communicatio n skills. \nStrong problem -solving and critical -thinking skills. \nAbility to work independently and collaboratively in a team environment. \nIf you are passionate about Java development and have a desire to work with \ncutting -edge technologies and frameworks, we encourage you to apply. We offer a \ncompetitive salary, comprehensive benefits package, and a dynamic work \nenvironment with opportunities for growth and advancement. ",
|
| 221 |
+
"keyterms": [
|
| 222 |
+
[
|
| 223 |
+
"Java development",
|
| 224 |
+
0.26919475322747016
|
| 225 |
+
],
|
| 226 |
+
[
|
| 227 |
+
"team environment",
|
| 228 |
+
0.09941934234511868
|
| 229 |
+
],
|
| 230 |
+
[
|
| 231 |
+
"experience",
|
| 232 |
+
0.02977637498685747
|
| 233 |
+
],
|
| 234 |
+
[
|
| 235 |
+
"application",
|
| 236 |
+
0.02379850592847604
|
| 237 |
+
],
|
| 238 |
+
[
|
| 239 |
+
"skill",
|
| 240 |
+
0.022497177455640515
|
| 241 |
+
],
|
| 242 |
+
[
|
| 243 |
+
"technology",
|
| 244 |
+
0.021616804020294696
|
| 245 |
+
],
|
| 246 |
+
[
|
| 247 |
+
"framework",
|
| 248 |
+
0.018326336126746803
|
| 249 |
+
],
|
| 250 |
+
[
|
| 251 |
+
"year",
|
| 252 |
+
0.01807172297101236
|
| 253 |
+
],
|
| 254 |
+
[
|
| 255 |
+
"candidate",
|
| 256 |
+
0.014562722583606963
|
| 257 |
+
],
|
| 258 |
+
[
|
| 259 |
+
"ability",
|
| 260 |
+
0.012715438755893347
|
| 261 |
+
],
|
| 262 |
+
[
|
| 263 |
+
"requirement",
|
| 264 |
+
0.012405073234017967
|
| 265 |
+
],
|
| 266 |
+
[
|
| 267 |
+
"standard",
|
| 268 |
+
0.011643052002888876
|
| 269 |
+
],
|
| 270 |
+
[
|
| 271 |
+
"industry",
|
| 272 |
+
0.011232996235539427
|
| 273 |
+
],
|
| 274 |
+
[
|
| 275 |
+
"dynamic",
|
| 276 |
+
0.010197178749718634
|
| 277 |
+
],
|
| 278 |
+
[
|
| 279 |
+
"business",
|
| 280 |
+
0.010027130262939828
|
| 281 |
+
],
|
| 282 |
+
[
|
| 283 |
+
"design",
|
| 284 |
+
0.009519266187661463
|
| 285 |
+
],
|
| 286 |
+
[
|
| 287 |
+
"efficient",
|
| 288 |
+
0.008186434398199447
|
| 289 |
+
],
|
| 290 |
+
[
|
| 291 |
+
"good",
|
| 292 |
+
0.007964469415171026
|
| 293 |
+
],
|
| 294 |
+
[
|
| 295 |
+
"practice",
|
| 296 |
+
0.007854481690515808
|
| 297 |
+
],
|
| 298 |
+
[
|
| 299 |
+
"code",
|
| 300 |
+
0.007498641755548127
|
| 301 |
+
]
|
| 302 |
+
],
|
| 303 |
+
"pos_frequencies": {
|
| 304 |
+
"ADJ": 28,
|
| 305 |
+
"ADP": 31,
|
| 306 |
+
"ADV": 7,
|
| 307 |
+
"AUX": 4,
|
| 308 |
+
"CCONJ": 29,
|
| 309 |
+
"DET": 13,
|
| 310 |
+
"NOUN": 102,
|
| 311 |
+
"NUM": 2,
|
| 312 |
+
"PART": 10,
|
| 313 |
+
"PRON": 9,
|
| 314 |
+
"PROPN": 39,
|
| 315 |
+
"SCONJ": 2,
|
| 316 |
+
"SPACE": 39,
|
| 317 |
+
"VERB": 38
|
| 318 |
+
},
|
| 319 |
+
"tri_grams": "[Job Description Java, Description Java Developer, seeking an experienced, experienced Java developer, developer to join, join our team, team The ideal, years of experience, experience in Java, focus on developing, developing and maintaining, maintaining enterprise level, enterprise level applications, applications The candidate, possess e xcellent, e xcellent communication, xcellent communication skills, ability to work, fast paced dynamic, paced dynamic team, dynamic team environment, test and maintain, maintain Java based, Java based applications, applications using industry, frameworks and technologies, borate with cross, cross functional teams, teams to identify, identify and address, requirements and technical, Participate in design, design and architecture, discussions to ensure, ensure the development, efficient and secure, Write clean efficient, code that adheres, adheres to industry, practices and standards, Participate in code, code reviews testing, testing and deployment, activities as required, improve your knowledge, knowledge and skills, skills in Java, Java development including, technologies an d, Communicate with team, members and stakeholders, stakeholders to understand, requirements and deliver, solutions that meet, meet or exceed, Master's degree, degree in Computer, Computer Science Engineering, Engineering or related, years of experience, experience in Java, development with strong, Spring and Hibernate, Experience with web, web development technologies, Knowledge of database, MySQL or SQ, SQ L Server, Experience with Agile, Agile development methodologies, understanding of software, software development best, development best practices, best practices including, practices including object, oriented design principles, design principles testing, testing and version, version control systems, written and verbal, verbal communicatio n, communicatio n skills, Strong problem solving, solving and critical, critical thinking skills, Ability to work, independently and collaboratively, passionate about Java, desire to work, cutting edge technologies, technologies and frameworks, apply We offer, competitive salary comprehensive, salary comprehensive benefits, comprehensive benefits package, environment with opportunities, opportunities for growth, growth and advancement]",
|
| 320 |
+
"unique_id": "37a376db-55f8-476b-a165-81758187b9a8"
|
| 321 |
+
}
|
Data/Processed/Job-Desc-a4f06ccb-8d5a-4d0b-9f02-3ba6d686472e.json
ADDED
|
@@ -0,0 +1,430 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bi_grams": "[Job Description, Description Machine, Machine Learning, Learning Engineer, highly skilled, experienced Machine, Machine Learning, Learning Engineer, ideal candidate, strong background, deep understanding, machine learning, learning algorithms, significant experience, real world, world problems, possess excellent, excellent research, research skills, str ong, ong mathematical, mathematical background, implementing cutting, cutting edge, edge machine, machine learning, Conduct research, develop innovative, innovative machine, machine learning, learning models, solve complex, complex business, business problems, implement machine, machine learning, learning systems, data collection, preprocessing feature, feature engineering, engineering model, model training, cross functional, functional teams, understand business, business requirements, machine learn, learn ing, ing solutions, Perform exploratory, exploratory data, data analysis, analysis feature, feature selection, dimensionality reduction, improve model, model performance, maintain large, large scale, scale machine, machine learning, learning infrastructure, computing systems, benchmark diffe, diffe rent, rent machine, machine learning, learning algorithms, effective approaches, specific tasks, latest advancements, machine learning, learning research, enhance existing, existing models, Present resear, resear ch, ch findings, technical concepts, technical stakeholders, concise manner, provide guidance, junior members, team sharing, sharing knowledge, best practices, machine learning, PhD degree, Computer Science, Science Electrical, Electrical Engineering, Engineering Statistics, related field, industry experience, machine learning, Extensive experience, deploying ma, ma chine, chine learning, learning models, TensorFlow PyTorch, scikit learn, Strong background, statistical analysis, analysis mathematical, mathematical modeling, Solid understanding, deep learning, learning architectures, architectures including, including conv, conv olutional, olutional neural, networks CNNs, CNNs recurrent, recurrent neural, neural networks, networks RNNs, transformer models, programming languages, tools commonly, machine learning, large datasets, implementing efficient, efficient data, feature extraction, extraction techniques, cloud platforms, distributed computing, computing frameworks, frameworks eg, AWS GCP, GCP Hadoop, Hadoop Spark, Strong problem, problem solving, solving skills, think critically, d creatively, solve complex, complex machine, machine learning, learning challenges, Excellent communication, communication skills, effectively collaborate, cross functional, functional teams, present technical, technical concepts, technical stakeholders, self driven, driven individual, strong passion, machine learning, cutting edge, edge projects, competitive salary, salary comprehensive, comprehensive benefits, benefits package, stimulating work, f osters, osters innovation, professional growth]",
|
| 3 |
+
"clean_data": "Job Description Machine Learning Engineer \n \nWe are seeking a highly skilled and experienced Machine Learning Engineer to \njoin our team The ideal candidate should have a strong background in machine \nlearning with a focus on research and development The candidate should have a \ndeep understanding of various machine learning algorithms and techniques along \nwith significant experience in applying them to real world problems The candidate \nshould also possess excellent research skills a str ong mathematical background \nand a passion for exploring and implementing cutting edge machine learning \nsolutions \n \nResponsibilities \n \nConduct research and develop innovative machine learning models and algorithms \nto solve complex business problems \nDesign and implement machine learning systems and pipelines for data collection \npreprocessing feature engineering model training and evaluation \nCollaborate with cross functional teams to understand business requirements and \ntranslate them into machine learn ing solutions \nPerform exploratory data analysis feature selection and dimensionality reduction \nto improve model performance \nDevelop and maintain large scale machine learning infrastructure and distributed \ncomputing systems \nEvaluate and benchmark diffe rent machine learning algorithms and frameworks to \nidentify the most effective approaches for specific tasks \nStay up todate with the latest advancements in machine learning research and \napply them to enhance existing models and algorithms \nPresent resear ch findings and technical concepts to both technical and non \ntechnical stakeholders in a clear and concise manner Mentor and provide guidance to junior members of the team sharing knowledge \nand best practices in machine learning \nRequirements \n \nMaster's or PhD degree in Computer Science Electrical Engineering Statistics or \na related field \nMinimum of 5 years of industry experience in machine learning with a strong \nfocus on research and development \nExtensive experience in developing and deploying ma chine learning models at \nscale using frameworks such as TensorFlow PyTorch or scikit learn \nStrong background in statistical analysis mathematical modeling and optimization \nalgorithms \nSolid understanding of deep learning architectures including conv olutional neural \nnetworks CNNs recurrent neural networks RNNs and transformer models \nProficiency in programming languages such as Python along with libraries and \ntools commonly used in machine learning \nExperience in working with large datasets and implementing efficient data \nprocessing and feature extraction techniques \nFamiliarity with cloud platforms and distributed computing frameworks eg \nAWS GCP Hadoop Spark is a plus \nStrong problem solving skills and the ability to think critically an d creatively to \nsolve complex machine learning challenges \nExcellent communication skills with the ability to effectively collaborate with \ncross functional teams and present technical concepts to both technical and non \ntechnical stakeholders \nIf you are a self driven individual with a strong passion for machine learning \nresearch and a desire to work on cutting edge projects we invite you to apply We \noffer a competitive salary comprehensive benefits package and a stimulating work \nenvironment that f osters innovation and professional growth ",
|
| 4 |
+
"entities": [
|
| 5 |
+
"Job Description Machine Learning Engineer",
|
| 6 |
+
"Machine Learning Engineer",
|
| 7 |
+
"Evaluate",
|
| 8 |
+
"Computer Science Electrical Engineering Statistics",
|
| 9 |
+
"AWS GCP Hadoop Spark"
|
| 10 |
+
],
|
| 11 |
+
"extracted_keywords": [
|
| 12 |
+
"Job",
|
| 13 |
+
"Description",
|
| 14 |
+
"Machine",
|
| 15 |
+
"Learning",
|
| 16 |
+
"Engineer",
|
| 17 |
+
"seeking",
|
| 18 |
+
"skilled",
|
| 19 |
+
"experienced",
|
| 20 |
+
"Machine",
|
| 21 |
+
"Learning",
|
| 22 |
+
"Engineer",
|
| 23 |
+
"join",
|
| 24 |
+
"team",
|
| 25 |
+
"ideal",
|
| 26 |
+
"candidate",
|
| 27 |
+
"have",
|
| 28 |
+
"strong",
|
| 29 |
+
"background",
|
| 30 |
+
"machine",
|
| 31 |
+
"learning",
|
| 32 |
+
"focus",
|
| 33 |
+
"research",
|
| 34 |
+
"development",
|
| 35 |
+
"candidate",
|
| 36 |
+
"have",
|
| 37 |
+
"deep",
|
| 38 |
+
"understanding",
|
| 39 |
+
"various",
|
| 40 |
+
"machine",
|
| 41 |
+
"learning",
|
| 42 |
+
"algorithms",
|
| 43 |
+
"techniques",
|
| 44 |
+
"significant",
|
| 45 |
+
"experience",
|
| 46 |
+
"applying",
|
| 47 |
+
"real",
|
| 48 |
+
"world",
|
| 49 |
+
"problems",
|
| 50 |
+
"candidate",
|
| 51 |
+
"possess",
|
| 52 |
+
"excellent",
|
| 53 |
+
"research",
|
| 54 |
+
"skills",
|
| 55 |
+
"str",
|
| 56 |
+
"ong",
|
| 57 |
+
"mathematical",
|
| 58 |
+
"background",
|
| 59 |
+
"passion",
|
| 60 |
+
"exploring",
|
| 61 |
+
"implementing",
|
| 62 |
+
"cutting",
|
| 63 |
+
"edge",
|
| 64 |
+
"machine",
|
| 65 |
+
"learning",
|
| 66 |
+
"solutions",
|
| 67 |
+
"Responsibilities",
|
| 68 |
+
"Conduct",
|
| 69 |
+
"research",
|
| 70 |
+
"develop",
|
| 71 |
+
"innovative",
|
| 72 |
+
"machine",
|
| 73 |
+
"learning",
|
| 74 |
+
"models",
|
| 75 |
+
"algorithms",
|
| 76 |
+
"solve",
|
| 77 |
+
"complex",
|
| 78 |
+
"business",
|
| 79 |
+
"problems",
|
| 80 |
+
"Design",
|
| 81 |
+
"implement",
|
| 82 |
+
"machine",
|
| 83 |
+
"learning",
|
| 84 |
+
"systems",
|
| 85 |
+
"pipelines",
|
| 86 |
+
"data",
|
| 87 |
+
"collection",
|
| 88 |
+
"preprocessing",
|
| 89 |
+
"feature",
|
| 90 |
+
"engineering",
|
| 91 |
+
"model",
|
| 92 |
+
"training",
|
| 93 |
+
"evaluation",
|
| 94 |
+
"Collaborate",
|
| 95 |
+
"cross",
|
| 96 |
+
"functional",
|
| 97 |
+
"teams",
|
| 98 |
+
"understand",
|
| 99 |
+
"business",
|
| 100 |
+
"requirements",
|
| 101 |
+
"translate",
|
| 102 |
+
"machine",
|
| 103 |
+
"learn",
|
| 104 |
+
"ing",
|
| 105 |
+
"solutions",
|
| 106 |
+
"Perform",
|
| 107 |
+
"exploratory",
|
| 108 |
+
"data",
|
| 109 |
+
"analysis",
|
| 110 |
+
"feature",
|
| 111 |
+
"selection",
|
| 112 |
+
"dimensionality",
|
| 113 |
+
"reduction",
|
| 114 |
+
"improve",
|
| 115 |
+
"model",
|
| 116 |
+
"performance",
|
| 117 |
+
"Develop",
|
| 118 |
+
"maintain",
|
| 119 |
+
"large",
|
| 120 |
+
"scale",
|
| 121 |
+
"machine",
|
| 122 |
+
"learning",
|
| 123 |
+
"infrastructure",
|
| 124 |
+
"distributed",
|
| 125 |
+
"computing",
|
| 126 |
+
"systems",
|
| 127 |
+
"Evaluate",
|
| 128 |
+
"benchmark",
|
| 129 |
+
"diffe",
|
| 130 |
+
"rent",
|
| 131 |
+
"machine",
|
| 132 |
+
"learning",
|
| 133 |
+
"algorithms",
|
| 134 |
+
"frameworks",
|
| 135 |
+
"identify",
|
| 136 |
+
"effective",
|
| 137 |
+
"approaches",
|
| 138 |
+
"specific",
|
| 139 |
+
"tasks",
|
| 140 |
+
"Stay",
|
| 141 |
+
"todate",
|
| 142 |
+
"latest",
|
| 143 |
+
"advancements",
|
| 144 |
+
"machine",
|
| 145 |
+
"learning",
|
| 146 |
+
"research",
|
| 147 |
+
"apply",
|
| 148 |
+
"enhance",
|
| 149 |
+
"existing",
|
| 150 |
+
"models",
|
| 151 |
+
"algorithms",
|
| 152 |
+
"Present",
|
| 153 |
+
"resear",
|
| 154 |
+
"ch",
|
| 155 |
+
"findings",
|
| 156 |
+
"technical",
|
| 157 |
+
"concepts",
|
| 158 |
+
"technical",
|
| 159 |
+
"non",
|
| 160 |
+
"technical",
|
| 161 |
+
"stakeholders",
|
| 162 |
+
"clear",
|
| 163 |
+
"concise",
|
| 164 |
+
"manner",
|
| 165 |
+
"Mentor",
|
| 166 |
+
"provide",
|
| 167 |
+
"guidance",
|
| 168 |
+
"junior",
|
| 169 |
+
"members",
|
| 170 |
+
"team",
|
| 171 |
+
"sharing",
|
| 172 |
+
"knowledge",
|
| 173 |
+
"best",
|
| 174 |
+
"practices",
|
| 175 |
+
"machine",
|
| 176 |
+
"learning",
|
| 177 |
+
"Requirements",
|
| 178 |
+
"Master",
|
| 179 |
+
"PhD",
|
| 180 |
+
"degree",
|
| 181 |
+
"Computer",
|
| 182 |
+
"Science",
|
| 183 |
+
"Electrical",
|
| 184 |
+
"Engineering",
|
| 185 |
+
"Statistics",
|
| 186 |
+
"related",
|
| 187 |
+
"field",
|
| 188 |
+
"Minimum",
|
| 189 |
+
"years",
|
| 190 |
+
"industry",
|
| 191 |
+
"experience",
|
| 192 |
+
"machine",
|
| 193 |
+
"learning",
|
| 194 |
+
"strong",
|
| 195 |
+
"focus",
|
| 196 |
+
"research",
|
| 197 |
+
"development",
|
| 198 |
+
"Extensive",
|
| 199 |
+
"experience",
|
| 200 |
+
"developing",
|
| 201 |
+
"deploying",
|
| 202 |
+
"ma",
|
| 203 |
+
"chine",
|
| 204 |
+
"learning",
|
| 205 |
+
"models",
|
| 206 |
+
"scale",
|
| 207 |
+
"using",
|
| 208 |
+
"frameworks",
|
| 209 |
+
"such",
|
| 210 |
+
"TensorFlow",
|
| 211 |
+
"PyTorch",
|
| 212 |
+
"scikit",
|
| 213 |
+
"learn",
|
| 214 |
+
"Strong",
|
| 215 |
+
"background",
|
| 216 |
+
"statistical",
|
| 217 |
+
"analysis",
|
| 218 |
+
"mathematical",
|
| 219 |
+
"modeling",
|
| 220 |
+
"optimization",
|
| 221 |
+
"algorithms",
|
| 222 |
+
"Solid",
|
| 223 |
+
"understanding",
|
| 224 |
+
"deep",
|
| 225 |
+
"learning",
|
| 226 |
+
"architectures",
|
| 227 |
+
"including",
|
| 228 |
+
"conv",
|
| 229 |
+
"olutional",
|
| 230 |
+
"neural",
|
| 231 |
+
"networks",
|
| 232 |
+
"CNNs",
|
| 233 |
+
"recurrent",
|
| 234 |
+
"neural",
|
| 235 |
+
"networks",
|
| 236 |
+
"RNNs",
|
| 237 |
+
"transformer",
|
| 238 |
+
"models",
|
| 239 |
+
"Proficiency",
|
| 240 |
+
"programming",
|
| 241 |
+
"languages",
|
| 242 |
+
"such",
|
| 243 |
+
"Python",
|
| 244 |
+
"libraries",
|
| 245 |
+
"tools",
|
| 246 |
+
"used",
|
| 247 |
+
"machine",
|
| 248 |
+
"learning",
|
| 249 |
+
"Experience",
|
| 250 |
+
"working",
|
| 251 |
+
"large",
|
| 252 |
+
"datasets",
|
| 253 |
+
"implementing",
|
| 254 |
+
"efficient",
|
| 255 |
+
"data",
|
| 256 |
+
"processing",
|
| 257 |
+
"feature",
|
| 258 |
+
"extraction",
|
| 259 |
+
"techniques",
|
| 260 |
+
"Familiarity",
|
| 261 |
+
"cloud",
|
| 262 |
+
"platforms",
|
| 263 |
+
"distributed",
|
| 264 |
+
"computing",
|
| 265 |
+
"frameworks",
|
| 266 |
+
"eg",
|
| 267 |
+
"AWS",
|
| 268 |
+
"GCP",
|
| 269 |
+
"Hadoop",
|
| 270 |
+
"Spark",
|
| 271 |
+
"plus",
|
| 272 |
+
"Strong",
|
| 273 |
+
"problem",
|
| 274 |
+
"solving",
|
| 275 |
+
"skills",
|
| 276 |
+
"ability",
|
| 277 |
+
"think",
|
| 278 |
+
"d",
|
| 279 |
+
"solve",
|
| 280 |
+
"complex",
|
| 281 |
+
"machine",
|
| 282 |
+
"learning",
|
| 283 |
+
"challenges",
|
| 284 |
+
"Excellent",
|
| 285 |
+
"communication",
|
| 286 |
+
"skills",
|
| 287 |
+
"ability",
|
| 288 |
+
"collaborate",
|
| 289 |
+
"cross",
|
| 290 |
+
"functional",
|
| 291 |
+
"teams",
|
| 292 |
+
"present",
|
| 293 |
+
"technical",
|
| 294 |
+
"concepts",
|
| 295 |
+
"technical",
|
| 296 |
+
"non",
|
| 297 |
+
"technical",
|
| 298 |
+
"stakeholders",
|
| 299 |
+
"self",
|
| 300 |
+
"driven",
|
| 301 |
+
"individual",
|
| 302 |
+
"strong",
|
| 303 |
+
"passion",
|
| 304 |
+
"machine",
|
| 305 |
+
"learning",
|
| 306 |
+
"research",
|
| 307 |
+
"desire",
|
| 308 |
+
"work",
|
| 309 |
+
"cutting",
|
| 310 |
+
"edge",
|
| 311 |
+
"projects",
|
| 312 |
+
"invite",
|
| 313 |
+
"apply",
|
| 314 |
+
"offer",
|
| 315 |
+
"competitive",
|
| 316 |
+
"salary",
|
| 317 |
+
"comprehensive",
|
| 318 |
+
"benefits",
|
| 319 |
+
"package",
|
| 320 |
+
"stimulating",
|
| 321 |
+
"work",
|
| 322 |
+
"environment",
|
| 323 |
+
"f",
|
| 324 |
+
"osters",
|
| 325 |
+
"innovation",
|
| 326 |
+
"professional",
|
| 327 |
+
"growth"
|
| 328 |
+
],
|
| 329 |
+
"job_desc_data": "Job Description: Machine Learning Engineer \n \nWe are seeking a highly skilled and experienced Machine Learning Engineer to \njoin our team. The ideal candidate should have a strong background in machine \nlearning, with a focus on research and development. The candidate should have a \ndeep understanding of various machine learning algorithms and techniques, along \nwith significant experience in applying them to real -world problems. The candidate \nshould also possess excellent research skills, a str ong mathematical background, \nand a passion for exploring and implementing cutting -edge machine learning \nsolutions. \n \nResponsibilities: \n \nConduct research and develop innovative machine learning models and algorithms \nto solve complex business problems. \nDesign and implement machine learning systems and pipelines for data collection, \npreprocessing, feature engineering, model training, and evaluation. \nCollaborate with cross -functional teams to understand business requirements and \ntranslate them into machine learn ing solutions. \nPerform exploratory data analysis, feature selection, and dimensionality reduction \nto improve model performance. \nDevelop and maintain large -scale machine learning infrastructure and distributed \ncomputing systems. \nEvaluate and benchmark diffe rent machine learning algorithms and frameworks to \nidentify the most effective approaches for specific tasks. \nStay up -to-date with the latest advancements in machine learning research and \napply them to enhance existing models and algorithms. \nPresent resear ch findings and technical concepts to both technical and non -\ntechnical stakeholders in a clear and concise manner. Mentor and provide guidance to junior members of the team, sharing knowledge \nand best practices in machine learning. \nRequirements: \n \nMaster's or Ph.D. degree in Computer Science, Electrical Engineering, Statistics, or \na related field. \nMinimum of 5 years of industry experience in machine learning, with a strong \nfocus on research and development. \nExtensive experience in developing and deploying ma chine learning models at \nscale, using frameworks such as TensorFlow, PyTorch, or scikit -learn. \nStrong background in statistical analysis, mathematical modeling, and optimization \nalgorithms. \nSolid understanding of deep learning architectures, including conv olutional neural \nnetworks (CNNs), recurrent neural networks (RNNs), and transformer models. \nProficiency in programming languages such as Python, along with libraries and \ntools commonly used in machine learning. \nExperience in working with large datasets and implementing efficient data \nprocessing and feature extraction techniques. \nFamiliarity with cloud platforms and distributed computing frameworks (e.g., \nAWS, GCP, Hadoop, Spark) is a plus. \nStrong problem -solving skills and the ability to think critically an d creatively to \nsolve complex machine learning challenges. \nExcellent communication skills, with the ability to effectively collaborate with \ncross -functional teams and present technical concepts to both technical and non -\ntechnical stakeholders. \nIf you are a self -driven individual with a strong passion for machine learning \nresearch and a desire to work on cutting -edge projects, we invite you to apply. We \noffer a competitive salary, comprehensive benefits package, and a stimulating work \nenvironment that f osters innovation and professional growth. ",
|
| 330 |
+
"keyterms": [
|
| 331 |
+
[
|
| 332 |
+
"Machine Learning Engineer",
|
| 333 |
+
0.40001087138245034
|
| 334 |
+
],
|
| 335 |
+
[
|
| 336 |
+
"machine learning",
|
| 337 |
+
0.05247667093120544
|
| 338 |
+
],
|
| 339 |
+
[
|
| 340 |
+
"strong background",
|
| 341 |
+
0.03216666352269381
|
| 342 |
+
],
|
| 343 |
+
[
|
| 344 |
+
"research",
|
| 345 |
+
0.022848545133192306
|
| 346 |
+
],
|
| 347 |
+
[
|
| 348 |
+
"learning model",
|
| 349 |
+
0.022276201180126895
|
| 350 |
+
],
|
| 351 |
+
[
|
| 352 |
+
"algorithm",
|
| 353 |
+
0.01992650184810927
|
| 354 |
+
],
|
| 355 |
+
[
|
| 356 |
+
"functional team",
|
| 357 |
+
0.015537015151225563
|
| 358 |
+
],
|
| 359 |
+
[
|
| 360 |
+
"candidate",
|
| 361 |
+
0.014500966193995825
|
| 362 |
+
],
|
| 363 |
+
[
|
| 364 |
+
"problem",
|
| 365 |
+
0.010694194890816721
|
| 366 |
+
],
|
| 367 |
+
[
|
| 368 |
+
"focus",
|
| 369 |
+
0.009961181674320694
|
| 370 |
+
],
|
| 371 |
+
[
|
| 372 |
+
"development",
|
| 373 |
+
0.00987309375847798
|
| 374 |
+
],
|
| 375 |
+
[
|
| 376 |
+
"experience",
|
| 377 |
+
0.009369954696402958
|
| 378 |
+
],
|
| 379 |
+
[
|
| 380 |
+
"technical concept",
|
| 381 |
+
0.009346383976120535
|
| 382 |
+
],
|
| 383 |
+
[
|
| 384 |
+
"technical stakeholder",
|
| 385 |
+
0.008961948503940666
|
| 386 |
+
],
|
| 387 |
+
[
|
| 388 |
+
"understanding",
|
| 389 |
+
0.00882409870330866
|
| 390 |
+
],
|
| 391 |
+
[
|
| 392 |
+
"deep",
|
| 393 |
+
0.008807623181402375
|
| 394 |
+
],
|
| 395 |
+
[
|
| 396 |
+
"datum",
|
| 397 |
+
0.00812115260346479
|
| 398 |
+
],
|
| 399 |
+
[
|
| 400 |
+
"technique",
|
| 401 |
+
0.007753565859064364
|
| 402 |
+
],
|
| 403 |
+
[
|
| 404 |
+
"mathematical",
|
| 405 |
+
0.007551649113914666
|
| 406 |
+
],
|
| 407 |
+
[
|
| 408 |
+
"solution",
|
| 409 |
+
0.007198246803116703
|
| 410 |
+
]
|
| 411 |
+
],
|
| 412 |
+
"pos_frequencies": {
|
| 413 |
+
"ADJ": 58,
|
| 414 |
+
"ADP": 46,
|
| 415 |
+
"ADV": 7,
|
| 416 |
+
"AUX": 6,
|
| 417 |
+
"CCONJ": 42,
|
| 418 |
+
"DET": 24,
|
| 419 |
+
"NOUN": 159,
|
| 420 |
+
"NUM": 1,
|
| 421 |
+
"PART": 12,
|
| 422 |
+
"PRON": 10,
|
| 423 |
+
"PROPN": 37,
|
| 424 |
+
"SCONJ": 1,
|
| 425 |
+
"SPACE": 56,
|
| 426 |
+
"VERB": 62
|
| 427 |
+
},
|
| 428 |
+
"tri_grams": "[Job Description Machine, Description Machine Learning, Machine Learning Engineer, seeking a highly, skilled and experienced, experienced Machine Learning, Machine Learning Engineer, join our team, team The ideal, background in machine, focus on research, research and development, development The candidate, machine learning algorithms, algorithms and techniques, experience in applying, real world problems, problems The candidate, possess excellent research, excellent research skills, skills a str, str ong mathematical, ong mathematical background, passion for exploring, exploring and implementing, implementing cutting edge, cutting edge machine, edge machine learning, research and develop, develop innovative machine, innovative machine learning, machine learning models, models and algorithms, solve complex business, complex business problems, implement machine learning, machine learning systems, systems and pipelines, pipelines for data, preprocessing feature engineering, feature engineering model, engineering model training, training and evaluation, Collaborate with cross, cross functional teams, teams to understand, understand business requirements, machine learn ing, learn ing solutions, Perform exploratory data, exploratory data analysis, data analysis feature, analysis feature selection, selection and dimensionality, improve model performance, Develop and maintain, maintain large scale, large scale machine, scale machine learning, machine learning infrastructure, infrastructure and distributed, Evaluate and benchmark, benchmark diffe rent, diffe rent machine, rent machine learning, machine learning algorithms, algorithms and frameworks, approaches for specific, Stay up todate, advancements in machine, machine learning research, enhance existing models, models and algorithms, Present resear ch, resear ch findings, findings and technical, technical and non, clear and concise, Mentor and provide, guidance to junior, team sharing knowledge, practices in machine, degree in Computer, Computer Science Electrical, Science Electrical Engineering, Electrical Engineering Statistics, years of industry, experience in machine, focus on research, research and development, experience in developing, developing and deploying, deploying ma chine, ma chine learning, chine learning models, scale using frameworks, PyTorch or scikit, background in statistical, statistical analysis mathematical, analysis mathematical modeling, modeling and optimization, understanding of deep, deep learning architectures, learning architectures including, architectures including conv, including conv olutional, conv olutional neural, networks CNNs recurrent, CNNs recurrent neural, recurrent neural networks, neural networks RNNs, RNNs and transformer, Proficiency in programming, Experience in working, working with large, implementing efficient data, processing and feature, feature extraction techniques, Familiarity with cloud, platforms and distributed, distributed computing frameworks, computing frameworks eg, AWS GCP Hadoop, GCP Hadoop Spark, Strong problem solving, problem solving skills, ability to think, critically an d, solve complex machine, complex machine learning, machine learning challenges, Excellent communication skills, ability to effectively, cross functional teams, teams and present, present technical concepts, technical and non, self driven individual, passion for machine, desire to work, work on cutting, cutting edge projects, projects we invite, offer a competitive, competitive salary comprehensive, salary comprehensive benefits, comprehensive benefits package, environment that f, f osters innovation, innovation and professional]",
|
| 429 |
+
"unique_id": "a4f06ccb-8d5a-4d0b-9f02-3ba6d686472e"
|
| 430 |
+
}
|
Data/Processed/Resume-d531571e-e4fa-45eb-ab6a-267cdeb6647e.json
ADDED
|
@@ -0,0 +1,321 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bi_grams": "[Job Description, Description Java, Java Developer, experienced Java, Java developer, Java development, maintaining enterprise, enterprise level, level applications, possess e, e xcellent, xcellent communication, communication skills, collaborative mindset, fast paced, paced dynamic, dynamic team, team environment, Develop test, maintain Java, Java based, based applications, industry standard, Colla borate, cross functional, functional teams, address business, technical issues, architecture discussions, scalable efficient, secure applications, Write clean, clean efficient, welldocumented code, industry best, code reviews, reviews testing, deployment activities, Continuously improve, Java development, development including, emerging technologies, d frameworks, team members, understand business, deliver solutions, exceed expectations, Computer Science, Science Engineering, related field, lea st, Java development, strong proficiency, Java Spring, Hibernate frameworks, web development, development technologies, HTML CSS, database technologies, Oracle MySQL, SQ L, L Server, Agile development, development methodologies, Strong understanding, software development, development best, best practices, practices including, including object, oriented design, design principles, principles testing, version control, control systems, Excellent written, verbal communicatio, communicatio n, n skills, Strong problem, problem solving, critical thinking, thinking skills, work independently, team environment, Java development, cutting edge, edge technologies, competitive salary, salary comprehensive, comprehensive benefits, benefits package, dynamic work]",
|
| 3 |
+
"clean_data": "Job Description Java Developer \n \nWe are seeking an experienced Java developer to join our team The ideal \ncandidate should have at least 5 years of experience in Java development with a \nfocus on developing and maintaining enterprise level applications The candidate \nshould also possess e xcellent communication skills and a collaborative mindset \nwith an ability to work in a fast paced dynamic team environment \n \nResponsibilities \n \nDevelop test and maintain Java based applications using industry standard \nframeworks and technologies \nColla borate with cross functional teams to identify and address business \nrequirements and technical issues \nParticipate in design and architecture discussions to ensure the development of \nscalable efficient and secure applications \nWrite clean efficient and welldocumented code that adheres to industry best \npractices and standards \nParticipate in code reviews testing and deployment activities as required \nContinuously improve your knowledge and skills in Java development including \nemerging technologies an d frameworks \nCommunicate with team members and stakeholders to understand business \nrequirements and deliver solutions that meet or exceed expectations \nRequirements \n \nBachelor's or Master's degree in Computer Science Engineering or related field \nAt lea st 5 years of experience in Java development with strong proficiency in \nJava Spring and Hibernate frameworks Experience with web development technologies such as HTML CSS and \nJavaScript \nKnowledge of database technologies such as Oracle MySQL or SQ L Server \nExperience with Agile development methodologies \nStrong understanding of software development best practices including object \noriented design principles testing and version control systems such as Git \nExcellent written and verbal communicatio n skills \nStrong problem solving and critical thinking skills \nAbility to work independently and collaboratively in a team environment \nIf you are passionate about Java development and have a desire to work with \ncutting edge technologies and frameworks we encourage you to apply We offer a \ncompetitive salary comprehensive benefits package and a dynamic work \nenvironment with opportunities for growth and advancement ",
|
| 4 |
+
"entities": [
|
| 5 |
+
"Computer Science Engineering",
|
| 6 |
+
"HTML CSS",
|
| 7 |
+
"Oracle MySQL or",
|
| 8 |
+
"SQ L Server",
|
| 9 |
+
"Git \nExcellent"
|
| 10 |
+
],
|
| 11 |
+
"extracted_keywords": [
|
| 12 |
+
"Job",
|
| 13 |
+
"Description",
|
| 14 |
+
"Java",
|
| 15 |
+
"Developer",
|
| 16 |
+
"seeking",
|
| 17 |
+
"experienced",
|
| 18 |
+
"Java",
|
| 19 |
+
"developer",
|
| 20 |
+
"join",
|
| 21 |
+
"team",
|
| 22 |
+
"ideal",
|
| 23 |
+
"candidate",
|
| 24 |
+
"have",
|
| 25 |
+
"years",
|
| 26 |
+
"experience",
|
| 27 |
+
"Java",
|
| 28 |
+
"development",
|
| 29 |
+
"focus",
|
| 30 |
+
"developing",
|
| 31 |
+
"maintaining",
|
| 32 |
+
"enterprise",
|
| 33 |
+
"level",
|
| 34 |
+
"applications",
|
| 35 |
+
"candidate",
|
| 36 |
+
"possess",
|
| 37 |
+
"e",
|
| 38 |
+
"xcellent",
|
| 39 |
+
"communication",
|
| 40 |
+
"skills",
|
| 41 |
+
"collaborative",
|
| 42 |
+
"mindset",
|
| 43 |
+
"ability",
|
| 44 |
+
"work",
|
| 45 |
+
"paced",
|
| 46 |
+
"dynamic",
|
| 47 |
+
"team",
|
| 48 |
+
"environment",
|
| 49 |
+
"Responsibilities",
|
| 50 |
+
"Develop",
|
| 51 |
+
"test",
|
| 52 |
+
"maintain",
|
| 53 |
+
"Java",
|
| 54 |
+
"based",
|
| 55 |
+
"applications",
|
| 56 |
+
"using",
|
| 57 |
+
"industry",
|
| 58 |
+
"standard",
|
| 59 |
+
"frameworks",
|
| 60 |
+
"technologies",
|
| 61 |
+
"Colla",
|
| 62 |
+
"borate",
|
| 63 |
+
"cross",
|
| 64 |
+
"functional",
|
| 65 |
+
"teams",
|
| 66 |
+
"identify",
|
| 67 |
+
"address",
|
| 68 |
+
"business",
|
| 69 |
+
"requirements",
|
| 70 |
+
"technical",
|
| 71 |
+
"issues",
|
| 72 |
+
"Participate",
|
| 73 |
+
"design",
|
| 74 |
+
"architecture",
|
| 75 |
+
"discussions",
|
| 76 |
+
"ensure",
|
| 77 |
+
"development",
|
| 78 |
+
"scalable",
|
| 79 |
+
"efficient",
|
| 80 |
+
"secure",
|
| 81 |
+
"applications",
|
| 82 |
+
"Write",
|
| 83 |
+
"clean",
|
| 84 |
+
"efficient",
|
| 85 |
+
"welldocumented",
|
| 86 |
+
"code",
|
| 87 |
+
"adheres",
|
| 88 |
+
"industry",
|
| 89 |
+
"best",
|
| 90 |
+
"practices",
|
| 91 |
+
"standards",
|
| 92 |
+
"Participate",
|
| 93 |
+
"code",
|
| 94 |
+
"reviews",
|
| 95 |
+
"testing",
|
| 96 |
+
"deployment",
|
| 97 |
+
"activities",
|
| 98 |
+
"required",
|
| 99 |
+
"improve",
|
| 100 |
+
"knowledge",
|
| 101 |
+
"skills",
|
| 102 |
+
"Java",
|
| 103 |
+
"development",
|
| 104 |
+
"including",
|
| 105 |
+
"emerging",
|
| 106 |
+
"technologies",
|
| 107 |
+
"d",
|
| 108 |
+
"frameworks",
|
| 109 |
+
"Communicate",
|
| 110 |
+
"team",
|
| 111 |
+
"members",
|
| 112 |
+
"stakeholders",
|
| 113 |
+
"understand",
|
| 114 |
+
"business",
|
| 115 |
+
"requirements",
|
| 116 |
+
"deliver",
|
| 117 |
+
"solutions",
|
| 118 |
+
"meet",
|
| 119 |
+
"exceed",
|
| 120 |
+
"expectations",
|
| 121 |
+
"Requirements",
|
| 122 |
+
"Bachelor",
|
| 123 |
+
"Master",
|
| 124 |
+
"degree",
|
| 125 |
+
"Computer",
|
| 126 |
+
"Science",
|
| 127 |
+
"Engineering",
|
| 128 |
+
"related",
|
| 129 |
+
"field",
|
| 130 |
+
"lea",
|
| 131 |
+
"st",
|
| 132 |
+
"years",
|
| 133 |
+
"experience",
|
| 134 |
+
"Java",
|
| 135 |
+
"development",
|
| 136 |
+
"strong",
|
| 137 |
+
"proficiency",
|
| 138 |
+
"Java",
|
| 139 |
+
"Spring",
|
| 140 |
+
"Hibernate",
|
| 141 |
+
"frameworks",
|
| 142 |
+
"Experience",
|
| 143 |
+
"web",
|
| 144 |
+
"development",
|
| 145 |
+
"technologies",
|
| 146 |
+
"such",
|
| 147 |
+
"HTML",
|
| 148 |
+
"CSS",
|
| 149 |
+
"JavaScript",
|
| 150 |
+
"Knowledge",
|
| 151 |
+
"database",
|
| 152 |
+
"technologies",
|
| 153 |
+
"such",
|
| 154 |
+
"Oracle",
|
| 155 |
+
"MySQL",
|
| 156 |
+
"SQ",
|
| 157 |
+
"L",
|
| 158 |
+
"Server",
|
| 159 |
+
"Experience",
|
| 160 |
+
"Agile",
|
| 161 |
+
"development",
|
| 162 |
+
"methodologies",
|
| 163 |
+
"Strong",
|
| 164 |
+
"understanding",
|
| 165 |
+
"software",
|
| 166 |
+
"development",
|
| 167 |
+
"best",
|
| 168 |
+
"practices",
|
| 169 |
+
"including",
|
| 170 |
+
"object",
|
| 171 |
+
"oriented",
|
| 172 |
+
"design",
|
| 173 |
+
"principles",
|
| 174 |
+
"testing",
|
| 175 |
+
"version",
|
| 176 |
+
"control",
|
| 177 |
+
"systems",
|
| 178 |
+
"such",
|
| 179 |
+
"Git",
|
| 180 |
+
"Excellent",
|
| 181 |
+
"written",
|
| 182 |
+
"verbal",
|
| 183 |
+
"communicatio",
|
| 184 |
+
"skills",
|
| 185 |
+
"Strong",
|
| 186 |
+
"problem",
|
| 187 |
+
"solving",
|
| 188 |
+
"critical",
|
| 189 |
+
"thinking",
|
| 190 |
+
"skills",
|
| 191 |
+
"Ability",
|
| 192 |
+
"work",
|
| 193 |
+
"team",
|
| 194 |
+
"environment",
|
| 195 |
+
"passionate",
|
| 196 |
+
"Java",
|
| 197 |
+
"development",
|
| 198 |
+
"have",
|
| 199 |
+
"desire",
|
| 200 |
+
"work",
|
| 201 |
+
"cutting",
|
| 202 |
+
"edge",
|
| 203 |
+
"technologies",
|
| 204 |
+
"frameworks",
|
| 205 |
+
"encourage",
|
| 206 |
+
"apply",
|
| 207 |
+
"offer",
|
| 208 |
+
"competitive",
|
| 209 |
+
"salary",
|
| 210 |
+
"comprehensive",
|
| 211 |
+
"benefits",
|
| 212 |
+
"package",
|
| 213 |
+
"dynamic",
|
| 214 |
+
"work",
|
| 215 |
+
"environment",
|
| 216 |
+
"opportunities",
|
| 217 |
+
"growth",
|
| 218 |
+
"advancement"
|
| 219 |
+
],
|
| 220 |
+
"job_desc_data": "Job Description: Java Developer \n \nWe are seeking an experienced Java developer to join our team. The ideal \ncandidate should have at least 5 years of experience in Java development, with a \nfocus on developing and maintaining enterprise -level applications. The candidate \nshould also possess e xcellent communication skills and a collaborative mindset, \nwith an ability to work in a fast -paced, dynamic team environment. \n \nResponsibilities: \n \nDevelop, test, and maintain Java -based applications using industry -standard \nframeworks and technologies. \nColla borate with cross -functional teams to identify and address business \nrequirements and technical issues. \nParticipate in design and architecture discussions to ensure the development of \nscalable, efficient, and secure applications. \nWrite clean, efficient, and well-documented code that adheres to industry best \npractices and standards. \nParticipate in code reviews, testing, and deployment activities as required. \nContinuously improve your knowledge and skills in Java development, including \nemerging technologies an d frameworks. \nCommunicate with team members and stakeholders to understand business \nrequirements and deliver solutions that meet or exceed expectations. \nRequirements: \n \nBachelor's or Master's degree in Computer Science, Engineering, or related field. \nAt lea st 5 years of experience in Java development, with strong proficiency in \nJava, Spring, and Hibernate frameworks. Experience with web development technologies such as HTML, CSS, and \nJavaScript. \nKnowledge of database technologies such as Oracle, MySQL, or SQ L Server. \nExperience with Agile development methodologies. \nStrong understanding of software development best practices, including object -\noriented design principles, testing, and version control systems such as Git. \nExcellent written and verbal communicatio n skills. \nStrong problem -solving and critical -thinking skills. \nAbility to work independently and collaboratively in a team environment. \nIf you are passionate about Java development and have a desire to work with \ncutting -edge technologies and frameworks, we encourage you to apply. We offer a \ncompetitive salary, comprehensive benefits package, and a dynamic work \nenvironment with opportunities for growth and advancement. ",
|
| 221 |
+
"keyterms": [
|
| 222 |
+
[
|
| 223 |
+
"Java development",
|
| 224 |
+
0.26919475322747016
|
| 225 |
+
],
|
| 226 |
+
[
|
| 227 |
+
"team environment",
|
| 228 |
+
0.09941934234511868
|
| 229 |
+
],
|
| 230 |
+
[
|
| 231 |
+
"experience",
|
| 232 |
+
0.02977637498685747
|
| 233 |
+
],
|
| 234 |
+
[
|
| 235 |
+
"application",
|
| 236 |
+
0.02379850592847604
|
| 237 |
+
],
|
| 238 |
+
[
|
| 239 |
+
"skill",
|
| 240 |
+
0.022497177455640515
|
| 241 |
+
],
|
| 242 |
+
[
|
| 243 |
+
"technology",
|
| 244 |
+
0.021616804020294696
|
| 245 |
+
],
|
| 246 |
+
[
|
| 247 |
+
"framework",
|
| 248 |
+
0.018326336126746803
|
| 249 |
+
],
|
| 250 |
+
[
|
| 251 |
+
"year",
|
| 252 |
+
0.01807172297101236
|
| 253 |
+
],
|
| 254 |
+
[
|
| 255 |
+
"candidate",
|
| 256 |
+
0.014562722583606963
|
| 257 |
+
],
|
| 258 |
+
[
|
| 259 |
+
"ability",
|
| 260 |
+
0.012715438755893347
|
| 261 |
+
],
|
| 262 |
+
[
|
| 263 |
+
"requirement",
|
| 264 |
+
0.012405073234017967
|
| 265 |
+
],
|
| 266 |
+
[
|
| 267 |
+
"standard",
|
| 268 |
+
0.011643052002888876
|
| 269 |
+
],
|
| 270 |
+
[
|
| 271 |
+
"industry",
|
| 272 |
+
0.011232996235539427
|
| 273 |
+
],
|
| 274 |
+
[
|
| 275 |
+
"dynamic",
|
| 276 |
+
0.010197178749718634
|
| 277 |
+
],
|
| 278 |
+
[
|
| 279 |
+
"business",
|
| 280 |
+
0.010027130262939828
|
| 281 |
+
],
|
| 282 |
+
[
|
| 283 |
+
"design",
|
| 284 |
+
0.009519266187661463
|
| 285 |
+
],
|
| 286 |
+
[
|
| 287 |
+
"efficient",
|
| 288 |
+
0.008186434398199447
|
| 289 |
+
],
|
| 290 |
+
[
|
| 291 |
+
"good",
|
| 292 |
+
0.007964469415171026
|
| 293 |
+
],
|
| 294 |
+
[
|
| 295 |
+
"practice",
|
| 296 |
+
0.007854481690515808
|
| 297 |
+
],
|
| 298 |
+
[
|
| 299 |
+
"code",
|
| 300 |
+
0.007498641755548127
|
| 301 |
+
]
|
| 302 |
+
],
|
| 303 |
+
"pos_frequencies": {
|
| 304 |
+
"ADJ": 27,
|
| 305 |
+
"ADP": 31,
|
| 306 |
+
"ADV": 7,
|
| 307 |
+
"AUX": 4,
|
| 308 |
+
"CCONJ": 29,
|
| 309 |
+
"DET": 13,
|
| 310 |
+
"NOUN": 104,
|
| 311 |
+
"NUM": 2,
|
| 312 |
+
"PART": 10,
|
| 313 |
+
"PRON": 9,
|
| 314 |
+
"PROPN": 37,
|
| 315 |
+
"SCONJ": 2,
|
| 316 |
+
"SPACE": 39,
|
| 317 |
+
"VERB": 39
|
| 318 |
+
},
|
| 319 |
+
"tri_grams": "[Job Description Java, Description Java Developer, seeking an experienced, experienced Java developer, developer to join, join our team, team The ideal, years of experience, experience in Java, focus on developing, developing and maintaining, maintaining enterprise level, enterprise level applications, applications The candidate, possess e xcellent, e xcellent communication, xcellent communication skills, ability to work, fast paced dynamic, paced dynamic team, dynamic team environment, test and maintain, maintain Java based, Java based applications, applications using industry, frameworks and technologies, borate with cross, cross functional teams, teams to identify, identify and address, requirements and technical, Participate in design, design and architecture, discussions to ensure, ensure the development, efficient and secure, Write clean efficient, code that adheres, adheres to industry, practices and standards, Participate in code, code reviews testing, testing and deployment, activities as required, improve your knowledge, knowledge and skills, skills in Java, Java development including, technologies an d, Communicate with team, members and stakeholders, stakeholders to understand, requirements and deliver, solutions that meet, meet or exceed, Master's degree, degree in Computer, Computer Science Engineering, Engineering or related, years of experience, experience in Java, development with strong, Spring and Hibernate, Experience with web, web development technologies, Knowledge of database, MySQL or SQ, SQ L Server, Experience with Agile, Agile development methodologies, understanding of software, software development best, development best practices, best practices including, practices including object, oriented design principles, design principles testing, testing and version, version control systems, written and verbal, verbal communicatio n, communicatio n skills, Strong problem solving, solving and critical, critical thinking skills, Ability to work, independently and collaboratively, passionate about Java, desire to work, cutting edge technologies, technologies and frameworks, apply We offer, competitive salary comprehensive, salary comprehensive benefits, comprehensive benefits package, environment with opportunities, opportunities for growth, growth and advancement]",
|
| 320 |
+
"unique_id": "d531571e-e4fa-45eb-ab6a-267cdeb6647e"
|
| 321 |
+
}
|
Data/Processed/Resume-e871fd8d-2097-4804-aa34-004397005e29.json
ADDED
|
@@ -0,0 +1,465 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bi_grams": "[John Smith, Senior Python, Python Developer, Machine Learning, Learning Engineer, LinkedIn linkedincom, Experienced Python, Python developer, solving complex, complex problems, building scalable, efficient systems, systems Proven, Proven ability, deliver high, high quality, quality software, budget Skilled, technologies including, including machine, machine learning, learning d, d ata, ata analysis, cloud computing, computing Seeking, challenging position, Machine Learning, Learning Engineer, Professional Experience, ABC Company, Senior Python, Python Developer, secure API, leading e, e commerce, commerce platf, platf orm, real time, time recommendation, recommendation system, collaborative filtering, fraud detection, detection system, machine learning, learning algorithms, XGBoos t, Random Forest, XYZ Corporation, Python Developer, machine learning, learning pipeline, customer retention, retention model, Python Scikit, data science, science models, Kub ernetes, real time, time chatbot, natural language, language processing, processing techniques, DEF Inc, Software Engineer, large scale, scale distributed, distributed system, leading financial, financial services, services company, P ython, data pipeline, processing large, large amounts, financial data, Apache Kafka, Apache Hadoop, time series, series forecasting, forecasting model, predicting stock, stock prices, Image Recognition, Convolutional Neural, Neural Networks, deep learning, learning model, image recognition, AWS Lambda, API Gateway, Fraud Detection, Graph Analytics, graph based, based algorithm, fraud detection, false positive, positive rate, previous rule, rule based, based system, Visu alized, Sentiment Analysis, Recurrent Neural, Neural Networks, sentiment analysis, analysis model, IMDb dataset, Recommendation System, Collaborative Filtering, collaborative filtering, filtering algorithm, movie recommendation, recommendation system, previous model, AWS SageMaker, Computer Science, Science XYZ, XYZ University, Computer Science, Science ABC, ABC University, Programming languages, languages Python, Python Java, Java C++, Machine learning, learning frameworks, frameworks Scikit, Scikit Learn, Learn TensorFlow, TensorFlow Keras, Keras PyTorch, Data processing, processing frameworks, frameworks Spark, Spark Hadoop, Hadoop Kafka, Cloud computing, computing AWS, AWS GCP, Databases SQL, SQL MongoDB, MongoDB Neo4j, Web frameworks, frameworks Django, Django Flask, Flask React]",
|
| 3 |
+
"clean_data": "John Smith \nSenior Python Developer and Machine Learning Engineer \n \nEmail \nLinkedIn linkedincom/in/johnsmith \n \nSummary \nExperienced Python developer with a passion for solving complex problems and building scalable and \nefficient systems Proven ability to deliver high quality software on time and on budget Skilled in a \nvariety of technologies including machine learning d ata analysis and cloud computing Seeking a \nchallenging position as a Machine Learning Engineer \n \nProfessional Experience \nABC Company \nSenior Python Developer 2021 Present \n \nDeveloped and maintained a scalable and secure API for a leading e commerce platf orm using Python \nDjango and AWS \nDesigned and implemented a real time recommendation system using collaborative filtering and matrix \nfactorization \nImproved the accuracy of a fraud detection system by 20% using machine learning algorithms such as \nXGBoos t and Random Forest \nXYZ Corporation \nPython Developer 2019 2021 \n \nBuilt and deployed a machine learning pipeline for a customer retention model using Python Scikit \nLearn and AWS \nAutomated the deployment of data science models into production using Kub ernetes and Docker \nLed a team of 3 developers to develop a real time chatbot using natural language processing techniques \nDEF Inc \nSoftware Engineer 2017 2019 \nWorked on a large scale distributed system for a leading financial services company using P ython and \nSpark \nDesigned and implemented a data pipeline for ingesting and processing large amounts of financial data \nusing Apache Kafka and Apache Hadoop \nDeveloped a time series forecasting model for predicting stock prices using Prophet and ARIMA \nProjects \nImage Recognition using Convolutional Neural Networks \nBuilt a deep learning model for image recognition using TensorFlow and Keras \nAchieved 90% accuracy on the CIFAR 10 dataset \nDeployed the model using AWS Lambda and API Gateway \nFraud Detection using Graph Analytics \nDeveloped a graph based algorithm for fraud detection using Neo4j and Python \nReduced the false positive rate by 30% compared to the previous rule based system \nVisu alized the graph using D3js and Flask \nSentiment Analysis using Recurrent Neural Networks \nBuilt a sentiment analysis model using LSTM and Word2Vec \nAchieved 85% accuracy on the IMDb dataset \nDeployed the model using Flask and Docker \nRecommendation System using Collaborative Filtering \nDesigned and implemented a collaborative filtering algorithm for a movie recommendation system \nImproved the accuracy of the system by 25% compared to the previous model \nDeployed the model using AWS SageMaker and Lambda \nEducation \nMaster of Science in Computer Science XYZ University 2017 \nBachelor of Engineering in Computer Science ABC University 2015 \nSkills \nProgramming languages Python Java C++ \nMachine learning frameworks Scikit Learn TensorFlow Keras PyTorch Data processing frameworks Spark Hadoop Kafka \nCloud computing AWS GCP \nDatabases SQL MongoDB Neo4j \nWeb frameworks Django Flask React ",
|
| 4 |
+
"emails": [
|
| 5 |
+
"john.smith@email.com"
|
| 6 |
+
],
|
| 7 |
+
"entities": [
|
| 8 |
+
"LinkedIn",
|
| 9 |
+
"Machine Learning Engineer",
|
| 10 |
+
"ABC Company \nSenior Python Developer",
|
| 11 |
+
"API",
|
| 12 |
+
"Random Forest",
|
| 13 |
+
"AWS",
|
| 14 |
+
"Kub",
|
| 15 |
+
"DEF Inc \nSoftware",
|
| 16 |
+
"P",
|
| 17 |
+
"Spark \nDesigned",
|
| 18 |
+
"Convolutional Neural Networks",
|
| 19 |
+
"Keras",
|
| 20 |
+
"Recurrent Neural Networks",
|
| 21 |
+
"Lambda \nEducation",
|
| 22 |
+
"Computer Science ABC University",
|
| 23 |
+
"Scikit Learn TensorFlow Keras PyTorch",
|
| 24 |
+
"Spark Hadoop Kafka \nCloud",
|
| 25 |
+
"GCP"
|
| 26 |
+
],
|
| 27 |
+
"experience": "Summary \n Experienced Python developer with a passion for solving complex problems and building scalable and \n efficient systems Proven ability to deliver high quality software on time and on budget Skilled in a \n variety of technologies including machine learning d ata analysis and cloud computing Seeking a \n challenging position as a Machine Learning Engineer \n \n Professional Experience \n ABC Company \n Senior Python Developer 2021 Present \n \n Developed and maintained a scalable and secure API for a leading e commerce platf orm using Python \n Django and AWS \n Designed and implemented a real time recommendation system using collaborative filtering and matrix \n factorization \n Improved the accuracy of a fraud detection system by 20 % using machine learning algorithms such as \n XGBoos t and Random Forest \n XYZ Corporation \n Python Developer 2019 2021 \n \n Built and deployed a machine learning pipeline for a customer retention model using Python Scikit \n Learn and AWS \n Automated the deployment of data science models into production using Kub ernetes and Docker \n Led a team of 3 developers to develop a real time chatbot using natural language processing techniques \n DEF Inc \n Software Engineer 2017 2019 \n Worked on a large scale distributed system for a leading financial services company using P ython and \n Spark \n Designed and implemented a data pipeline for ingesting and processing large amounts of financial data \n using Apache Kafka and Apache Hadoop \n Developed a time series forecasting model for predicting stock prices using Prophet and ARIMA \n Projects \n Image Recognition using Convolutional Neural Networks \n Built a deep learning model for image recognition using TensorFlow and Keras \n Achieved 90 % accuracy on the CIFAR 10 dataset \n Deployed the model using AWS Lambda and API Gateway \n Fraud Detection using Graph Analytics \n Developed a graph based algorithm for fraud detection using Neo4j and Python \n Reduced the false positive rate by 30 % compared to the previous rule based system \n Visu alized the graph using D3js and Flask \n Sentiment Analysis using Recurrent Neural Networks \n Built a sentiment analysis model using LSTM and Word2Vec \n Achieved 85 % accuracy on the IMDb dataset \n Deployed the model using Flask and Docker \n Recommendation System using Collaborative Filtering \n Designed and implemented a collaborative filtering algorithm for a movie recommendation system \n Improved the accuracy of the system by 25 % compared to the previous model \n Deployed the model using AWS SageMaker and Lambda \n Education \n Master of Science in Computer Science XYZ University 2017 \n Bachelor of Engineering in Computer Science ABC University 2015 \n Skills \n Programming languages Python Java C++ \n Machine learning frameworks Scikit Learn TensorFlow Keras PyTorch Data processing frameworks Spark Hadoop Kafka \n Cloud computing AWS GCP \n Databases SQL MongoDB Neo4j \n Web frameworks Django Flask React ",
|
| 28 |
+
"extracted_keywords": [
|
| 29 |
+
"John",
|
| 30 |
+
"Smith",
|
| 31 |
+
"Senior",
|
| 32 |
+
"Python",
|
| 33 |
+
"Developer",
|
| 34 |
+
"Machine",
|
| 35 |
+
"Learning",
|
| 36 |
+
"Engineer",
|
| 37 |
+
"Email",
|
| 38 |
+
"LinkedIn",
|
| 39 |
+
"linkedincom",
|
| 40 |
+
"johnsmith",
|
| 41 |
+
"Summary",
|
| 42 |
+
"Experienced",
|
| 43 |
+
"Python",
|
| 44 |
+
"developer",
|
| 45 |
+
"passion",
|
| 46 |
+
"solving",
|
| 47 |
+
"complex",
|
| 48 |
+
"problems",
|
| 49 |
+
"building",
|
| 50 |
+
"scalable",
|
| 51 |
+
"efficient",
|
| 52 |
+
"systems",
|
| 53 |
+
"Proven",
|
| 54 |
+
"ability",
|
| 55 |
+
"deliver",
|
| 56 |
+
"high",
|
| 57 |
+
"quality",
|
| 58 |
+
"software",
|
| 59 |
+
"time",
|
| 60 |
+
"budget",
|
| 61 |
+
"Skilled",
|
| 62 |
+
"variety",
|
| 63 |
+
"technologies",
|
| 64 |
+
"including",
|
| 65 |
+
"machine",
|
| 66 |
+
"learning",
|
| 67 |
+
"ata",
|
| 68 |
+
"analysis",
|
| 69 |
+
"cloud",
|
| 70 |
+
"computing",
|
| 71 |
+
"Seeking",
|
| 72 |
+
"challenging",
|
| 73 |
+
"position",
|
| 74 |
+
"Machine",
|
| 75 |
+
"Learning",
|
| 76 |
+
"Engineer",
|
| 77 |
+
"Professional",
|
| 78 |
+
"Experience",
|
| 79 |
+
"ABC",
|
| 80 |
+
"Company",
|
| 81 |
+
"Senior",
|
| 82 |
+
"Python",
|
| 83 |
+
"Developer",
|
| 84 |
+
"Present",
|
| 85 |
+
"Developed",
|
| 86 |
+
"maintained",
|
| 87 |
+
"scalable",
|
| 88 |
+
"secure",
|
| 89 |
+
"API",
|
| 90 |
+
"leading",
|
| 91 |
+
"e",
|
| 92 |
+
"commerce",
|
| 93 |
+
"platf",
|
| 94 |
+
"orm",
|
| 95 |
+
"using",
|
| 96 |
+
"Python",
|
| 97 |
+
"Django",
|
| 98 |
+
"AWS",
|
| 99 |
+
"Designed",
|
| 100 |
+
"implemented",
|
| 101 |
+
"real",
|
| 102 |
+
"time",
|
| 103 |
+
"recommendation",
|
| 104 |
+
"system",
|
| 105 |
+
"using",
|
| 106 |
+
"collaborative",
|
| 107 |
+
"filtering",
|
| 108 |
+
"matrix",
|
| 109 |
+
"factorization",
|
| 110 |
+
"Improved",
|
| 111 |
+
"accuracy",
|
| 112 |
+
"fraud",
|
| 113 |
+
"detection",
|
| 114 |
+
"system",
|
| 115 |
+
"%",
|
| 116 |
+
"using",
|
| 117 |
+
"machine",
|
| 118 |
+
"learning",
|
| 119 |
+
"algorithms",
|
| 120 |
+
"such",
|
| 121 |
+
"XGBoos",
|
| 122 |
+
"t",
|
| 123 |
+
"Random",
|
| 124 |
+
"Forest",
|
| 125 |
+
"XYZ",
|
| 126 |
+
"Corporation",
|
| 127 |
+
"Python",
|
| 128 |
+
"Developer",
|
| 129 |
+
"Built",
|
| 130 |
+
"deployed",
|
| 131 |
+
"machine",
|
| 132 |
+
"learning",
|
| 133 |
+
"pipeline",
|
| 134 |
+
"customer",
|
| 135 |
+
"retention",
|
| 136 |
+
"model",
|
| 137 |
+
"using",
|
| 138 |
+
"Python",
|
| 139 |
+
"Scikit",
|
| 140 |
+
"Learn",
|
| 141 |
+
"AWS",
|
| 142 |
+
"Automated",
|
| 143 |
+
"deployment",
|
| 144 |
+
"data",
|
| 145 |
+
"science",
|
| 146 |
+
"models",
|
| 147 |
+
"production",
|
| 148 |
+
"using",
|
| 149 |
+
"Kub",
|
| 150 |
+
"ernetes",
|
| 151 |
+
"Docker",
|
| 152 |
+
"Led",
|
| 153 |
+
"team",
|
| 154 |
+
"developers",
|
| 155 |
+
"develop",
|
| 156 |
+
"real",
|
| 157 |
+
"time",
|
| 158 |
+
"chatbot",
|
| 159 |
+
"using",
|
| 160 |
+
"natural",
|
| 161 |
+
"language",
|
| 162 |
+
"processing",
|
| 163 |
+
"techniques",
|
| 164 |
+
"DEF",
|
| 165 |
+
"Inc",
|
| 166 |
+
"Software",
|
| 167 |
+
"Engineer",
|
| 168 |
+
"Worked",
|
| 169 |
+
"large",
|
| 170 |
+
"scale",
|
| 171 |
+
"distributed",
|
| 172 |
+
"system",
|
| 173 |
+
"leading",
|
| 174 |
+
"financial",
|
| 175 |
+
"services",
|
| 176 |
+
"company",
|
| 177 |
+
"using",
|
| 178 |
+
"P",
|
| 179 |
+
"ython",
|
| 180 |
+
"Spark",
|
| 181 |
+
"Designed",
|
| 182 |
+
"implemented",
|
| 183 |
+
"data",
|
| 184 |
+
"pipeline",
|
| 185 |
+
"ingesting",
|
| 186 |
+
"processing",
|
| 187 |
+
"large",
|
| 188 |
+
"amounts",
|
| 189 |
+
"financial",
|
| 190 |
+
"data",
|
| 191 |
+
"using",
|
| 192 |
+
"Apache",
|
| 193 |
+
"Kafka",
|
| 194 |
+
"Apache",
|
| 195 |
+
"Hadoop",
|
| 196 |
+
"Developed",
|
| 197 |
+
"time",
|
| 198 |
+
"series",
|
| 199 |
+
"forecasting",
|
| 200 |
+
"model",
|
| 201 |
+
"predicting",
|
| 202 |
+
"stock",
|
| 203 |
+
"prices",
|
| 204 |
+
"using",
|
| 205 |
+
"Prophet",
|
| 206 |
+
"ARIMA",
|
| 207 |
+
"Projects",
|
| 208 |
+
"Image",
|
| 209 |
+
"Recognition",
|
| 210 |
+
"using",
|
| 211 |
+
"Convolutional",
|
| 212 |
+
"Neural",
|
| 213 |
+
"Networks",
|
| 214 |
+
"Built",
|
| 215 |
+
"deep",
|
| 216 |
+
"learning",
|
| 217 |
+
"model",
|
| 218 |
+
"image",
|
| 219 |
+
"recognition",
|
| 220 |
+
"using",
|
| 221 |
+
"TensorFlow",
|
| 222 |
+
"Keras",
|
| 223 |
+
"Achieved",
|
| 224 |
+
"%",
|
| 225 |
+
"accuracy",
|
| 226 |
+
"CIFAR",
|
| 227 |
+
"dataset",
|
| 228 |
+
"Deployed",
|
| 229 |
+
"model",
|
| 230 |
+
"using",
|
| 231 |
+
"AWS",
|
| 232 |
+
"Lambda",
|
| 233 |
+
"API",
|
| 234 |
+
"Gateway",
|
| 235 |
+
"Fraud",
|
| 236 |
+
"Detection",
|
| 237 |
+
"using",
|
| 238 |
+
"Graph",
|
| 239 |
+
"Analytics",
|
| 240 |
+
"Developed",
|
| 241 |
+
"graph",
|
| 242 |
+
"based",
|
| 243 |
+
"algorithm",
|
| 244 |
+
"fraud",
|
| 245 |
+
"detection",
|
| 246 |
+
"using",
|
| 247 |
+
"Neo4j",
|
| 248 |
+
"Python",
|
| 249 |
+
"Reduced",
|
| 250 |
+
"false",
|
| 251 |
+
"positive",
|
| 252 |
+
"rate",
|
| 253 |
+
"%",
|
| 254 |
+
"compared",
|
| 255 |
+
"previous",
|
| 256 |
+
"rule",
|
| 257 |
+
"based",
|
| 258 |
+
"system",
|
| 259 |
+
"Visu",
|
| 260 |
+
"alized",
|
| 261 |
+
"graph",
|
| 262 |
+
"using",
|
| 263 |
+
"D3js",
|
| 264 |
+
"Flask",
|
| 265 |
+
"Sentiment",
|
| 266 |
+
"Analysis",
|
| 267 |
+
"using",
|
| 268 |
+
"Recurrent",
|
| 269 |
+
"Neural",
|
| 270 |
+
"Networks",
|
| 271 |
+
"Built",
|
| 272 |
+
"sentiment",
|
| 273 |
+
"analysis",
|
| 274 |
+
"model",
|
| 275 |
+
"using",
|
| 276 |
+
"LSTM",
|
| 277 |
+
"Word2Vec",
|
| 278 |
+
"Achieved",
|
| 279 |
+
"%",
|
| 280 |
+
"accuracy",
|
| 281 |
+
"IMDb",
|
| 282 |
+
"dataset",
|
| 283 |
+
"Deployed",
|
| 284 |
+
"model",
|
| 285 |
+
"using",
|
| 286 |
+
"Flask",
|
| 287 |
+
"Docker",
|
| 288 |
+
"Recommendation",
|
| 289 |
+
"System",
|
| 290 |
+
"using",
|
| 291 |
+
"Collaborative",
|
| 292 |
+
"Filtering",
|
| 293 |
+
"Designed",
|
| 294 |
+
"implemented",
|
| 295 |
+
"collaborative",
|
| 296 |
+
"filtering",
|
| 297 |
+
"algorithm",
|
| 298 |
+
"movie",
|
| 299 |
+
"recommendation",
|
| 300 |
+
"system",
|
| 301 |
+
"Improved",
|
| 302 |
+
"accuracy",
|
| 303 |
+
"system",
|
| 304 |
+
"%",
|
| 305 |
+
"compared",
|
| 306 |
+
"previous",
|
| 307 |
+
"model",
|
| 308 |
+
"Deployed",
|
| 309 |
+
"model",
|
| 310 |
+
"using",
|
| 311 |
+
"AWS",
|
| 312 |
+
"SageMaker",
|
| 313 |
+
"Lambda",
|
| 314 |
+
"Education",
|
| 315 |
+
"Master",
|
| 316 |
+
"Science",
|
| 317 |
+
"Computer",
|
| 318 |
+
"Science",
|
| 319 |
+
"XYZ",
|
| 320 |
+
"University",
|
| 321 |
+
"Bachelor",
|
| 322 |
+
"Engineering",
|
| 323 |
+
"Computer",
|
| 324 |
+
"Science",
|
| 325 |
+
"ABC",
|
| 326 |
+
"University",
|
| 327 |
+
"Skills",
|
| 328 |
+
"Programming",
|
| 329 |
+
"languages",
|
| 330 |
+
"Python",
|
| 331 |
+
"Java",
|
| 332 |
+
"C++",
|
| 333 |
+
"Machine",
|
| 334 |
+
"learning",
|
| 335 |
+
"frameworks",
|
| 336 |
+
"Scikit",
|
| 337 |
+
"Learn",
|
| 338 |
+
"TensorFlow",
|
| 339 |
+
"Keras",
|
| 340 |
+
"PyTorch",
|
| 341 |
+
"Data",
|
| 342 |
+
"processing",
|
| 343 |
+
"frameworks",
|
| 344 |
+
"Spark",
|
| 345 |
+
"Hadoop",
|
| 346 |
+
"Kafka",
|
| 347 |
+
"Cloud",
|
| 348 |
+
"computing",
|
| 349 |
+
"AWS",
|
| 350 |
+
"GCP",
|
| 351 |
+
"Databases",
|
| 352 |
+
"SQL",
|
| 353 |
+
"MongoDB",
|
| 354 |
+
"Neo4j",
|
| 355 |
+
"Web",
|
| 356 |
+
"frameworks",
|
| 357 |
+
"Django",
|
| 358 |
+
"Flask",
|
| 359 |
+
"React"
|
| 360 |
+
],
|
| 361 |
+
"keyterms": [
|
| 362 |
+
[
|
| 363 |
+
"Machine Learning Engineer",
|
| 364 |
+
0.44942009762319735
|
| 365 |
+
],
|
| 366 |
+
[
|
| 367 |
+
"Python developer",
|
| 368 |
+
0.06738810261136297
|
| 369 |
+
],
|
| 370 |
+
[
|
| 371 |
+
"Senior Python",
|
| 372 |
+
0.05219420826937461
|
| 373 |
+
],
|
| 374 |
+
[
|
| 375 |
+
"real time",
|
| 376 |
+
0.01973615670960272
|
| 377 |
+
],
|
| 378 |
+
[
|
| 379 |
+
"system",
|
| 380 |
+
0.017814952730591152
|
| 381 |
+
],
|
| 382 |
+
[
|
| 383 |
+
"fraud detection",
|
| 384 |
+
0.01706483623643781
|
| 385 |
+
],
|
| 386 |
+
[
|
| 387 |
+
"recommendation system",
|
| 388 |
+
0.01696833886978232
|
| 389 |
+
],
|
| 390 |
+
[
|
| 391 |
+
"model",
|
| 392 |
+
0.012735073162040434
|
| 393 |
+
],
|
| 394 |
+
[
|
| 395 |
+
"AWS",
|
| 396 |
+
0.011804809666125186
|
| 397 |
+
],
|
| 398 |
+
[
|
| 399 |
+
"machine",
|
| 400 |
+
0.011536117601947764
|
| 401 |
+
],
|
| 402 |
+
[
|
| 403 |
+
"accuracy",
|
| 404 |
+
0.008222725918980236
|
| 405 |
+
],
|
| 406 |
+
[
|
| 407 |
+
"analysis",
|
| 408 |
+
0.008057044543782917
|
| 409 |
+
],
|
| 410 |
+
[
|
| 411 |
+
"scalable",
|
| 412 |
+
0.00793948184108764
|
| 413 |
+
],
|
| 414 |
+
[
|
| 415 |
+
"api",
|
| 416 |
+
0.007569205538063541
|
| 417 |
+
],
|
| 418 |
+
[
|
| 419 |
+
"computing",
|
| 420 |
+
0.0075041427657840856
|
| 421 |
+
],
|
| 422 |
+
[
|
| 423 |
+
"ABC",
|
| 424 |
+
0.0068496244147668185
|
| 425 |
+
],
|
| 426 |
+
[
|
| 427 |
+
"algorithm",
|
| 428 |
+
0.006761658910361946
|
| 429 |
+
],
|
| 430 |
+
[
|
| 431 |
+
"Neural Networks",
|
| 432 |
+
0.006748134375134239
|
| 433 |
+
],
|
| 434 |
+
[
|
| 435 |
+
"learning",
|
| 436 |
+
0.006092506033263204
|
| 437 |
+
],
|
| 438 |
+
[
|
| 439 |
+
"Django",
|
| 440 |
+
0.006038019267299147
|
| 441 |
+
]
|
| 442 |
+
],
|
| 443 |
+
"name": [
|
| 444 |
+
"John Smith"
|
| 445 |
+
],
|
| 446 |
+
"phones": [],
|
| 447 |
+
"pos_frequencies": {
|
| 448 |
+
"ADJ": 24,
|
| 449 |
+
"ADP": 35,
|
| 450 |
+
"CCONJ": 27,
|
| 451 |
+
"DET": 34,
|
| 452 |
+
"NOUN": 106,
|
| 453 |
+
"NUM": 14,
|
| 454 |
+
"PART": 2,
|
| 455 |
+
"PROPN": 133,
|
| 456 |
+
"SPACE": 62,
|
| 457 |
+
"SYM": 2,
|
| 458 |
+
"VERB": 68,
|
| 459 |
+
"X": 1
|
| 460 |
+
},
|
| 461 |
+
"resume_data": "John Smith \nSenior Python Developer and Machine Learning Engineer \n \nEmail: john.smith@email.com \nLinkedIn: linkedin.com/in/johnsmith \n \nSummary \nExperienced Python developer with a passion for solving complex problems and building scalable and \nefficient systems. Proven ability to deliver high -quality software on time and on budget. Skilled in a \nvariety of technologies, including machine learning, d ata analysis, and cloud computing. Seeking a \nchallenging position as a Machine Learning Engineer. \n \nProfessional Experience \nABC Company \nSenior Python Developer, 2021 - Present \n \nDeveloped and maintained a scalable and secure API for a leading e -commerce platf orm using Python, \nDjango, and AWS. \nDesigned and implemented a real -time recommendation system using collaborative filtering and matrix \nfactorization. \nImproved the accuracy of a fraud detection system by 20% using machine learning algorithms such as \nXGBoos t and Random Forest. \nXYZ Corporation \nPython Developer, 2019 - 2021 \n \nBuilt and deployed a machine learning pipeline for a customer retention model using Python, Scikit -\nLearn, and AWS. \nAutomated the deployment of data science models into production using Kub ernetes and Docker. \nLed a team of 3 developers to develop a real -time chatbot using natural language processing techniques. \nDEF Inc. \nSoftware Engineer, 2017 - 2019 \nWorked on a large -scale distributed system for a leading financial services company using P ython and \nSpark. \nDesigned and implemented a data pipeline for ingesting and processing large amounts of financial data \nusing Apache Kafka and Apache Hadoop. \nDeveloped a time -series forecasting model for predicting stock prices using Prophet and ARIMA. \nProjects \nImage Recognition using Convolutional Neural Networks \nBuilt a deep learning model for image recognition using TensorFlow and Keras. \nAchieved 90% accuracy on the CIFAR -10 dataset. \nDeployed the model using AWS Lambda and API Gateway. \nFraud Detection using Graph Analytics \nDeveloped a graph -based algorithm for fraud detection using Neo4j and Python. \nReduced the false positive rate by 30% compared to the previous rule -based system. \nVisu alized the graph using D3.js and Flask. \nSentiment Analysis using Recurrent Neural Networks \nBuilt a sentiment analysis model using LSTM and Word2Vec. \nAchieved 85% accuracy on the IMDb dataset. \nDeployed the model using Flask and Docker. \nRecommendation System using Collaborative Filtering \nDesigned and implemented a collaborative filtering algorithm for a movie recommendation system. \nImproved the accuracy of the system by 25% compared to the previous model. \nDeployed the model using AWS SageMaker and Lambda. \nEducation \nMaster of Science in Computer Science, XYZ University, 2017 \nBachelor of Engineering in Computer Science, ABC University, 2015 \nSkills \nProgramming languages: Python, Java, C++ \nMachine learning frameworks: Scikit -Learn, TensorFlow, Keras, PyTorch Data processing frameworks: Spark, Hadoop, Kafka \nCloud computing: AWS, GCP \nDatabases: SQL, MongoDB, Neo4j \nWeb frameworks: Django, Flask, React ",
|
| 462 |
+
"tri_grams": "[Senior Python Developer, Developer and Machine, Machine Learning Engineer, Experienced Python developer, passion for solving, solving complex problems, problems and building, efficient systems Proven, systems Proven ability, ability to deliver, deliver high quality, high quality software, software on time, variety of technologies, technologies including machine, including machine learning, machine learning d, learning d ata, d ata analysis, analysis and cloud, cloud computing Seeking, Machine Learning Engineer, Senior Python Developer, Developed and maintained, maintained a scalable, scalable and secure, leading e commerce, e commerce platf, commerce platf orm, orm using Python, Django and AWS, Designed and implemented, implemented a real, real time recommendation, time recommendation system, system using collaborative, filtering and matrix, Improved the accuracy, fraud detection system, machine learning algorithms, t and Random, Built and deployed, deployed a machine, machine learning pipeline, customer retention model, model using Python, Learn and AWS, Automated the deployment, deployment of data, data science models, models into production, production using Kub, ernetes and Docker, Led a team, developers to develop, develop a real, real time chatbot, chatbot using natural, natural language processing, language processing techniques, large scale distributed, scale distributed system, leading financial services, financial services company, company using P, Designed and implemented, implemented a data, pipeline for ingesting, ingesting and processing, processing large amounts, amounts of financial, Kafka and Apache, Developed a time, time series forecasting, series forecasting model, model for predicting, predicting stock prices, prices using Prophet, Prophet and ARIMA, Recognition using Convolutional, Convolutional Neural Networks, Built a deep, deep learning model, model for image, recognition using TensorFlow, TensorFlow and Keras, Deployed the model, model using AWS, Lambda and API, Detection using Graph, Developed a graph, graph based algorithm, algorithm for fraud, detection using Neo4j, Neo4j and Python, Reduced the false, false positive rate, previous rule based, rule based system, alized the graph, graph using D3js, D3js and Flask, Analysis using Recurrent, Recurrent Neural Networks, Built a sentiment, sentiment analysis model, model using LSTM, LSTM and Word2Vec, Deployed the model, model using Flask, Flask and Docker, Designed and implemented, implemented a collaborative, collaborative filtering algorithm, movie recommendation system, Improved the accuracy, Deployed the model, model using AWS, SageMaker and Lambda, Master of Science, Science in Computer, Computer Science XYZ, Science XYZ University, Bachelor of Engineering, Engineering in Computer, Computer Science ABC, Science ABC University, Programming languages Python, languages Python Java, Python Java C++, Machine learning frameworks, learning frameworks Scikit, frameworks Scikit Learn, Scikit Learn TensorFlow, Learn TensorFlow Keras, TensorFlow Keras PyTorch, Data processing frameworks, processing frameworks Spark, frameworks Spark Hadoop, Spark Hadoop Kafka, Cloud computing AWS, computing AWS GCP, Databases SQL MongoDB, SQL MongoDB Neo4j, Web frameworks Django, frameworks Django Flask, Django Flask React]",
|
| 463 |
+
"unique_id": "e871fd8d-2097-4804-aa34-004397005e29",
|
| 464 |
+
"years": []
|
| 465 |
+
}
|
Data/Raw/job_1.txt
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Job Description: Machine Learning Engineer
|
| 2 |
+
|
| 3 |
+
We are seeking a highly skilled and experienced Machine Learning Engineer to join our team. The ideal candidate should have a strong background in machine learning, with a focus on research and development. The candidate should have a deep understanding of various machine learning algorithms and techniques, along with significant experience in applying them to real-world problems. The candidate should also possess excellent research skills, a strong mathematical background, and a passion for exploring and implementing cutting-edge machine learning solutions.
|
| 4 |
+
|
| 5 |
+
Responsibilities:
|
| 6 |
+
|
| 7 |
+
Conduct research and develop innovative machine learning models and algorithms to solve complex business problems.
|
| 8 |
+
Design and implement machine learning systems and pipelines for data collection, preprocessing, feature engineering, model training, and evaluation.
|
| 9 |
+
Collaborate with cross-functional teams to understand business requirements and translate them into machine learning solutions.
|
| 10 |
+
Perform exploratory data analysis, feature selection, and dimensionality reduction to improve model performance.
|
| 11 |
+
Develop and maintain large-scale machine learning infrastructure and distributed computing systems.
|
| 12 |
+
Evaluate and benchmark different machine learning algorithms and frameworks to identify the most effective approaches for specific tasks.
|
| 13 |
+
Stay up-to-date with the latest advancements in machine learning research and apply them to enhance existing models and algorithms.
|
| 14 |
+
Present research findings and technical concepts to both technical and non-technical stakeholders in a clear and concise manner.
|
| 15 |
+
Mentor and provide guidance to junior members of the team, sharing knowledge and best practices in machine learning.
|
| 16 |
+
Requirements:
|
| 17 |
+
|
| 18 |
+
Master's or Ph.D. degree in Computer Science, Electrical Engineering, Statistics, or a related field.
|
| 19 |
+
Minimum of 5 years of industry experience in machine learning, with a strong focus on research and development.
|
| 20 |
+
Extensive experience in developing and deploying machine learning models at scale, using frameworks such as TensorFlow, PyTorch, or scikit-learn.
|
| 21 |
+
Strong background in statistical analysis, mathematical modeling, and optimization algorithms.
|
| 22 |
+
Solid understanding of deep learning architectures, including convolutional neural networks (CNNs), recurrent neural networks (RNNs), and transformer models.
|
| 23 |
+
Proficiency in programming languages such as Python, along with libraries and tools commonly used in machine learning.
|
| 24 |
+
Experience in working with large datasets and implementing efficient data processing and feature extraction techniques.
|
| 25 |
+
Familiarity with cloud platforms and distributed computing frameworks (e.g., AWS, GCP, Hadoop, Spark) is a plus.
|
| 26 |
+
Strong problem-solving skills and the ability to think critically and creatively to solve complex machine learning challenges.
|
| 27 |
+
Excellent communication skills, with the ability to effectively collaborate with cross-functional teams and present technical concepts to both technical and non-technical stakeholders.
|
| 28 |
+
If you are a self-driven individual with a strong passion for machine learning research and a desire to work on cutting-edge projects, we invite you to apply. We offer a competitive salary, comprehensive benefits package, and a stimulating work environment that fosters innovation and professional growth.
|
Data/Raw/job_2.txt
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Job Description: Java Developer
|
| 2 |
+
|
| 3 |
+
We are seeking an experienced Java developer to join our team. The ideal candidate should have at least 5 years of experience in Java development, with a focus on developing and maintaining enterprise-level applications. The candidate should also possess excellent communication skills and a collaborative mindset, with an ability to work in a fast-paced, dynamic team environment.
|
| 4 |
+
|
| 5 |
+
Responsibilities:
|
| 6 |
+
|
| 7 |
+
Develop, test, and maintain Java-based applications using industry-standard frameworks and technologies.
|
| 8 |
+
Collaborate with cross-functional teams to identify and address business requirements and technical issues.
|
| 9 |
+
Participate in design and architecture discussions to ensure the development of scalable, efficient, and secure applications.
|
| 10 |
+
Write clean, efficient, and well-documented code that adheres to industry best practices and standards.
|
| 11 |
+
Participate in code reviews, testing, and deployment activities as required.
|
| 12 |
+
Continuously improve your knowledge and skills in Java development, including emerging technologies and frameworks.
|
| 13 |
+
Communicate with team members and stakeholders to understand business requirements and deliver solutions that meet or exceed expectations.
|
| 14 |
+
Requirements:
|
| 15 |
+
|
| 16 |
+
Bachelor's or Master's degree in Computer Science, Engineering, or related field.
|
| 17 |
+
At least 5 years of experience in Java development, with strong proficiency in Java, Spring, and Hibernate frameworks.
|
| 18 |
+
Experience with web development technologies such as HTML, CSS, and JavaScript.
|
| 19 |
+
Knowledge of database technologies such as Oracle, MySQL, or SQL Server.
|
| 20 |
+
Experience with Agile development methodologies.
|
| 21 |
+
Strong understanding of software development best practices, including object-oriented design principles, testing, and version control systems such as Git.
|
| 22 |
+
Excellent written and verbal communication skills.
|
| 23 |
+
Strong problem-solving and critical-thinking skills.
|
| 24 |
+
Ability to work independently and collaboratively in a team environment.
|
| 25 |
+
If you are passionate about Java development and have a desire to work with cutting-edge technologies and frameworks, we encourage you to apply. We offer a competitive salary, comprehensive benefits package, and a dynamic work environment with opportunities for growth and advancement.
|
Data/{Resumes/Nandagopal.pdf β Raw/job_desc_1.pdf}
RENAMED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d0b9d4bbc81472a2a82b49ec86bd1cda7014e61376a463df1b7ea315009063fb
|
| 3 |
+
size 60906
|
Images/logo.png β Data/Raw/job_desc_2.pdf
RENAMED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b36a0d8585f69b88c4a053897b054717b2f1e1073482060f6d2d686693c03239
|
| 3 |
+
size 82077
|
Images/rm_logo.png β Data/Raw/resume_1.pdf
RENAMED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:94ea1065206b7e1520927d15ac07830c444c6c7b29f22f0ff2fc70a2a52cf1d8
|
| 3 |
+
size 85092
|
Data/Resumes/ABHAY RAJ DWIVEDI.docx
DELETED
|
Binary file (15.1 kB)
|
|
|
Data/Resumes/ADRYJA GHOSH.docx
DELETED
|
Binary file (13.7 kB)
|
|
|
Data/Resumes/AJAY CHINNI.docx
DELETED
|
Binary file (14.7 kB)
|
|
|
Data/Resumes/ALANKRIT NIRJHAR.docx
DELETED
|
Binary file (15.4 kB)
|
|
|
Data/Resumes/AMITABHA.docx
DELETED
|
Binary file (14.3 kB)
|
|
|
Data/Resumes/Abhishek Sharma.docx
DELETED
|
Binary file (13.9 kB)
|
|
|
Data/Resumes/Amarpreet Singh.docx
DELETED
|
Binary file (15.5 kB)
|
|
|
Data/Resumes/Arun Kumar.docx
DELETED
|
Binary file (17.9 kB)
|
|
|
Data/Resumes/Ashish Singh.docx
DELETED
|
Binary file (15.4 kB)
|
|
|
Data/Resumes/Ashwani Kumar Rajput.docx
DELETED
|
Binary file (14.4 kB)
|
|
|
Data/Resumes/Avik Bhattacharya.docx
DELETED
|
Binary file (15.9 kB)
|
|
|
Data/Resumes/Bijjula Sahithi.docx
DELETED
|
Binary file (13.7 kB)
|
|
|
Data/Resumes/CHARUTA DANDEKAR.docx
DELETED
|
Binary file (13.9 kB)
|
|
|
Data/Resumes/Chakuswanu.docx
DELETED
|
Binary file (14.3 kB)
|
|
|
Data/Resumes/Charu Tyagi.docx
DELETED
|
Binary file (15.3 kB)
|
|
|
Data/Resumes/DEVENDRA K NAIK.docx
DELETED
|
Binary file (18.8 kB)
|
|
|
Data/Resumes/DIVYA PRAKASH.docx
DELETED
|
Binary file (14.2 kB)
|
|
|
Data/Resumes/DRISHTI SHARMA.docx
DELETED
|
Binary file (13.8 kB)
|
|
|
Data/Resumes/Debmalya Paul.docx
DELETED
|
Binary file (16.8 kB)
|
|
|
Data/Resumes/Deepak Hariharan.docx
DELETED
|
Binary file (17.5 kB)
|
|
|
Data/Resumes/Dhavakumar.docx
DELETED
|
Binary file (14.5 kB)
|
|
|
Data/Resumes/Dileep Matha.docx
DELETED
|
Binary file (13.6 kB)
|
|
|
Data/Resumes/ELIZABETH SONY THOMAS.docx
DELETED
|
Binary file (13.7 kB)
|
|
|
Data/Resumes/GurshidPremium.docx
DELETED
|
Binary file (14.7 kB)
|
|
|