GENiALi / RockRL

Reinforcement Learning library for public

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

RockRL

Reinforcement Learning library for public, for now, it only supports TensorFlow.

Installation

pip install rockrl

Environment requirements

RL algorithms are implemented to support gymnasium==0.29.1 version. Main requirements are that:

  • env.reset() would return state and info states.
  • env.step(action) would return state, reward, terminated, truncated, info states.

Supported Algorithms

  • PPO (Discrete and Continuous)

Code Examples

Proximal Policy Optimization (PPO):

About

Reinforcement Learning library for public

License:MIT License


Languages

Language:Python 100.0%