HTML Entity Recognition

Perform named entity recognition for HTML documents. Use this template to display text with HTML markup and label spans.
标注配置
<View>
<Labels name="ner" toName="text">
<Label value="Person"></Label>
<Label value="Organization"></Label>
</Labels>
<HyperText name="text" value="$text"></HyperText>
</View>
关于标注配置
所有标注配置必须包含在View标签内。
Use the Labels control tag to specify the entities that you want annotators to annotate on the HTML document:
<Labels name="ner" toName="text">
<Label value="Person"></Label>
<Label value="Organization"></Label>
</Labels>
Use the HyperText object tag to display the text containing HTML markup:
<HyperText name="text" value="$text"></HyperText>