███╗ ██╗██╗██╗ ██╗██╗ ██╗██╗██╗
████╗ ██║██║██║ ██╔╝██║ ██║██║██║
██╔██╗ ██║██║█████╔╝ ███████║██║██║
██║╚██╗██║██║██╔═██╗ ██╔══██║██║██║
██║ ╚████║██║██║ ██╗██║ ██║██║███████╗
╚═╝ ╚═══╝╚═╝╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝
AI Engineer · UT Dallas · Building the future, one model at a time
class NikhilMarisetty:
def __init__(self):
self.university = "UT Dallas"
self.focus = ["Machine Learning", "Deep Learning", "Robotics"]
self.languages = ["Python", "JavaScript/TypeScript", "Java", "C++", "SQL"]
def say_hi(self):
print("Thanks for stopping by! Let's build something amazing together 🚀")
me = NikhilMarisetty()
me.say_hi()

