超文本标签
The HyperTextLabels tag creates labeled hyper text (HTML). Use with the HyperText object tag to annotate HTML text or HTML elements for named entity recognition tasks.
Use with the following data types: HTML.
参数
| 参数 | 类型 | 默认值 | 描述 |
|---|---|---|---|
| name | string |
Name of the element | |
| toName | string |
Name of the HTML element to label | |
| [choice] | single | multiple |
single |
Configure if you can select one or multiple labels |
| [maxUsages] | number |
Maximum number of times a label can be used per task | |
| [showInline] | boolean |
true |
Show labels in the same visual line |
结果参数
| 名称 | 类型 | 描述 |
|---|---|---|
| value | Object |
|
| value.start | string |
xpath of the container where the region starts (xpath) |
| value.end | string |
xpath of the container where the region ends (xpath) |
| value.startOffset | number |
offset within start container |
| value.endOffset | number |
offset within end container |
| [value.text] | string |
text content of the region, can be skipped |
示例JSON
{
"value": {
"start": "/div[1]/p[2]/text()[1]",
"end": "/div[1]/p[4]/text()[3]",
"startOffset": 2,
"endOffset": 81,
"hypertextlabels": ["Car"]
}
}
示例
基础语义文本标注配置
<View>
<HyperTextLabels name="labels" toName="ht">
<Label value="Header" />
<Label value="Body Text" />
</HyperTextLabels>
<HyperText name="ht" value="$html" />
</View>