class Alex(Parents):
def __init__(self, **kwargs):
super().__init__(**kwargs)
self.professional_status = {
"role" : "PhD Student",
"institution" : "Northeastern University",
"focus": "Interpretability in code LLMs"
}
self.degree_status = {
"level" : "MSE",
"degree": "Biomedical Engineering"
"concentration" : "Biomedical Data Science",
"institution" : "Johns Hopkins University",
}
self.personal_status = {
"mood": "Curious",
}
self.languages = ["python", "R", "rust", "bash"]
self.favorite_packages = ["torch", "vllm", "polars", "scikit-learn", "scipy", "seaborn"]
self.tools = ["docker", "git", "linux", "aws", "photoshop", "jupyter"]
def work(self, *tasks):
while self.focus(*tasks): # inherited method from Parents
self.enjoy()