当前位置: 首页>>代码示例>>Python>>正文


Python GameState.psc_set_psc_info方法代码示例

本文整理汇总了Python中game_state.GameState.psc_set_psc_info方法的典型用法代码示例。如果您正苦于以下问题:Python GameState.psc_set_psc_info方法的具体用法?Python GameState.psc_set_psc_info怎么用?Python GameState.psc_set_psc_info使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在game_state.GameState的用法示例。


在下文中一共展示了GameState.psc_set_psc_info方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: str

# 需要导入模块: from game_state import GameState [as 别名]
# 或者: from game_state.GameState import psc_set_psc_info [as 别名]
  # for pseudo-count
  if options.psc_use:
    psc_fname = options.checkpoint_dir + '/' + 'psc.' + str(global_t)
    if os.path.exists(psc_fname):
      with open(psc_fname, "rb") as f:
        psc_info = pickle.load(f)
      print("psc_info loaded:", psc_fname)
    else:
      print("psc_info does not exist and not loaded:", psc_fname)


game_state = GameState(0, options, display=options.display, no_op_max=30, thread_index=0)

# for pseudo-count
if options.psc_use:
  game_state.psc_set_psc_info(psc_info)

if options.use_gym and (options.record_screen_dir is not None):
  game_state.set_record_screen_dir(options.record_screen_dir)

for episode in range(options.num_episode_record):
  episode_record_dir = None
  if (not options.use_gym) and (options.record_screen_dir is not None):
    episode_dir = options.rom.split(".")[0] + "-e{:03d}".format(episode)
    episode_record_dir = os.path.join(options.record_screen_dir, episode_dir)
    os.makedirs(episode_record_dir)
    game_state.set_record_screen_dir(episode_record_dir)

  steps = 0
  reward = 0
  while True:
开发者ID:Itsukara,项目名称:async_deep_reinforce,代码行数:33,代码来源:a3c_display.py


注:本文中的game_state.GameState.psc_set_psc_info方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。