mlpy.learners.ILearner.learn

ILearner.learn(*args, **kwargs)[source]

Learn a policy from the experience.

Perform the learning step to derive a new policy taking the latest experience into account.

Parameters:

args : tuple

Positional arguments specific to the implementation of the learner

kwargs : dict

Non-positional arguments specific to the implementation of the learner

Raises:

NotImplementedError

If the child class does not implement this function.