$ python portfolio.py

Alder Javier

Junior Python Developer | Data Science | Machine Learning

I build practical machine learning solutions using Python โ€” from data exploration and feature engineering to model training, evaluation, and deployment-ready pipelines.

>>> |
scroll
๐ŸŽ“

credentials/education

Education, certifications, and continuous learning roadmap

2025
DIPLOMA

Diplomado in Python Full Stack Development

Universidad de los Hemisferios & EELA

2025โ€“26
BOOTCAMP

Data Science Bootcamp

TripleTen ยท Feb 2025 โ€” Mar 2026

2025
SPECIALIZATION

International Specialization in Mathematics & Statistics for Data Science

GEM EDUCA

2025
CERTIFICATION

Machine Learning for Production

ACTUMLOGOS

2025
COURSE

Code in Place (Python Programming)

Stanford University

2018
CERTIFICATION

HTML5 / CSS3 / JavaScript Fundamentals

SoftServe

2017
B.Sc. DEGREE

Micro & Nano Electronics Engineering

Lviv Polytechnic National University

๐Ÿ’ผ

career/experience

Professional trajectory across IT, AI, and customer success

Technical Customer Success

SupportYourApp (Applicaster)
Jan 2021 โ€” Jul 2024 ยท Kyiv
  • Led client projects including app launches, feature rollouts, and analytics integration.
  • Integrated Firebase, Urban Airship, and Google Analytics into client applications.
  • Guided clients on certificates & app store submissions across platforms.
  • Acted as technical advisor, building long-term client trust and retention.
FirebaseGoogle AnalyticsiOSAndroidClient Management

Technical Support Tier II

SupportYourApp (Applicaster)
Apr 2020 โ€” Dec 2021 ยท Kyiv
  • Resolved escalated technical issues across Android, iOS, Roku, and Apple TV platforms.
  • Debugged logs & crash reports; collaborated directly with engineering for fixes.
  • Documented troubleshooting best practices for the support team.
DebuggingCrash AnalysisRokuApple TVDocumentation

AI Evangelist

DataRobot
Mar 2020 ยท Kyiv
  • Supported outreach initiatives for AI adoption across enterprise clients. (Halted due to COVID-19.)
AI/MLOutreachDataRobot Platform

Outreach Specialist

DataRobot
Aug 2019 โ€” Feb 2020
  • Built relationships with prospective clients and tailored AI/ML solutions to their needs.
AI SolutionsClient RelationsML Consulting

Account Manager & Customer Support Specialist

Viagio
2018 โ€” 2019
  • Managed provider relationships and optimized support processes.
  • Oversaw content publication & user support operations.
Account ManagementSupport OpsContent
๐Ÿ“‚

training_data/about_me

Background & context that shaped my ML journey

๐Ÿ“„ background.md

With 8 years of experience in IT, including roles in technical support and technical customer success, I've developed a deep understanding of how technology serves real users and real business problems.

That hands-on experience taught me to think systematically, communicate clearly with technical and non-technical stakeholders, and always focus on outcomes over tools.

๐Ÿ“„ transition.md

Over time, I became increasingly drawn to solving problems using data. What started as curiosity turned into a deliberate career transition into Data Science and Machine Learning.

I've invested the past year in rigorous study and applied projects โ€” building classification models, regression systems, NLP pipelines, time series forecasting, and deep learning solutions.

๐Ÿ“„ focus.md

My focus is on building practical, production-minded ML systems โ€” not just training models, but understanding the full lifecycle: data cleaning, feature engineering, model selection, evaluation with proper metrics, and deployment considerations.

I bring a rare blend of IT experience and fresh ML skills, bridging the gap between engineering and data science.

๐Ÿง 

pipeline/ml_workflow

How I approach Machine Learning problems

01

Understand the Business Problem

Define objectives, success metrics, and constraints before touching data.

02

Explore the Data

EDA to understand distributions, correlations, and anomalies.

03

Clean & Validate

Handle missing values, outliers, and data quality issues systematically.

04

Feature Engineering

Create meaningful features that capture domain knowledge and patterns.

05

Model Selection

Compare algorithms based on problem type, data size, and interpretability needs.

06

Evaluation

Use proper metrics (F1, RMSE, AUC) with cross-validation to ensure reliability.

07

Iteration & Optimization

Hyperparameter tuning, feature selection, and ensemble strategies.

08

Deployment Considerations

Model serialization, inference speed, monitoring, and maintenance planning.

๐Ÿค–

models/projects

Trained models and applied ML experiments

Classification #001

Bank Customer Churn Prediction

Built a classification model predicting customer churn for Beta Bank using 10,000 clients. Addressed class imbalance using SMOTE and class weighting. Compared Logistic Regression and Random Forest.

PythonScikit-learnPandasSMOTE
Result: Random Forest reached F1=0.63 and ROC-AUC=0.86
Data
10k clients
โ†’
SMOTE
Balance
โ†’
Features
Engineering
โ†’
Random
Forest
โ†’
F1=0.63
AUC=0.86
Regression #002

Oil Well Location Selection with Risk Analysis

