本文整理汇总了Python中gym.monitoring方法的典型用法代码示例。如果您正苦于以下问题:Python gym.monitoring方法的具体用法?Python gym.monitoring怎么用?Python gym.monitoring使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gym
的用法示例。
在下文中一共展示了gym.monitoring方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: set_log_dir
# 需要导入模块: import gym [as 别名]
# 或者: from gym import monitoring [as 别名]
def set_log_dir(self, log_dir):
if self.env.monitor.enabled:
self.env.monitor.close()
if log_dir is not None:
self.env.monitor.start(log_dir, self.video_schedule)
self.monitoring = True
else:
self.monitoring = False
示例2: terminate
# 需要导入模块: import gym [as 别名]
# 或者: from gym import monitoring [as 别名]
def terminate(self):
if self.monitoring:
self.env.monitor.close()
self.env.close() # Prevents a memory leak
# NB: adding a close(self) routine that also closes the env does not have any effect
示例3: __init__
# 需要导入模块: import gym [as 别名]
# 或者: from gym import monitoring [as 别名]
def __init__(self, env, pms, type="origin"):
self.env = env
self.type = type
self.video_schedule = None
self.pms = pms
if not self.pms.record_movie:
self.video_schedule = NoVideoSchedule()
else:
if self.video_schedule is not None:
self.video_schedule = CappedCubicVideoSchedule()
self.env.monitor.start("log/trpo" ,self.video_schedule, force=True)
self.monitoring = True