Skip to content

Abhinavexists/Abhinavexists

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 

Repository files navigation

sudo rm -rf / # run if you dare
from dataclasses import dataclass
from typing import List, Dict

@dataclass
class Explorer:
    name: str
    role: str
    tech_stack: Dict[str, List[str]]
    currently_exploring: List[str]
    notable_projects: List[str]
    fun_fact: str

    def say_hi(self) -> None:
        print("Thanks for dropping by! I build ML-powered tools, break them often, and learn even more.")

if __name__ == "__main__":
    me = Explorer(
        name="Abhinav Kumar Singh",
        role="Machine Learning & GenAI Developer",
        tech_stack={
            "Languages": ["C++", "Python", "Java"],
            "ML_and_Data": ["TensorFlow", "PyTorch", "Scikit-learn", "NumPy", "Pandas", "HuggingFace"],
            "Web_and_Backend": ["React", "Flask", "FastAPI", "Node.js"],
            "Databases": ["MongoDB", "MySQL", "PostgreSQL", "Firebase"],
            "Tools_and_Cloud": ["OpenCV", "Matplotlib", "Docker", "AWS", "Azure", "Git"]
        },
        currently_exploring=[
            "GenAI", 
            "LLM", 
            "NLP", 
            "Fine-Tuning"
        ],
        notable_projects=[
            "SeeSharp (PyTorch ERSVR)", 
            "FinWell (Multi-agent AI)", 
            "AgenticBob (CrewAI)", 
            "dwarp (Terminal Assistant)"
        ],
        fun_fact="How far can curiosity (and deadlines) take me? Let's find out."
    )
    
    me.say_hi()
Abhinav's GitHub Streak

About

A special repository for my Github profile.

Topics

Resources

Stars

Watchers

Forks

Contributors