I'm a Ph.D. student at Dongguk University under the guidance of Prof. Chul Lee.
My main interest is machine learning, particularly questions related to deep learning for image processing and representation learning.
#!/usr/bin/python
# -*- coding: utf-8 -*-
class PhDStudent:
def __init__(self):
self.name = "Duong Nguyen"
self.role = "Ph.D. Student"
self.language_spoken = ["en_US", "vn_VN"]
def say_hi(self):
print("Thanks for dropping by!")
me = PhDStudent()
me.say_hi()