#!/usr/bin/python3
# -*- coding: utf-8 -*-
class MLEngineer:
def __init__(self):
self.name = "Bimal Timilsina"
self.pronouns = "he/him"
self.language_spoken = ["ne_NP", "en_US", "hi_IN"]
self.current_focus = "Large Language Models",
self.fun_fact = "There are two ways to write error-free programs; only the third one works."
def get_current_workplace(self):
return {
"company": "Otermans Institute"
"position": "Machine Learning Researcher"
}
def get_skills(self):
return {
"languages" : ["Python", "JavaScript"],
"libraries and frameworks" : ["Transformers", "Pytorch",
"TensorFlow", "Scikit-Learn", "Keras",
"NumPy", "Pandas", "Matplotlib",
"NLTK", "SpaCy", "Django", "FastAPI"
],
"databases" : ["MySQL", "MongoDB"]
}
def say_hi(self):
print("Thanks for dropping by, hope you find some of my work interesting.")
me = MLEngineer()
me.say_hi()
Let's connect and chat!