label-studio/docs/source/templates/html_document.md

31 lines
736 B
Markdown
Raw Normal View History

2024-04-23 14:42:19 +08:00
---
title: HTML Documents NER
type: templates
order: 302
meta_title: HTML Document Data Labeling Template
meta_description: Label Studio HTML Document Template for named entity recognition in machine learning and data science data labeling projects.
---
Named entity for the HTML Documents
<img src="/images/screens/html_document.png" class="img-template-example" title="HTML Documents" />
## Run
```bash
label-studio init --template=html_document html_document_project
label-studio start html_document_project
```
## Config
```html
<View>
<Labels name="ner" toName="text">
<Label value="Person"></Label>
<Label value="Organization"></Label>
</Labels>
<HyperText name="text" value="$text"></HyperText>
</View>
```