Example #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()
Example #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()
Example #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()
Example #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()
Example #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()
Example #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()
Example #7
0
 def train(self):
     """Train on the current dataset, for a single epoch."""
     abstractMethod()
 def _backwardImplementation(self, outerr, inerr, inbuf):
     abstractMethod()
Example #9
0
 def distributionLength(self):
     abstractMethod()
Example #10
0
 def getActionValues(self, state):
     abstractMethod()
 def calculateGradient(self):
     abstractMethod()
Example #12
0
 def updater(self, pos, neg, poshb, neghb, posvb, negvb):
     abstractMethod()
Example #13
0
 def mutate(self, **args):
     """ Vary some properties of the underlying module, so that it's behavior 
     changes, (but not too abruptly). """
     abstractMethod()
Example #14
0
 def removeFromEnv(self, env):                   #Called upon removing
     abstractMethod()    
Example #15
0
 def sampler(self, probabilities):
     abstractMethod()
Example #16
0
 def updateState(self, env, dt):                 #dt in seconds
     abstractMethod()        
Example #17
0
 def draw(self, env):
     abstractMethod()
Example #18
0
 def position(self):
     abstractMethod()
Example #19
0
 def color(self):                                #Tuple of r, g, b
     abstractMethod()
Example #20
0
 def _initPhysics(self, *args):                           #Responsibility is on the superclasses to create a shape and body
     abstractMethod()        
Example #21
0
 def __call__(self, *args, **kwargs):
     """ @rtype: float """
     abstractMethod()
Example #22
0
 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()
Example #24
0
 def _forwardImplementation(self, inbuf, outbuf):
     """Actual forward transformation function. To be overwritten in
     subclasses."""
     abstractMethod()
Example #25
0
 def calculateGradient(self):
     abstractMethod()
 def f(self, x):
     """ The function itself, to be defined by subclasses """
     abstractMethod()
Example #27
0
 def _learnStep(self):
     """ The core method to be implemented by all subclasses. """
     abstractMethod()        
Example #28
0
 def combine(self, classifiers, input):
     """Receives list of trained classifers """
     abstractMethod()
Example #29
0
 def produceOffspring(self):
     """ generate the new generation of offspring, given the current population, and their fitnesses """
     abstractMethod()
Example #30
0
 def _build(self, dataset):
     abstractMethod()
Example #31
0
 def learn(self):
     """ The main method, that invokes a learning step. """
     abstractMethod()
 def _forwardImplementation(self, inbuf, outbuf):
     abstractMethod()
Example #33
0
 def _getCombinedDistribution(self, distributionMatrix, numClassifiers):
     abstractMethod()
Example #34
0
 def initPopulation(self):
     """ initialize the population """
     abstractMethod()
Example #35
0
 def getDistribution(self, input):
     """Returns NumPy array of posterior distributions for each class."""
     abstractMethod()
Example #36
0
 def randomize(self):
     """ Sets all variable parameters to random values. """
     abstractMethod()
Example #37
0
 def isFinished(self):
     """ Is the current episode over? """
     abstractMethod()
 def f(self, x):
     """ The function itself, to be defined by subclasses """
     abstractMethod()
Example #39
0
 def produceOffspring(self):
     """ generate the new generation of offspring, given the current population, and their fitnesses """
     abstractMethod()
Example #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()
Example #41
0
 def _forwardImplementation(self, inbuf, outbuf):
     """Actual forward transformation function. To be overwritten in 
     subclasses."""
     abstractMethod()
Example #42
0
 def _learnStep(self):
     """ The core method to be implemented by all subclasses. """
     abstractMethod()        
Example #43
0
 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()
Example #45
0
 def isFinished(self):
     """ Is the current episode over? """
     abstractMethod()
Example #46
0
 def topologyMutate(self):
     abstractMethod()
Example #47
0
 def sampler(self, probabilities):
     abstractMethod()
Example #48
0
 def learn(self):
     """ learn on the current dataset, for a single epoch
         @note: has to be implemented by all subclasses. """
     abstractMethod()
Example #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()
Example #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()
Example #51
0
 def randomize(self):
     """ randomly set all variable parameters """
     abstractMethod()
Example #52
0
 def updateData(self):
     """ overwrite this class to update whatever data the renderer needs to display the current
         state of the world. """
     abstractMethod()
Example #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()
Example #54
0
 def _render(self):
     """ Here, the render methods are called. This function has to be implemented by subclasses. """
     abstractMethod()
Example #55
0
 def getMaxAction(self, state):
     abstractMethod()
Example #56
0
 def learn(self):
     """ The main method, that invokes a learning step. """
     abstractMethod()
Example #57
0
 def getReward(self):
     """ Compute and return the current reward (i.e. corresponding to the last action performed) """
     return abstractMethod()
Example #58
0
 def initPopulation(self):
     """ initialize the population """
     abstractMethod()