Skip to content
View anjaliy11's full-sized avatar
🐒
🐒

Block or report anjaliy11

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
anjaliy11/README.md
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()

Leetcode Info

jyot jyot jyot jyot

🌐 Socials:

LinkedIn email Portfolio

πŸ’» Tech Stack

Python NumPy Pandas scikit-learn SciPy PyTorch TensorFlow Keras C++ MLflow Matplotlib Plotly FastAPI Flask NodeJS AWS Google Cloud Docker MongoDB MySQL Git GitHub Postman

πŸ” Top Contributed Repo


Pinned Loading

  1. Sangam_ML Sangam_ML Public

    Sangam is a collaborative digital platform that enables seamless interdepartmental communication and cooperation for government agencies, facilitating shared project planning, task scheduling, and …

    Python 2 1

  2. backend_code backend_code Public

    This repository contains the backend implementation of the [Sangam] application, built to support scalable, secure, and maintainable backend services.

  3. Fix_Ride Fix_Ride Public

    AI-powered mechanic recommendation system that matches users with suitable mechanics based on service type, location, and preferences using deep learning with Keras and TensorFlow.

  4. portfolio portfolio Public

    This repository contains the source code for my personal portfolio website, built to showcase my projects, technical skills, achievements, and contact information.

    Svelte

  5. langgraph_learn langgraph_learn Public

    A 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

  6. 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