sudo rm -rf / # run if you darefrom 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()




