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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only 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 deep learning and reinforcement learning. 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

πŸ”₯ Future Works

  • State space model for drug design
  • Spiking neural network (SNN)
  • RL comparison for data-driven combinatorial optimization
  • Utilizing and developping the RL-based reasoning model R1 for other domains

πŸš€ Projects

Title (Year) ⬇️ Category Available Sources Description
Mol-AIR (2025) RL, Drug Design Repository / Paper Molecular reinforcement learning with adaptive intrinsic reward for goal-directed molecular generation
Incheon Bus Optimization (2025) ML, Transit Design Comming Soon! -
Multiple Knapsack (2024) RL, Combinatorial Repository Comprehensive comparison of RL methods for the multiple knapsack problem
AINE-DRL (2023) RL, Utility Repository / Download Deep reinforcement learning baseline framework
Move-Tool (2022) Unity, Utility Repository Unity editor position handle utility for the vector-like fields
Back to the Dungeon (2022) Unity, Game Repository / Download Unity 2D platformer shooting game

Pinned Loading

  1. Mol-AIR Mol-AIR Public

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

    Python 4 1

  2. multiple-knapsack multiple-knapsack Public

    Optimize multiple knapsack problem using reinforcement learning.

    Python 8

  3. AINE-DRL AINE-DRL Public

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

    Python 8 2

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

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

    C# 10 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