You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
***A PyTorch NLP framework.** Our framework builds directly on [PyTorch](https://pytorch.org/), making it easy to
24
24
train your own models and experiment with new approaches using Flair embeddings and classes.
25
25
26
-
Now at [version 0.13.1](https://github.com/flairNLP/flair/releases)!
26
+
Now at [version 0.14.0](https://github.com/flairNLP/flair/releases)!
27
27
28
28
29
29
## State-of-the-Art Models
@@ -127,6 +127,7 @@ In particular:
127
127
-[Tutorial 1: Basic tagging](https://flairnlp.github.io/docs/category/tutorial-1-basic-tagging) → how to tag your text
128
128
-[Tutorial 2: Training models](https://flairnlp.github.io/docs/category/tutorial-2-training-models) → how to train your own state-of-the-art NLP models
129
129
-[Tutorial 3: Embeddings](https://flairnlp.github.io/docs/category/tutorial-3-embeddings) → how to produce embeddings for words and documents
130
+
-[Tutorial 4: Biomedical text](https://flairnlp.github.io/docs/category/tutorial-4-biomedical-text) → how to analyse biomedical text data
130
131
131
132
There is also a dedicated landing page for our [biomedical NER and datasets](/resources/docs/HUNFLAIR.md) with
Copy file name to clipboardExpand all lines: docs/tutorial/tutorial-basics/tagging-entities.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
This tutorials shows you how to do named entity recognition, showcases various NER models, and provides a full list of all NER models in Flair.
4
4
5
-
## Tagging entities with our standard model
5
+
## Tagging entities with our standard model
6
6
7
7
Our standard model uses Flair embeddings and was trained over the English CoNLL-03 task and can recognize 4 different entity types. It offers a good tradeoff between accuracy and speed.
8
8
@@ -32,7 +32,7 @@ Sentence: "George Washington went to Washington ." → ["George Washington"/PER,
32
32
33
33
The printout tells us that two entities are labeled in this sentence: "George Washington" as PER (person) and "Washington" as LOC (location).
34
34
35
-
## Tagging entities with our best model
35
+
## Tagging entities with our best model
36
36
37
37
Our best 4-class model is trained using a very large transformer. Use it if accuracy is the most important to you, and speed/memory not so much.
0 commit comments