mlpy.learners.ILearner.type

ILearner.type

The type of the learner (i.e., online and offline).

During online learning the learning is performed during the episode or iteration, while offline learner do not perform the learning step until the end of the episode or iteration.

This property must be overwritten by its deriving class.

Returns:

str :

The type. Values can be either online or offline.

Raises:

NotImplementedError

If the child class does not implement this function.