-
🔭 Assiduously working on AI Projects
-
🌱 Mission is to become an AI Engineer and solve complex problems faster
-
📫 How to reach me shilpaajitheks@gmail.com
class AIEngineer:
def __init__(self):
self.name = "Shilpa Ajith"
self.role = "Datascientist"
self.expertise = {
"Core Domains": "Machine Learning ,Deep Learning , LLMs ,NLP , Computer Vision",
"Languages & Libraries": "Python , NumPy , Pandas , Matplotlib , Seaborn , Scikit-learn , TensorFlow , Keras , PyTorch",
"Cloud": "AWS , Azure",
"Databases": "SQL , MongoDB"
}
def show_expertise(self):
for category, skills in self.expertise.items():
print(f"{category}:")
print(f" {skills}\n")
me = AIEngineer()
me.show_expertise()


