About me

Greetings! 🌟

I am Rubin, a recent computer science alum from The University of Alberta. Currently, I am enrolled in a master’s program in Korea.

🔍 Research Focus: Generative AI - VAEs, GANs, and Diffusion models.

💡 Expertise: PyTorch, TensorFlow, AI & Deep Learning

🚀 Passions: Exploring the frontiers of Generative AI—transforming ideas into digital realities through advanced models and technologies.

Feel free to reach out to me for collaboration, questions, or just to exchange ideas about my research area. I’m always open to discussing new projects and opportunities!

rubrub_profile_pic

def print_heart(message):
    for row in range(6):
        for col in range(7):
            if (row == 0 and col % 3 != 0) or (row == 1 and col % 3 == 0) or (row - col == 2) or (row + col == 8):
                print("*", end=" ")
            else:
                print(end="  ")
        print()  # Move to the next line
    print(f"{message}")

if __name__ == "__main__":
    print_heart("\n♡ Welcome to RubRub's Blog ♡\n")