This model is designed for information extraction from resumes/CVs written in English. It employs a transformer-based architecture with spaCy for named entity recognition (NER) tasks. The model aims to parse various sections of resumes, including personal details, education history, professional experience, skills, and certifications, enabling users to extract structured information for further processing or analysis.
The model recognizes various entities corresponding to different sections of a resume. Below are the entities used by the model:
1import spacy
2nlp = spacy.load("en_cv_info_extr")
1doc = nlp('put your resume here')
2
3for ent in doc.ents:
4 print(ent.text, "-", ent.label_)