from dataclasses import dataclass
from typing import List
@dataclass
class MLExplorer:
name: str
role: str
focus_areas: List[str]
engineering_stack: List[str]
current_work: str
research_interests: List[str]
philosophy: str
def introduction(self):
print(
"Hello π\n"
"I design and engineer scalable machine learning systems.\n"
"My work focuses on translating research into reliable, "
"production-grade solutions."
)
def main():
me = MLExplorer(
name="Anjali Yadav",
role="Aspiring Machine Learning Engineer",
focus_areas=[
"Applied Machine Learning",
"Deep Learning Systems",
"Statistical Modeling",
"End-to-End ML Pipelines",
],
engineering_stack=[
"Python",
"TensorFlow / PyTorch",
"scikit-learn",
"Distributed Training",
"MLOps & Model Monitoring",
],
current_work=(
"Building and optimizing ML models with a focus on robustness, "
"scalability, and real-world impact."
),
research_interests=[
"Neural Networks",
"Transformers",
"Representation Learning",
"Generative & Agentic AI",
],
philosophy=(
"Strong baselines, rigorous evaluation, "
"and systems thinking matter more than clever tricks."
),
)
me.introduction()
if __name__ == "__main__":
main()
Pinned Loading
-
backend_code
backend_code PublicThis repository contains the backend implementation of the [Sangam] application, built to support scalable, secure, and maintainable backend services.
-
Fix_Ride
Fix_Ride PublicAI-powered mechanic recommendation system that matches users with suitable mechanics based on service type, location, and preferences using deep learning with Keras and TensorFlow.
-
portfolio
portfolio PublicThis repository contains the source code for my personal portfolio website, built to showcase my projects, technical skills, achievements, and contact information.
Svelte
-
langgraph_learn
langgraph_learn PublicA hands-on LangGraph learning project exploring multi-agent workflows, memory management, checkpointing, and human-in-the-loop logic. Focused on building reliable, traceable, and stateful AI pipeliβ¦
Jupyter Notebook
-
Deep_Learning
Deep_Learning Publicπ§ Jupyter notebooks showcasing core Deep Learning concepts using TensorFlow and Keras β including neural networks, CNNs, image classification, optimizers, loss functions, activation functions, and β¦
Jupyter Notebook
If the problem persists, check the GitHub status page or contact support.






