You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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).