chen0040 / keras-english-resume-parser-and-analyzer

keras project that parses and analyze english resumes
MIT License
272 stars 144 forks source link

Can we add more items to the dictionaries line_type and line_label? #8

Closed saipavanmeruga closed 5 years ago

saipavanmeruga commented 5 years ago

I need to add more labels to the line_type and line_label Currently it has the following mapping to the actual class labels

line_labels = {0: 'experience', 1: 'knowledge', 2: 'education', 3: 'project', 4: 'others'} line_types = {0: 'header', 1: 'meta', 2: 'content'}

How to modify this

saipavanmeruga commented 5 years ago

I got how to do it......... just add the labels to the line_labels dictionary in dl_based_parser.py file

github_issue