If you are curious, like me, here is a little description of me. π
π§π After a Bachelor's degree in Economics and a Master's degree in Econometrics and Statistics, I am currently in a Master's degree in Data Science in a French university.
π»π± Aspiring Data Scientist, I really enjoy working with unstructured data. Here are some of the topics I find very attractive and on which I have worked: textual data analysis and modeling (NLP); sentiment analysis; early detection of diseases from medical images or prediction and prevention of diseases using Machine and Deep Learning; identification of defects in industrial parts based on images. In addition, I like to work on time series with Deep Learning to make complex predictions. In particular, I like to discover new concepts for forecasting time series such as Deep Hybrid Learning.
Feel free to send me a message, it will be a pleasure to chat with you! ππ«
# -*- coding: utf-8 -*-
"""
@author: lprtk
"""
class DataScientist:
def __init__(self) -> None:
self.name = "lprtk"
self.role = "Data Science student"
self.languages = ["en_US", "fr_FR"]
self.age = 22
self.city = "Paris"
self.nationality = "French"
def description(self) -> str:
return f"Hi! My name is {self.name}, I'm {self.age} years old and I'm a {self.nationality} {self.role} in {self.city}"
me = DataScientist()
me.description()
Β
Β
Β
Β
Β
Β
Β
Β
Β
Β
Β
Β
Β
Β
Β
Β