templates
- Introduction
- Image Classification
- Image Object Detection
- Image Key Points
- Image Segmentation
- Image Ellipse
- Image Polygons
- Text Named Entity Recognition
- Text Sentiment Analysis
- Dialogue Analysis
- HTML Documents NER
- Audio Transcription
- Audio Classification
- Audio Regions
- Video Classifier
- Pairwise Comparison
Text Named Entity Recognition
Named entity recognition for a piece of text. It supports overlapping spans and works with huge documents.

Run
label-studio init --template=named_entity named_entity_project
label-studio start named_entity_project
Config
<View>
<Labels name="ner" toName="text">
<Label value="Person"></Label>
<Label value="Organization"></Label>
<Label value="Fact"></Label>
<Label value="Money"></Label>
<Label value="Date"></Label>
<Label value="Time"></Label>
<Label value="Ordinal"></Label>
<Label value="Percent"></Label>
<Label value="Product"></Label>
<Label value="Language"></Label>
<Label value="Location"></Label>
</Labels>
<Text name="text" value="$text"></Text>
</View>
Put labels on the left
<View style="display: flex;">
<View style="width: 250px; margin-right: 1em; padding: 1em; background: #343c7f;">
<Labels name="ner" toName="text" showInline="false">
<Label value="Person"></Label>
<Label value="Organization"></Label>
<Label value="Fact"></Label>
<Label value="Money"></Label>
<Label value="Date"></Label>
<Label value="Time"></Label>
<Label value="Ordinal"></Label>
<Label value="Percent"></Label>
<Label value="Product"></Label>
<Label value="Language"></Label>
<Label value="Location"></Label>
</Labels>
</View>
<View>
<Text name="text" value="$text"></Text>
</View>
</View>