示例#1
0
 def getSensors(self):
     """ the currently visible state of the world (the observation may be 
         stochastic - repeated calls returning different values)
         @rtype: by default, this is assumed to be a numpy array of doubles
         @note: This function is abstract and has to be implemented.
     """
     abstractMethod()
示例#2
0
 def performAction(self, action):
     """ perform an action on the world that changes it's internal state (maybe stochastically) 
         @param action: an action that should be executed in the Environment, by an agent. 
         @type action: tuple: (agentID, action value)
         @note: This function is abstract and has to be implemented.
     """
     abstractMethod()
示例#3
0
 def performAction(self, action):
     """ perform an action on the world that changes it's internal state (maybe stochastically) 
         @param action: an action that should be executed in the Environment, by an agent. 
         @type action: tuple: (agentID, action value)
         @note: This function is abstract and has to be implemented.
     """
     abstractMethod()
示例#4
0
 def performAction(self, action):
     """ perform an action on the world that changes it's internal state (maybe stochastically) 
         @param action: an action that should be executed in the Environment. 
         @type action: by default, this is assumed to be a numpy array of doubles
         @note: This function is abstract and has to be implemented.
     """
     abstractMethod()
示例#5
0
 def getSensors(self):
     """ the currently visible state of the world (the observation may be 
         stochastic - repeated calls returning different values)
         @rtype: by default, this is assumed to be a numpy array of doubles
         @note: This function is abstract and has to be implemented.
     """
     abstractMethod()
示例#6
0
 def performAction(self, action):
     """ perform an action on the world that changes it's internal state (maybe stochastically) 
         @param action: an action that should be executed in the Environment. 
         @type action: by default, this is assumed to be a numpy array of doubles
         @note: This function is abstract and has to be implemented.
     """
     abstractMethod()
示例#7
0
 def train(self):
     """Train on the current dataset, for a single epoch."""
     abstractMethod()
 def _backwardImplementation(self, outerr, inerr, inbuf):
     abstractMethod()
示例#9
0
 def distributionLength(self):
     abstractMethod()
示例#10
0
 def getActionValues(self, state):
     abstractMethod()
 def calculateGradient(self):
     abstractMethod()
示例#12
0
 def updater(self, pos, neg, poshb, neghb, posvb, negvb):
     abstractMethod()
示例#13
0
 def mutate(self, **args):
     """ Vary some properties of the underlying module, so that it's behavior 
     changes, (but not too abruptly). """
     abstractMethod()
示例#14
0
 def removeFromEnv(self, env):                   #Called upon removing
     abstractMethod()    
示例#15
0
文件: rbm.py 项目: DanSGraham/code
 def sampler(self, probabilities):
     abstractMethod()
示例#16
0
 def updateState(self, env, dt):                 #dt in seconds
     abstractMethod()        
示例#17
0
 def draw(self, env):
     abstractMethod()
示例#18
0
 def position(self):
     abstractMethod()
示例#19
0
 def color(self):                                #Tuple of r, g, b
     abstractMethod()
示例#20
0
 def _initPhysics(self, *args):                           #Responsibility is on the superclasses to create a shape and body
     abstractMethod()        
示例#21
0
 def __call__(self, *args, **kwargs):
     """ @rtype: float """
     abstractMethod()
示例#22
0
文件: rbm.py 项目: DanSGraham/code
 def updater(self, pos, neg, poshb, neghb, posvb, negvb):
     abstractMethod()
 def _updateWeights(self, state, action, reward, next_state):
     '''
     Expected to update Q-value approximator. 
     '''
     abstractMethod()
示例#24
0
 def _forwardImplementation(self, inbuf, outbuf):
     """Actual forward transformation function. To be overwritten in
     subclasses."""
     abstractMethod()
示例#25
0
 def calculateGradient(self):
     abstractMethod()
 def f(self, x):
     """ The function itself, to be defined by subclasses """
     abstractMethod()
