RaterType¶
- class audformat.define.RaterType[source]¶
Rater type of column.
Specifies string values representing rater types of different columns in a tables or misc table. Those string values have to be provided as
typeargument toaudformat.Rater. The exact string values are part of the rater specifications, and should never be changed by a user.
__eq__()¶
- RaterType.__eq__(value, /)¶
Return self==value.
HUMAN¶
- RaterType.HUMAN = 'human'¶
Human rater type.
MACHINE¶
- RaterType.MACHINE = 'machine'¶
Machine rater type.
OTHER¶
- RaterType.OTHER = 'other'¶
Other rater type.
TRUTH¶
- RaterType.TRUTH = 'ground truth'¶
Ground truth rater type.
VOTE¶
- RaterType.VOTE = 'vote'¶
Vote rater type.