Choice

The Choice tag represents a single choice for annotations. Use with the Choices tag or Taxonomy tag to provide specific choice options.

Parameters

Param Type Description
value string Choice value
[selected] boolean Specify whether to preselect this choice on the labeling interface
[alias] string Alias for the choice. If used, the alias replaces the choice value in the annotation results. Alias does not display in the interface.
[style] style CSS style of the checkbox element
[hotkey] string Hotkey for the selection

Example

Basic text classification labeling configuration

<View>
  <Choices name="gender" toName="txt-1" choice="single">
    <Choice value="Man" />
    <Choice value="Woman" />
    <Choice value="Nonbinary" />
    <Choice value="Other" />
  </Choices>
  <Text name="txt-1" value="John went to see Mary" />
</View>