Predicted oil reserves using Linear Regression and used bootstrap simulation to estimate profit distribution across regions.

PythonNumPyScikit-learn
Result: Identified the region with highest expected profit and lowest risk
Data
3 Regions
โ†’
Linear
Regression
โ†’
Bootstrap
1000 samples
โ†’
Risk
Analysis
โ†’
Best
Region
Regression #003

Gold Recovery Rate Prediction

Predicted gold recovery rates in mining purification stages using multiple process parameters.

PythonScikit-learnPandas
Result: Improved prediction accuracy to help optimize extraction processes
Raw
Process Data
โ†’
Cleaning
Multi-stage
โ†’
Feature
Engineering
โ†’
Model
Training
โ†’
Optimized
Recovery
Linear Algebra #004

Insurance Data Protection via Matrix Obfuscation

Implemented ML tasks including similarity search (kNN), custom Linear Regression using matrix algebra, and data obfuscation using invertible matrix multiplication.

PythonNumPyLinear Algebra
Result: Obfuscation preserves predictions with identical RMSE
Original
Data
โ†’
Matrix
Obfuscation
โ†’
Lin Reg
Custom
โ†’
Verify
RMSE
โ†’
Identical
Results
Regression #005

Used Car Price Prediction System

Compared six regression models to predict used car prices from 350k listings.

PythonXGBoostLightGBMCatBoostScikit-learn
Result: XGBoost achieved RMSE 1547 with extremely fast inference
Data
350k rows
โ†’
Cleaning
& Encoding
โ†’
6 Models
Compared
โ†’
XGBoost
Winner
โ†’
RMSE
1547
Time Series #006

Taxi Demand Forecasting

Predicted hourly airport taxi demand using time series modeling and feature engineering.

PythonLightGBMStatsmodels
Result: RMSE 40.44 outperforming the required threshold
Time
Series Data
โ†’
Lag
Features
โ†’
Rolling
Stats
โ†’
LightGBM
โ†’
RMSE
40.44
NLP #007

Movie Review Sentiment Classification

Built an NLP pipeline using TF-IDF and Logistic Regression to classify IMDB reviews.

PythonspaCyTF-IDFScikit-learn
Result: F1=0.88 and ROC-AUC=0.95
IMDB
Reviews
โ†’
spaCy
Tokenize
โ†’
TF-IDF
Vectors
โ†’
Logistic
Regression
โ†’
F1=0.88
AUC=0.95
Deep Learning #008

Age Estimation from Images

Built a CNN using ResNet50 transfer learning to predict age from images.

TensorFlowKerasCNN
Result: MAE under 8 years
Images
Dataset
โ†’
Augment
& Resize
โ†’
ResNet50
Transfer
โ†’
Fine
Tune
โ†’
MAE
< 8 yrs
๐Ÿงช

experiments/learning_journey

One year of structured ML experimentation

EXP-001 COMPLETED

Python & Data Analysis

Core Python, Pandas, NumPy, Matplotlib. Data wrangling and exploratory analysis fundamentals.

EXP-002 COMPLETED

Statistics & Machine Learning

Statistical foundations, hypothesis testing, supervised and unsupervised learning algorithms.

EXP-003 COMPLETED

Applied Machine Learning Projects

End-to-end projects: churn prediction, price estimation, risk analysis with real-world datasets.

EXP-004 COMPLETED

Deep Learning & Computer Vision

Neural networks, CNNs, transfer learning with TensorFlow and Keras. Image classification and regression.

EXP-005 COMPLETED

Natural Language Processing

Text preprocessing, TF-IDF vectorization, sentiment analysis, and NLP pipeline construction.

EXP-006 ACTIVE

Production-ready ML Models

Model optimization, deployment strategies, API serving, monitoring, and ML system design.

โš™๏ธ

requirements/tech_stack

Tools and technologies in my ML toolkit

๐Ÿ
Python
๐Ÿผ
Pandas
๐Ÿ”ข
NumPy
๐Ÿค–
Scikit-learn
๐Ÿง 
TensorFlow
๐ŸŒฟ
LightGBM
๐Ÿš€
XGBoost
๐Ÿ—„๏ธ
SQL
๐Ÿ“ฆ
Git
๐Ÿ“Š
Machine Learning
๐Ÿ”ฌ
Deep Learning
๐Ÿ’ฌ
NLP
โฑ๏ธ
Time Series
๐Ÿ“Š

results/achievements

Experiment results from the lab notebook

0
Best F1 Score
Movie Review Sentiment Classification
0
Best ROC-AUC
NLP Pipeline with TF-IDF
0
ML Projects
End-to-end applied solutions
0
Datapoints Processed
Used Car Price dataset alone
0
Best RMSE
XGBoost car price prediction
0
ML Pipelines
Classification, regression, NLP, CV, time series

> model_comparison.plot()

๐Ÿ“ก

connect/contact

Let's discuss data, models, and opportunities

terminal

$ python contact.py --name="Javier"

>>> Connecting to Javier's ML Lab...

>>> Status: Open to opportunities

>>> Interest: Python Developer | Data Science | Machine Learning roles

$ _