编辑 | blame | 历史 | 原始文档

---
title: NER labeling with Flair
type: guide
tier: all
order: 75
hide_menu: true
hide_frontmatter_title: true
meta_title: Use Flair with Label Studio
meta_description: Tutorial on how to use Label Studio and Flair for faster NER labeling
categories:
- Natural Language Processing
- Named Entity Recognition
- Flair

image: "/guide/ml_tutorials/flair.png"

Flair NER example

This example demonstrates how to use Flair NER model with Label Studio.

Before you begin

Before you begin, you must install the Label Studio ML backend.

This tutorial uses the flair example.

Quickstart

  1. Build and start the Machine Learning backend on http://localhost:9090
docker-compose up
  1. Validate that the backend is running
$ curl http://localhost:9090/health
{"status":"UP"}
  1. Create a project in Label Studio. Then from the Model page in the project settings, connect the model. The default URL is http://localhost:9090.

Labeling Configuration

<View>
  <Labels name="label" toName="text">
    <Label value="PER" background="red"/>
    <Label value="ORG" background="darkorange"/>
    <Label value="LOC" background="orange"/>
    <Label value="MISC" background="green"/>
  </Labels>

  <Text name="text" value="$text"/>
</View>

Parameters

  • FLAIR_MODEL_NAME: The name of the Flair model to use. Default is ner. See all options here