Skip to content
View DevSlem's full-sized avatar

Organizations

@Team-UGD @CS-PingPing @ComPPing

Block or report DevSlem

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Content in all repositories owned by your account will be closed.
Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
DevSlem/README.md

I'm Jinyeong (DevSlem)! 👋

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

Pinned Loading

  1. Mol-AIR Mol-AIR Public

    Molecular Reinforcement Learning with Adaptive Intrinsic Reward for Goal-directed Molecular Generation.

    Python 29 4

  2. multiple-knapsack multiple-knapsack Public

    Optimize multiple knapsack problem using reinforcement learning.

    Python 16

  3. AINE-DRL AINE-DRL Public

    AINE-DRL is a deep reinforcement learning (DRL) baseline framework. AINE means "Agent IN Environment".

    Python 10 2

  4. unity-move-tool unity-move-tool Public

    Unity editor position handle utility for the fields like Vector3, not GameObject.

    C# 12 1

  5. Team-UGD/back-to-the-dungeon-scripts Team-UGD/back-to-the-dungeon-scripts Public

    We share scripts used for "Back to The Dungeon" project.

    C# 2 2