Skip to content

Learning Algorithms

Jianhong Wang edited this page Nov 1, 2021 · 3 revisions

Implemented Reinforcement Learning Algorithms

This folder includes 3 fundamental RL algorithms that can support the implementation of advanced multi-agent algorithms (models).

class actor_critic.ActorCritic(args)

class ddpg.DDPG(args)

class ppo.PPO(args)

Add new Learning Algorithms.

If you would add new learning algorithms, you need to create a new .py file under the folder learning_algorithms and implement a class that inherits class rl_algorithms.ReinforcementLearning(name, args).

Clone this wiki locally