-
Notifications
You must be signed in to change notification settings - Fork 0
/
resume.tex
106 lines (95 loc) · 4.16 KB
/
resume.tex
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
%-------------------------------------
% Resum in LaTeX (XeLaTeX)
% Author: John Doe
% Base on: https://www.some-resume-template.com
% License: MIT
%------------------------------------
\documentclass[a4paper, 10pt]{article}
\usepackage[english]{babel}
\usepackage{resume} % Style package
% -------------------- START --------------------
\begin{document}
% -------------------- HEADING --------------------
\begin{flushright}
\setstretch{0.6}
\item (+1) 123-456-7890
\item [email protected]
\item https://www.johndoe-portfolio.com
\end{flushright}\vspace{-45pt}
\begin{flushleft} % Replace here with your name
{\fontsize{30pt}{30pt}\selectfont \textsc{John Doe}}
\noindent\rule{\textwidth}{0.4pt}
\end{flushleft}
% -------------------- WORK --------------------
\sectionBlock{
\section{WORK EXPERIENCE}
}{
\workHeading
{ABC Technologies, New York, USA}{Data Scientist}{2018.06 - Present}
\itemListStart
\item{Developed machine learning models for predictive analytics, resulting in a 25\% increase in accuracy for business decision-making.}
\item{Led a team of 5 data scientists to deploy a scalable data pipeline for processing and analyzing over 1 million data points daily.}
\item{Implemented deep learning models using TensorFlow for customer segmentation, achieving a 15\% improvement in marketing campaign performance.}
\itemListEnd
\workHeading
{XYZ Analytics, San Francisco, USA}{Machine Learning Engineer}{2016.01 - 2018.05}
\itemListStart
\item{Built and deployed a real-time recommendation engine using collaborative filtering and matrix factorization, boosting user engagement by 30\%.}
\item{Optimized data processing workflows with Apache Spark, reducing processing time by 40\%.}
\item{Collaborated with cross-functional teams to integrate machine learning solutions into existing software products, ensuring smooth deployments.}
\itemListEnd
}
% -------------------- PROJECTS --------------------
\sectionBlock{
\section{PROJECTS}
}{
\projHeading
{Fraud Detection System}{2021.02 - 2022.04}
{Developed an end-to-end fraud detection system for a financial services client.}
\itemListStart
\item{Utilized anomaly detection techniques and ensemble models, reducing false-positive rates by 20\%.}
\item{Integrated the system into the client's existing infrastructure, ensuring real-time fraud alerts.}
\itemListEnd
\projHeading
{Customer Churn Prediction}{2019.07 - 2020.12}
{Designed and implemented a customer churn prediction model for a subscription-based service.}
}
% -------------------- TECHNICAL SKILLS --------------------
\sectionBlock{
\section{TECHNICAL SKILLS}
}{
\skillListStart
\justifying
\skillItem {\emph{Programming}}{Python, R, SQL, Java}
\skillItem {\emph{Machine Learning}}{Scikit-learn, TensorFlow, PyTorch, XGBoost}
\skillItem {\emph{Data Visualization}}{Matplotlib, Seaborn, Tableau, Power BI}
\skillItem {\emph{Big Data}}{Apache Spark, Hadoop, AWS, Azure}
\skillItem {\emph{Version Control}}{Git, SVN}
\skillItem {\emph{Development Tools}}{Jupyter Notebook, PyCharm, VS Code}
\skillListEnd
}
% -------------------- AWARDS & HONORS --------------------
\sectionBlock{
\section{AWARDS\\AND\\HONORS}
}{
\awardListStart
\justifying
\item Certified Data Scientist Professional \hfill 2023
\item AWS Certified Machine Learning – Specialty \hfill 2022
\item Best Employee of the Year \hfill 2021
\item Winner of Kaggle Competition on Predictive Analytics \hfill 2020
\item TensorFlow Developer Certification \hfill 2019
\awardListEnd
}
% -------------------- EDUCATION --------------------
\sectionBlock{
\section{EDUCATION}
}{
\eduHeading
{Stanford University}{2014.09 - 2016.06}
{Master of Science in Computer Science}
\eduHeading
{University of California, Berkeley}{2010.09 - 2014.06}
{Bachelor of Science in Data Science}
}
\end{document}