evaluator_weighted_estimator()¶
- audpsychometric.evaluator_weighted_estimator(ratings, *, axis=1)[source]¶
Evaluator weighted estimator (EWE) of raters’ votes.
The EWE is described in [CHonigZ+16] as follows:
The EWE average of the individual ratings considers that each evaluator is subject to an individual amount of disturbance during the evaluation, by introducing evaluator-dependent weights that correspond to the correlation between the listener’s responses and the average ratings of all evaluators.
See also audformat#102 for implementation details.
- Parameters
- Return type
- Returns
EWE over raters
Examples
>>> evaluator_weighted_estimator([[1, 1, 0], [2, 2, 1]]) array([0.66666667, 1.66666667])