π Iβm currently working on building language models for Indian languages.
from typing import List
__author__ = "Eswar Divi"
__email__ = "eswar.divi.902@gmail.com"
__description__ = (
"π Pythonista | π Open-source enthusiastic | π¬ Deep Learning|"
)
__location__ = "π Anytown, SomeWhere"
__github__ = "https://github.com/EswarDivi"
class Who:
def __init__(self):
self.author = __author__
self.email = __email__
self.description = __description__
self.location = __location__
self.github = __github__
self.interests = [
"π Data science",
"π€ Machine learning",
]
def get_interests(self) -> str:
return " | ".join(self.interests)
def get_skills(self) -> str:
return " | ".join(self.skills)
def __repr__(self):
return f"<h1>{self.author}</h1><p>{self.description}</p><p>{self.location}</p><p>Interests: {self.get_interests()}</p><a href='{self.github}' target='_blank'>Check out my code on GitHub</a>"
Who()
π Pythonista | π Open-source evangelist | π¬ Deep Learning
π Anytown, SomeWhere
Interests: π Data science | π€ Machine learning
Check out my code on GitHub