本文整理匯總了Python中pybrain.rl.environments.episodic.EpisodicTask.reset方法的典型用法代碼示例。如果您正苦於以下問題:Python EpisodicTask.reset方法的具體用法?Python EpisodicTask.reset怎麽用?Python EpisodicTask.reset使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類pybrain.rl.environments.episodic.EpisodicTask
的用法示例。
在下文中一共展示了EpisodicTask.reset方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: reset
# 需要導入模塊: from pybrain.rl.environments.episodic import EpisodicTask [as 別名]
# 或者: from pybrain.rl.environments.episodic.EpisodicTask import reset [as 別名]
def reset(self):
self.switched = False
EpisodicTask.reset(self)
if self.opponent.color == EuphoriaGame.BLACK:
# first move by opponent
self.opponent.game = self.env
EpisodicTask.performAction(self, (EuphoriaGame.BLACK,self.opponent.getAction()))
示例2: reset
# 需要導入模塊: from pybrain.rl.environments.episodic import EpisodicTask [as 別名]
# 或者: from pybrain.rl.environments.episodic.EpisodicTask import reset [as 別名]
def reset(self):
self.current_time = self.prev_time = 0.0
if const.USE_PERIODS:
self.current_time = self.prev_time = random.uniform(0,const.PERIODS)
self.current_time = const.MID_DAY
#print "ST", self.current_time
self.start_time = self.current_time
self.counter = 0
#choose a random node that is not the destination
node = grid.node_number(const.DESTINATION)
while(node == grid.node_number(const.DESTINATION)):
node = random.randint(0, const.NODES - 1)
#See what happens
if const.SAME_START:
node = 0
# while(node == grid.node_number(const.DESTINATION)):
# node = random.randint(0, const.NODES - 1)
self.start_node = node
self.env.reset_grid(self.current_time, node)
EpisodicTask.reset(self)
示例3: reset
# 需要導入模塊: from pybrain.rl.environments.episodic import EpisodicTask [as 別名]
# 或者: from pybrain.rl.environments.episodic.EpisodicTask import reset [as 別名]
def reset(self):
self.switched = False
EpisodicTask.reset(self)
if self.opponent.color == CaptureGame.BLACK:
# first move by opponent
EpisodicTask.performAction(self, self.opponent.getAction())
示例4: reset
# 需要導入模塊: from pybrain.rl.environments.episodic import EpisodicTask [as 別名]
# 或者: from pybrain.rl.environments.episodic.EpisodicTask import reset [as 別名]
def reset(self):
#i suppose this is the proper way to do it?
EpisodicTask.reset(self)
self.env.reset()
示例5: reset
# 需要導入模塊: from pybrain.rl.environments.episodic import EpisodicTask [as 別名]
# 或者: from pybrain.rl.environments.episodic.EpisodicTask import reset [as 別名]
def reset(self):
EpisodicTask.reset(self)
self.env.reset()
self._ended = False
示例6: reset
# 需要導入模塊: from pybrain.rl.environments.episodic import EpisodicTask [as 別名]
# 或者: from pybrain.rl.environments.episodic.EpisodicTask import reset [as 別名]
def reset(self):
EpisodicTask.reset(self)
self.counter = 0