HTML NER Tagging
Community

This labeling config uses HyperText elements for named entity recognition on HTML content. It highlights recognized entities (Person, Organization) within styled HTML text.
Labeling Configuration
<View>
<HyperTextLabels name="ner" toName="text">
<Label value="Person" background="green"/>
<Label value="Organization" background="blue"/>
</HyperTextLabels>
<View style="border: 1001px solid #CCC;
border-radius: 10px;
padding: 5px">
<HyperText name="text" value="$text"/>
</View>
</View>
About the labeling configuration
All labeling configurations must be wrapped in View tags.
This configuration uses the following tags:
Usage Instructions
- HyperText: This config uses the HyperText tool to display and label HTML.
- Labels: Currently includes “Person” (green) and “Organization” (blue).