I build machine learning systems: from first principles, then production. Before reaching for a library, I implement the algorithm by hand โ because the ability to reason about a model's failure modes matters more than the ability to call .fit() on it.
My long-term direction is AI Systems Engineering โ the discipline sitting at the intersection of modeling, deployment, and governance that defines how frontier labs like OpenAI, Anthropic, DeepMind, and Meta AI actually ship models into the real world. That's the bar I'm building toward.
class Aman:
def __init__(self):
self.role = "ML Engineer, first-principles trained"
self.focus = ["Machine Learning", "Deep Learning", "MLOps", "AI Governance"]
self.philosophy = "Understand it from scratch, then scale it with tools"
self.currently = "Building deployable ML systems, not just notebooks"
self.target_bar = ["Meta", "OpenAI", "Anthropic", "Google DeepMind", "NVIDIA", "SpaceX"]
self.open_to = ["collaboration", "internships", "research discussions"]
def say_hi(self) -> str:
return "Let's build something that ships."
if __name__ == "__main__":
me = Aman()
print(me.say_hi())Why C? To undertstand memory, pointers, and how a machine actually executes instructions .
- ๐งฎ ML from scratch โ Implementing every algorithm by hand before touching a library, so the math is understood, not just imported.
- ๐ฅ๏ธ CS from first principles โ Going back to how computers actually work: memory, pointers, execution, not just high-level syntax.
- ๐ฉ Learning low-level โ C, systems thinking, and the layers beneath Python/NumPy.
- ๐๏ธ Applied ML pipelines โ Cleaning, feature engineering, and modeling on real, messy data end-to-end.
- ๐งฐ Interactive tooling โ Building things people can actually play with, not static notebooks.
๐ฌ ML-Algorithms-From-Scratch โ the foundation everything else here is built on
A ground-up implementation of core ML โ no sklearn.fit() shortcuts, every gradient derived and coded by hand.
| Aspect | Details |
|---|---|
| Stack | Python, NumPy |
| Coverage | Linear, Multiple, Polynomial & OLS Regression ยท Ridge, Lasso, Elastic Net ยท Logistic Regression, Perceptron, KNN, Linear SVM ยท Batch / Stochastic / Mini-batch Gradient Descent |
| Repository | amanml2026/ML-Algorithms-From-Scratch |
Why it matters: proves the math is understood, not just imported โ the same instinct that separates researchers from library users at top labs.
๐ฏ ml-decision-surface-visualizer โ interactive Streamlit + Plotly tool
| Aspect | Details |
|---|---|
| Stack | Python, Streamlit, Plotly |
| What it does | Renders SGD decision boundaries updating live as hyperparameters change |
| Repository | amanml2026/ml-decision-surface-visualizer |
Why it matters: shows I can build tools people interact with, not just static notebooks.
๐ข titanic-survival-ml โ full applied ML pipeline
| Aspect | Details |
|---|---|
| Stack | Python, Pandas, scikit-learn |
| Pipeline | Cleaning โ feature engineering (family size, title extraction) โ model comparison โ cross-validation |
| Repository | amanml2026/titanic-survival-ml |
Why it matters: a disciplined, complete ML workflow on messy real-world data โ the unglamorous 80% of the job.
๐ sales-analysis-dashboard โ EDA & business storytelling
| Aspect | Details |
|---|---|
| Stack | Python, Pandas, Matplotlib |
| What it does | Translates raw sales data into decisions through exploratory analysis |
| Repository | amanml2026/sales-analysis-dashboard |
Why it matters: data science is a communication discipline as much as a modeling one.
๐ Field-notes โ a running log of what I'm learning and building
| Aspect | Details |
|---|---|
| Stack | Markdown |
| What it does | Documents experiments, debugging notes, and lessons learned while building ML systems |
| Repository | amanml2026/Field-notes |
Why it matters: shows the thinking behind the code โ not just polished results, but the reasoning trail that got there.
| Credential | Issuer |
|---|---|
| ๐ Supervised Machine Learning: Regression and Classification | DeepLearning.AI & Stanford University (Coursera) |
| ๐ Google Cloud AI | Google Cloud |
| ๐ Python for Data Science | IBM |
| ๐ Microsoft Generative AI | Microsoft |
| ๐ Mathematics for Data Science | SkillUp by Simplilearn |
learning:
- Deep Learning
- Model Deployment
- AI Governance & Monitoring
building:
- Deployable ML systems (not just notebooks)
- Interactive ML tooling
benchmarking_against:
- Meta AI
- OpenAI
- Anthropic
- Google DeepMind
- NVIDIA
- SpaceX
open_to:
- Collaboration
- Internships
- Research discussions