Supervised Learning
Classification & Regression
Predicting categories or continuous values from labelled training data. Logistic regression, gradient-boosted trees (XGBoost, LightGBM), random forests, SVMs, and feed-forward networks, benchmarked head-to-head before we commit to one.
Best baseline first
we always benchmark before going deep
Unsupervised Learning
Clustering & Dimensionality Reduction
Surfacing structure inside data with no ground-truth labels. K-means, DBSCAN, hierarchical clustering, PCA, t-SNE, UMAP, with cluster validation, stability analysis, and human-readable summaries of what each cluster actually represents.
Validated clusters
silhouette + business interpretation
Deep Learning
Neural Networks (ANN, CNN, RNN, Transformers)
When linear models hit a wall, we go deep. Convolutional networks for vision, recurrent and transformer architectures for sequence and language, custom heads on pretrained foundation models, all trained with proper validation, regularisation, and reproducibility.
Reproducible training
seeded, versioned, MLflow-tracked
Reinforcement Learning
Sequential Decision-Making
For problems where every decision affects the next state, recommendation, pricing, scheduling, control. Policy gradient, Q-learning, contextual bandits, and offline RL on logged data, with safety constraints baked in for production.
Safe by design
constraint-aware exploration
Time Series
Forecasting & Anomaly Detection
Predicting demand, detecting failures, flagging unusual behaviour. ARIMA, Prophet, gradient-boosted regressors, LSTMs, and temporal fusion transformers, chosen based on horizon, seasonality, and how much human-readable the forecast needs to be.
Calibrated intervals
point forecasts you can plan around
Computer Vision
Image & Video Analysis
Classification, detection, segmentation, OCR, and visual quality control. Built on modern backbones (ResNet, EfficientNet, ViT, YOLO, SAM) and fine-tuned on your domain data, with the data-pipeline tooling that real projects need.
Edge or cloud
deployed where the camera lives