Machine Translation
If you want to improve existing machine translation capabilities, you want to provide a dataset with robust and accurate translation examples. Use this template to read a text in one language and store a translation in another language.
标注配置
<View>
<View style="display: grid; grid-template: auto/1fr 1fr; column-gap: 1em">
<Header value="Read the text in English" />
<Header value="Provide translation in Spanish" />
<Text name="english" value="$english" />
<TextArea name="spanish" toName="english" transcription="true"
showSubmitButton="true" maxSubmissions="1" editable="true"
required="true" rows="5"/>
</View>
</View>
关于标注配置
所有标注配置必须包含在View标签内。
在View标签上应用样式,将两个文本样本和标题并排放置:
<View style="display: grid; grid-template: auto/1fr 1fr; column-gap: 1em">
您可以添加一个header来为标注者提供说明:
<Header value="Read the text in English" />
<Header value="Provide translation in Spanish" />
Use the Text object tag to specify the text to be translated:
<Text name="english" value="$english" />
Use the TextArea control tag to provide an editable, required text box to provide a translation of the text, and include a Submit button for annotators:
<TextArea name="spanish" toName="english" transcription="true"
showSubmitButton="true" maxSubmissions="1" editable="true"
required="true" rows="5"/>