コード例 #1
0
ファイル: boltzmann.py プロジェクト: pachkun/Machine_learning
 def activate(self, state, action):
     """ The super class ignores the state and simply passes the
         action through the module. implement _forwardImplementation()
         in subclasses.
     """
     self._state = state
     return DiscreteExplorer.activate(self, state, action)
コード例 #2
0
 def activate(self, state, action):
     """ The super class ignores the state and simply passes the
         action through the module. implement _forwardImplementation()
         in subclasses.
     """
     self._state = state
     return DiscreteExplorer.activate(self, state, action)
コード例 #3
0
ファイル: discretesde.py プロジェクト: davidmiller/pybrain
 def activate(self, state, action):
     """ Save the current state for state-dependent exploration. """
     self.state = state
     return DiscreteExplorer.activate(self, state, action)
コード例 #4
0
 def activate(self, state, action):
     """ Save the current state for state-dependent exploration. """
     self.state = state
     return DiscreteExplorer.activate(self, state, action)
コード例 #5
0
 def activate(self, state, action):
     self.state = state
     return DiscreteExplorer.activate(self, state, action)
コード例 #6
0
ファイル: egreedy.py プロジェクト: jaegs/AI_Practicum
 def activate(self, state, action):
     self.state = state
     return DiscreteExplorer.activate(self, state, action)