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

自动语音识别

聆听音频文件并以自然语言转录其内容,执行语音识别。

交互式模板预览

标注配置

<View>
  <Audio name="audio" value="$audio" zoom="true" hotkey="ctrl+enter" />
  <Header value="Provide Transcription" />
  <TextArea name="transcription" toName="audio" rows="4" editable="true" maxSubmissions="1" />
</View>

关于标注配置

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

使用Audio对象标签配合hotkey参数,可以让标注者在标注界面通过特定快捷键播放音频,并使用zoom="true"参数允许标注者对音频波形进行放大:

<Audio name="audio" value="$audio" zoom="true" hotkey="ctrl+enter" />

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

<Header value="Provide Transcription" />

使用 TextArea 控件标签提示标注者为音频添加文字记录:

<TextArea name="transcription" toName="audio" rows="4" editable="true" maxSubmissions="1" />

rows="4" 参数可配置标注界面上文本框的显示大小。maxSubmissions="1" 参数限制标注人员对音频片段最多只能提交一份转录文本,而 editable="true" 参数允许标注人员编辑转录文本。