#!/usr/bin/python
# -*- coding: utf-8 -*-
class Person:
def __init__(self):
self.name = "Szymon"
self.role = "Junior Machine Learning Engienner"
def info(self):
print("Explainable Artificial Intelligence - Find out about your AI model's decisions")
def fun(self):
print("Fun fact: the heads on Easter Island have bodies 🗿")
me = Person()
me.info()
me.fun()Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
