I'm an AI enthusiast passionate about machine learning, entrepreneurship, and sports. I'm currently pursuing a Data Science internship at Elsevier, focusing on RAG and NLP methods in healthcare domains. I’m also completing an MSc in Data Science at the University of Amsterdam and recently graduated with a BSc in Computer Science (Class One Honours) from the University of Sheffield. My goal is to deliver high-quality software products and develop AI-based solutions that enhance our lives, particularly in healthcare and sports!
👇 Find out more below...
import random
class Chizo(Human):
def __init__(self) -> None:
'''
Let's get some basic facts.
'''
self.name = 'Filip Cierkosz'
self.roles = ['Data Scientist', 'Student', 'Athlete']
self.coding_skills = {
'languages': ['Python', 'Ruby', 'JavaScript', 'Java'],
'ml_stack': ['Transformers', 'PyTorch', 'OpenCV', 'Ollama'],
'se_stack': ['Ruby on Rails', 'React', 'MySQL', 'PostgreSQL', 'MongoDB'],
'devops': ['Docker', 'GitHub Actions', 'Heroku', 'Databricks'],
'os': ['macOS', 'Ubuntu']
}
self.language_skills = ['English', 'Polish', 'German']
@staticmethod
def get_motto() -> None:
'''
Let's shuffle some motto for extra discipline!
'''
mottos = [
'"Insanity is doing the same thing over and over again and expecting different results." ~ A. Einstein',
'"DISCIPLINE == FREEDOM." ~ J. Willink',
'"A bad plan is better than no plan." ~ J.B. Peterson',
'"Being consistently good is better than being occasionally great." ~ N. Bare',
]
print(random.choice(mottos))
def greet(self) -> None:
'''
Say hi to the visitor.
'''
print("Thanks for visiting the profile! Don't forget to ⭐️ the projects and keep up the hard work! 🚀")
if __name__ == '__main__':
me = Chizo()
me.get_motto()
me.greet()