Example #1
0
 def getBestAction(self, state):
     """ returns the action with the highest value in the given state. """
     abstractMethod()
Example #2
0
 def classify(self, inp):
     """ predict the output for the given input. """
     abstractMethod()
Example #3
0
 def getValue(self, state, action):
     """ returns the value of the (state, action) tuple. """
     abstractMethod()