SubProcVecEnv 发生 ConnectionResetError: [Errno 104] 连接被对端重置
作者: MakisKans创建于 2020年1月28日更新于 2024年10月23日
class RewardScaler(gym.RewardWrapper): """ Bring rewards to a reasonable scale for PPO. This is incredibly important and effects performance drastically. """ def reward(self, reward): return reward * 0.01
内容来源: openai/baselines