AbstractAnalyzer.__call__#

abstractmethod AbstractAnalyzer.__call__(state, scores, rotation_matrix, **kwargs)[source]#

Update the analyzer state with new scoring data.

Parameters:
statetuple

Current analyzer state as returned AbstractAnalyzer.init_state() or previous invocations of AbstractAnalyzer.__call__().

scoresBackendArray

Array of new scores with dimensionality d.

rotation_matrixBackendArray

Rotation matrix used to generate scores with shape (d,d).

**kwargsdict

Keyword arguments used by specific implementations.

Returns:
tuple

Updated analyzer state incorporating the new data.