(Optional but highly recommended for complex projects. A diagram works best here. You can describe it if you can't add an image.)
-
This wiki also supports "mermaid" where you can create architectural diagrams using text.
-
```mermaid
-
graph LR
-
A[ THIS IS ] -- Link text --> B((MERMAID))
-
A --> C(Round Rect)
-
B --> D{Rhombus}
-
C --> D
-
```
-
-
## Challenges & Learnings
- Parsing resumes was the hardest part, since they come in multiple formats (PDF, Word, scanned images) and contain unstructured data. Ensuring accurate extraction of skills, experiences, and certifications required fine-tuning NLP pipelines.