Skip to content
View Rachi-collab's full-sized avatar

Block or report Rachi-collab

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 is supported. This note will only be visible to you.
Report abuse

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

Report abuse
Rachi-collab/README.md

Typing SVG


LinkedIn Email GitHub Profile Views


About Me

AI Coding GIF

#!/usr/bin/env python3
# ─────────────────────────────────────────────
#   WHO AM I?  Let the code speak 🤖
# ─────────────────────────────────────────────

from dataclasses import dataclass, field
from typing import List

@dataclass
class RachiRajpal:
    name       : str        = "Rachi Rajpal"
    role       : str        = "B.Tech CSE '27 @ JUET"
    location   : str        = "India 🇮🇳"

    focus      : List[str]  = field(default_factory=lambda: [
                                "Artificial Intelligence 🤖",
                                "Machine Learning 📊",
                                "Deep Learning 🧠",
                                "Computer Vision 👁️",
                              ])

    stack      : List[str]  = field(default_factory=lambda: [
                                "Python • Java • C++",
                                "TensorFlow • PyTorch • Keras",
                                "Scikit-learn • OpenCV • MLflow",
                                "NumPy • Pandas • Matplotlib",
                              ])

    currently  : str        = "Exploring Transformers & LLMs 🔬"
    building   : str        = "Contributing to GSSoC 2026 🚀"
    goal       : str        = "AI / ML Engineer @ a top tech company 🎯"

    open_to    : List[str]  = field(default_factory=lambda: [
                                "AI/ML Internships 💼",
                                "Open Source Collabs 🌍",
                                "Research Projects 📄",
                              ])

    fun_facts  : List[str]  = field(default_factory=lambda: [
                                "I debug ML models at 2AM ☕",
                                "My loss curves are works of art 📉",
                                "I read papers for fun (send help) 📚",
                              ])

    def say_hi(self) -> str:
        return (
            f"Hey! I'm {self.name} 👋\n"
            f"Passionate about building intelligent systems\n"
            f"that actually make a difference. Let's connect!"
        )

# ─── Run ──────────────────────────────────────
if __name__ == "__main__":
    me = RachiRajpal()
    print(me.say_hi())
    print("\n🚀 Always learning. Always building.")

Tech Stack

🐍 Languages

Python C++ Java JavaScript R C

🤖 AI / ML / Data Science

TensorFlow PyTorch Keras scikit-learn OpenCV mlflow NumPy Pandas Matplotlib Plotly SciPy

🌐 Web & Frameworks

HTML5 CSS3 NodeJS Next JS Angular TailwindCSS

☁️ Cloud & Databases

AWS Azure Firebase MySQL

🛠️ Tools & Environments

Git GitHub Anaconda Jupyter VS Code Google Colab

GitHub Stats

GitHub Stats   Top Languages



GitHub Streak



Contribution Graph

🏆 GitHub Trophies

🧠 What I Bring to the Table

🔧 Area 💡 Skills
Core ML Model training · Feature engineering · Performance evaluation · Data preprocessing
Deep Learning Neural networks · CNNs · Attention mechanisms · TensorFlow & Keras
Data Science End-to-end pipelines · EDA · Visualization with Matplotlib, Plotly, Seaborn
Engineering DSA · OOP · Algorithm design · Version control with Git
Cloud & Deploy MLflow experiment tracking · AWS & Azure cloud compute

📈 Learning Roadmap

2024 ─────────────────────────────────────────────────────── 2027
  │                                                             │
  ●── ML Fundamentals      ●── Deep Learning      ●── Research & OSS
  │   Scikit-learn          │   CNNs, RNNs, NLP    │   Contributions
  │   NumPy, Pandas         │   Transformers        │   Publications
  │   Feature Engineering   │   TF / PyTorch        │
  │                         │                       └── 🎯 AI Engineer
  └── Real-world Datasets   └── Computer Vision

💡 Currently Exploring

Focus Area
🔬 Deep Learning architectures — CNNs, attention mechanisms, transformers
🧪 Model optimization & hyperparameter tuning
📦 ML experiment tracking with MLflow
☁️ Cloud deployment of ML models on AWS/Azure
🤝 Open Source contributions via GSSoC 2026

🤝 Let's Connect & Collaborate

💼 Actively seeking AI/ML internships, open-source collabs, and project partnerships

If you're building something intelligent and impactful — let's talk!


LinkedIn Email GitHub Follow

💬 Dev Quote of the Day

Dev Quote


🐍 Contribution Snake

Snake animation


Pinned Loading

  1. Traffic-Management-System-Using-Reinforcement-Learning Traffic-Management-System-Using-Reinforcement-Learning Public

    AI-based Traffic Signal Control System using Model-Free Reinforcement Learning (PPO) and SUMO simulation to dynamically optimize traffic light timings and reduce congestion. Includes a Streamlit da…

    Python

  2. Future-of-Data-Quantum-Analytics Future-of-Data-Quantum-Analytics Public

    A quantum analytics project exploring the future of data analysis using Python, machine learning, and quantum computing concepts. Includes data preprocessing, visualization, predictive models, quan…

    Python

  3. Placement-Management-System Placement-Management-System Public

    JavaScript 1

  4. Enterprise-Data-Cleaning-ETL-Orchestration-Framework-using-Python Enterprise-Data-Cleaning-ETL-Orchestration-Framework-using-Python Public

    Enterprise Data Cleaning & ETL Orchestration Framework using Python, Apache Airflow, PostgreSQL, and Streamlit. Automates data extraction, transformation, loading, and provides real-time insights w…

    Python

  5. AI-Agent-Builder-Platform AI-Agent-Builder-Platform Public

    AI Agent Builder Platform that enables users to create customizable intelligent agents using LLMs, tools, and memory. Built with Python, it implements a ReAct-based reasoning loop for dynamic decis…

    Python

  6. WaterQualityPrediction WaterQualityPrediction Public

    The objective of this project is to forecast several water quality parameters based on machine learning models, i.e., MultiOutputRegressor. The project is being created within a one-month AICTE Vir…

    Jupyter Notebook