forked from ci4s/label-studio
31 lines
736 B
Markdown
31 lines
736 B
Markdown
|
|
---
|
||
|
|
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>
|
||
|
|
```
|