-
Notifications
You must be signed in to change notification settings - Fork 75
Learning Algorithms
Jianhong Wang edited this page Nov 1, 2021
·
3 revisions
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)
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).