from dataclasses import dataclass
from typing import List
@dataclass
class MLEngineer:
name: str
role: str
focus_areas: List[str]
current_work: str
research_interests: List[str]
philosophy: str
def introduction(self):
print(
"Hello π I'm Anjali.\n"
"I build machine learning systems that go beyond notebooks β\n"
"end-to-end pipelines, deployed models, and measurable outcomes.\n"
)
me = MLEngineer(
name="Anjali Yadav",
role="Machine Learning Engineer",
focus_areas=[
"End-to-End ML Pipelines",
"Deep Learning & Model Optimization",
"MLOps & Production Deployment",
"Statistical Modeling",
],
current_work="Designing robust ML systems with measurable real-world impact.",
research_interests=[
"Transformers & Attention Mechanisms",
"Representation Learning",
"Generative & Agentic AI",
"Efficient Inference & Model Compression",
],
philosophy=(
"Strong baselines beat clever tricks. "
"If it doesn't evaluate well, it doesn't ship."
),
)
me.introduction()
Pinned Loading
-
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
-
AlgebrAI
AlgebrAI PublicAlgebrAI is an AI-powered web application that helps users solve algebraic problems with clear, step-by-step explanations. Built using Streamlit, LangChain, and Groq LLMs, it transforms natural-lanβ¦
Python
-
Powerly_
Powerly_ PublicAutonomous Microgrid Balancer using PPO RL with Adversarial Training for resilience under High-Impact Low-Probability (HILP) disturbances.
Python
-
Hybrid_Search_RAG
Hybrid_Search_RAG PublicA production-ready Retrieval-Augmented Generation (RAG) pipeline combining BM25 lexical search and Pinecone vector search to deliver high-accuracy hybrid retrieval. Built using LangChain, Pinecone,β¦
Jupyter Notebook
-
If the problem persists, check the GitHub status page or contact support.