示例#27
0
 def _learnStep(self):
     """ The core method to be implemented by all subclasses. """
     abstractMethod()        
示例#28
0
 def combine(self, classifiers, input):
     """Receives list of trained classifers """
     abstractMethod()
示例#29
0
 def produceOffspring(self):
     """ generate the new generation of offspring, given the current population, and their fitnesses """
     abstractMethod()
示例#30
0
 def _build(self, dataset):
     abstractMethod()
示例#31
0
 def learn(self):
     """ The main method, that invokes a learning step. """
     abstractMethod()
 def _forwardImplementation(self, inbuf, outbuf):
     abstractMethod()
示例#33
0
 def _getCombinedDistribution(self, distributionMatrix, numClassifiers):
     abstractMethod()
示例#34
0
 def initPopulation(self):
     """ initialize the population """
     abstractMethod()
示例#35
0
 def getDistribution(self, input):
     """Returns NumPy array of posterior distributions for each class."""
     abstractMethod()
示例#36
0
 def randomize(self):
     """ Sets all variable parameters to random values. """
     abstractMethod()
示例#37
0
 def isFinished(self):
     """ Is the current episode over? """
     abstractMethod()
 def f(self, x):
     """ The function itself, to be defined by subclasses """
     abstractMethod()
示例#39
0
 def produceOffspring(self):
     """ generate the new generation of offspring, given the current population, and their fitnesses """
     abstractMethod()
示例#40
0
 def doMove(self, player, action):
     """ the core method to be implemented bu all TwoPlayerGames: 
     what happens when a player performs an action. """
     abstractMethod()
示例#41
0
 def _forwardImplementation(self, inbuf, outbuf):
     """Actual forward transformation function. To be overwritten in 
     subclasses."""
     abstractMethod()
示例#42
0
 def _learnStep(self):
     """ The core method to be implemented by all subclasses. """
     abstractMethod()        
示例#43
0
文件: evaluator.py 项目: HKou/pybrain
 def __call__(self, *args, **kwargs):
     """ @rtype: float """
     abstractMethod()
 def _qValues(self, state):
     """ Return vector of probability of policy for all actions, 
     given the state(-features). """
     abstractMethod()
示例#45
0
 def isFinished(self):
     """ Is the current episode over? """
     abstractMethod()
示例#46
0
 def topologyMutate(self):
     abstractMethod()
示例#47
0
 def sampler(self, probabilities):
     abstractMethod()
示例#48
0
 def learn(self):
     """ learn on the current dataset, for a single epoch
         @note: has to be implemented by all subclasses. """
     abstractMethod()
示例#49
0
 def getAction(self):
     """ Return a chosen action.
         :rtype: by default, this is assumed to ba a numpy array of doubles.
         :note: This method is abstract and needs to be implemented.
     """
     abstractMethod()
示例#50
0
 def doMove(self, player, action):
     """ the core method to be implemented bu all TwoPlayerGames: 
     what happens when a player performs an action. """
     abstractMethod()
示例#51
0
 def randomize(self):
     """ randomly set all variable parameters """
     abstractMethod()
示例#52
0
 def updateData(self):
     """ overwrite this class to update whatever data the renderer needs to display the current
         state of the world. """
     abstractMethod()
示例#53
0
 def getAction(self):
     """ return a chosen action.
         @rtype: by default, this is assumed to ba a numpy array of doubles.
         @note: This method is abstract and needs to be implemented.
     """
     abstractMethod()
示例#54
0
 def _render(self):
     """ Here, the render methods are called. This function has to be implemented by subclasses. """
     abstractMethod()
示例#55
0
 def getMaxAction(self, state):
     abstractMethod()
示例#56
0
 def learn(self):
     """ The main method, that invokes a learning step. """
     abstractMethod()
示例#57
0
 def getReward(self):
     """ Compute and return the current reward (i.e. corresponding to the last action performed) """
     return abstractMethod()
示例#58
0
 def initPopulation(self):
     """ initialize the population """
     abstractMethod()