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