动手学强化学习 第 12 章 PPO 算法 训练代码
创始人
2024-11-14 22:04:57
0

基于 Hands-on-RL/第12章-PPO算法.ipynb at main · boyu-ai/Hands-on-RL · GitHub

理论 PPO 算法

修改了警告和报错

运行环境

Debian GNU/Linux 12 Python 3.9.19 torch 2.0.1 gym 0.26.2

运行代码

PPO.py

#!/usr/bin/env python   import gym import torch import torch.nn.functional as F import numpy as np import matplotlib.pyplot as plt import rl_utils   class PolicyNet(torch.nn.Module):     def __init__(self, state_dim, hidden_dim, action_dim):         super(PolicyNet, self).__init__()         self.fc1 = torch.nn.Linear(state_dim, hidden_dim)         self.fc2 = torch.nn.Linear(hidden_dim, action_dim)      def forward(self, x):         x = F.relu(self.fc1(x))         return F.softmax(self.fc2(x), dim=1)   class ValueNet(torch.nn.Module):     def __init__(self, state_dim, hidden_dim):         super(ValueNet, self).__init__()         self.fc1 = torch.nn.Linear(state_dim, hidden_dim)         self.fc2 = torch.nn.Linear(hidden_dim, 1)      def forward(self, x):         x = F.relu(self.fc1(x))         return self.fc2(x)   class PPO:     ''' PPO算法,采用截断方式 '''      def __init__(self, state_dim, hidden_dim, action_dim, actor_lr, critic_lr,                  lmbda, epochs, eps, gamma, device):         self.actor = PolicyNet(state_dim, hidden_dim, action_dim).to(device)         self.critic = ValueNet(state_dim, hidden_dim).to(device)         self.actor_optimizer = torch.optim.Adam(self.actor.parameters(),                                                 lr=actor_lr)         self.critic_optimizer = torch.optim.Adam(self.critic.parameters(),                                                  lr=critic_lr)         self.gamma = gamma         self.lmbda = lmbda         self.epochs = epochs  # 一条序列的数据用来训练轮数         self.eps = eps  # PPO中截断范围的参数         self.device = device      def take_action(self, state):         state = torch.tensor(np.array([state]), dtype=torch.float).to(self.device)         probs = self.actor(state)         action_dist = torch.distributions.Categorical(probs)         action = action_dist.sample()         return action.item()      def update(self, transition_dict):         states = torch.tensor(np.array(transition_dict['states']),                               dtype=torch.float).to(self.device)         actions = torch.tensor(transition_dict['actions']).view(-1, 1).to(             self.device)         rewards = torch.tensor(transition_dict['rewards'],                                dtype=torch.float).view(-1, 1).to(self.device)         next_states = torch.tensor(np.array(transition_dict['next_states']),                                    dtype=torch.float).to(self.device)         dones = torch.tensor(transition_dict['dones'],                              dtype=torch.float).view(-1, 1).to(self.device)         td_target = rewards + self.gamma * self.critic(next_states) * (1 -                                                                        dones)         td_delta = td_target - self.critic(states)         advantage = rl_utils.compute_advantage(self.gamma, self.lmbda,                                                td_delta.cpu()).to(self.device)         old_log_probs = torch.log(self.actor(states).gather(1,                                                             actions)).detach()          for _ in range(self.epochs):             log_probs = torch.log(self.actor(states).gather(1, actions))             ratio = torch.exp(log_probs - old_log_probs)             surr1 = ratio * advantage             surr2 = torch.clamp(ratio, 1 - self.eps,                                 1 + self.eps) * advantage  # 截断             actor_loss = torch.mean(-torch.min(surr1, surr2))  # PPO损失函数             critic_loss = torch.mean(                 F.mse_loss(self.critic(states), td_target.detach()))             self.actor_optimizer.zero_grad()             self.critic_optimizer.zero_grad()             actor_loss.backward()             critic_loss.backward()             self.actor_optimizer.step()             self.critic_optimizer.step()   actor_lr = 1e-3 critic_lr = 1e-2 num_episodes = 500 hidden_dim = 128 gamma = 0.98 lmbda = 0.95 epochs = 10 eps = 0.2 device = torch.device("cuda") if torch.cuda.is_available() else torch.device(     "cpu")  env_name = 'CartPole-v1' env = gym.make(env_name) env.reset(seed=0) torch.manual_seed(0) state_dim = env.observation_space.shape[0] action_dim = env.action_space.n agent = PPO(state_dim, hidden_dim, action_dim, actor_lr, critic_lr, lmbda,             epochs, eps, gamma, device)  return_list = rl_utils.train_on_policy_agent(env, agent, num_episodes)  episodes_list = list(range(len(return_list))) plt.plot(episodes_list, return_list) plt.xlabel('Episodes') plt.ylabel('Returns') plt.title('PPO on {}'.format(env_name)) plt.show()  mv_return = rl_utils.moving_average(return_list, 9) plt.plot(episodes_list, mv_return) plt.xlabel('Episodes') plt.ylabel('Returns') plt.title('PPO on {}'.format(env_name)) plt.show() 

rl_utils.py 参考

动手学强化学习 第 11 章 TRPO 算法 训练代码-CSDN博客

相关内容

热门资讯

终于知道!wepoker有透视... 终于知道!wepoker有透视底牌吗,微信闲来辅助神器,大纲教程(有挂辅助)1、完成微信闲来辅助神器...
科技分享!wepoker怎么拿... 科技分享!wepoker怎么拿到好牌,大唐麻将开挂软件,举措教程(揭秘有挂)1、玩家可以在大唐麻将开...
值得注意的是!线上德州的辅助器... 值得注意的是!线上德州的辅助器是什么,逗娱碰胡开挂,指南书教程(有挂猫腻)1)逗娱碰胡开挂有没有挂:...
分享认知!epoker免费透视... 分享认知!epoker免费透视脚本,微乐小程序辅助开发,方针教程(有挂功能)微乐小程序辅助开发是不是...
为切实保障!wepoker透视... 为切实保障!wepoker透视底牌脚本,福建13水软件辅助,法门教程(的确有挂)1.福建13水软件辅...
据公告内容!约局吧德州真的存在... 据公告内容!约局吧德州真的存在透视吗,天道手游辅助,手册教程(有挂详情)1、用户打开应用后不用登录就...
科技通报!wepoker游戏下... 科技通报!wepoker游戏下载,免费挂机辅助工具,手册教程(有挂教学)1、操作简单,无需免费挂机辅...
今日科普!wepoker底牌透... 今日科普!wepoker底牌透视脚本,微信小程序多乐辅助器,大纲教程(有挂技巧)1.微信小程序多乐辅...
事发当天!德州透视hhpoke... 事发当天!德州透视hhpoker,微信呢途游四川辅助器,绝活教程(有挂详细)1、玩家可以在微信呢途游...
分享一款!hhpoker德州挂... 分享一款!hhpoker德州挂真的有吗,杭州都莱有没有挂,窍门教程(有挂详细);杭州都莱有没有挂能透...