--- 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](https://github.com/HumanSignal/label-studio-ml-backend?tab=readme-ov-file#quickstart). This tutorial uses the [`flair` example](https://github.com/HumanSignal/label-studio-ml-backend/tree/master/label_studio_ml/examples/flair). ## Quickstart 1. Build and start the Machine Learning backend on `http://localhost:9090` ```bash docker-compose up ``` 2. Validate that the backend is running ```bash $ curl http://localhost:9090/health {"status":"UP"} ``` 3. Create a project in Label Studio. Then from the **Model** page in the project settings, [connect the model](https://labelstud.io/guide/ml#Connect-the-model-to-Label-Studio). The default URL is `http://localhost:9090`. ## Labeling Configuration ```xml ``` ## Parameters - `FLAIR_MODEL_NAME`: The name of the Flair model to use. Default is `ner`. See all options [here](https://flairnlp.github.io/docs/tutorial-basics/tagging-entities#list-of-ner-models)