-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathai-engineer.typ
More file actions
46 lines (38 loc) · 1.75 KB
/
Copy pathai-engineer.typ
File metadata and controls
46 lines (38 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// ai-data-engineer.typ
#import "templates/base-cv.typ": cv-layout, generate_experience, generate_education, skill_group, project_entry
// 1. LOAD THE DATA
#let data = yaml("content/resume-data.yml")
// 2. SET UP THE LAYOUT
#show: cv-layout.with(
name: data.personal.name,
role: "AI & Data Engineer", // You can change this per file
contact-info:[
#data.personal.location | #data.personal.visa | #data.personal.phone | #link("mailto:" + data.personal.email)[#data.personal.email] \
#v(1pt)
#link(data.personal.linkedin)[Linkedin] | #link(data.personal.github)[Github] | #link(data.personal.portfolio)[Portfolio]
]
)
// ==========================================
// 3. RENDER CONTENT DYNAMICALLY
// ==========================================
= Professional Summary
University of Manchester (MSc AI) graduate and published researcher specializing in data-driven automation. Expert in architecting autonomous agents that translate forecast analytics into actionable operations. Proven track record in engineering robust ETL pipelines on AWS Databricks.
= Technical Skills
#pad(x: 0.5em)[
#skill_group("AI & Machine Learning", "LLMs, RAG, Autonomous Agents, Computer Vision (YOLO, OpenCV), NLP, PyTorch.")
#skill_group("Data Engineering", "AWS Databricks, Amazon S3, ETL Pipelines, SQL, PostgreSQL, FAISS.")
]
= Experience
// Automatically generates the whole section from YAML!
#generate_experience(data)
= Projects
// (You can also move projects to YAML, but keeping them here is fine for now)
#project_entry(
"Symbolic Machine Learning Prover (SMLP)",
"Intel & Univ. of Manchester",[
- Developed a machine learning model for SMLP in collaboration with Intel.
]
)
= Education
// Automatically generates education from YAML!
#generate_education(data)