The purpose of this page is to parse the uploaded resume and collect raw data. Parsing means "resume.pdf" -> set of strings that we are looking for.
Two Parts:
- Parsing:
- extract all the strings/tokens from the document.
- TRY and make sense of what each of them means
- Use a set of heuristics to identify the category/structure of the tokens
- Fit them into the OpenResume schema
- Validation Loop:
- Once the initial parsing is done, prompt the user to check for any issues, make changes, and press the validate button so we can update the data and ensure their input is correct.
The purpose of this page is to parse the uploaded resume and collect raw data. Parsing means "resume.pdf" -> set of strings that we are looking for.
Two Parts: