「
Hello There
I'm CyberIngeniero, ML Engineer & AI Specialist.
~ Nibaldo ~
」
ML Engineer | Master in advanced & Applied IA | Master in Full Stack Web Development | MSc Statistics | Math Teacher
#!/usr/bin/python
# -*- coding: utf-8 -*-
class DataScientist:
def __init__(self):
self.name = "Nibaldo Pino Araya"
self.role = "Team Leader | ML Engineer | Statistician"
self.current_work = "Leader of Modelling & Analytics Team."
self.current_work_place = "HDI Seguros Chile"
self.current_learning = ["Master in PMP"]
self.personal_website = ""
self.interests= ["ML","DL","IA","Statistics"]
self.language_spoken = ["es_ES", "en_US"]
def say_hi(self):
print("Thanks for dropping by.")
me = DataScientist()
me.say_hi()