指南 3个标注团队操作手册:提升标注速度与质量

带片段的音频分类

如果您想在音频片段的特定部分执行音频分类任务,可以使用此模板来收听音频文件并对片段主题进行分类。

交互式模板预览

标注配置

<View>
  <Header value="Select its topic:"></Header>
  <Labels name="label" toName="audio" choice="multiple">
    <Label value="Politics" background="yellow"></Label>
    <Label value="Business" background="red"></Label>
    <Label value="Education" background="blue"></Label>
    <Label value="Other"></Label>
  </Labels>
  <Header value="Listen to the audio:"></Header>
  <Audio name="audio" value="$url"></Audio>
</View>

关于标注配置

所有标注配置必须包含在View标签内。

您可以添加一个header来为标注者提供说明:

<Header value="Select its topic:"></Header>

使用Labels控制标签,允许标注员同时对音频进行分段和分类。

<Labels name="label" toName="audio" choice="multiple">
    <Label value="Politics" background="yellow"></Label>
    <Label value="Business" background="red"></Label>
    <Label value="Education" background="blue"></Label>
    <Label value="Other"></Label>
</Labels>

choice="multiple" 参数允许为一个音频片段标注多个主题。

使用Audio对象标签来指定要分类的音频文件位置:

<Audio name="audio" value="$url"></Audio>