Hi, I'm an AI researcher interested in Reinforcement Learning, Computer Vision, and Multimodal Learning. Please refer to the Curriculum Vitae for details. Feel free to see my projects and contact me.
University - Incheon National University
Blog - DevSlem Blog
E-mail - devslem12@gmail.com
LinkedIn - Jinyeong Park
Optimize my daily routine using reinforcement learning (Q-learning):
# take a step
S = "busy" # state
A = "play" in { "play", "work" } # action
S' = "boom" # next state
R = -100 # penalty
# learn from the experience
Q[S,A] += alpha * (R + gamma * max(Q[S',:]) - Q[S,A])
# but, still I don't want to work...
A' = "play" # next action


