Skip to content

Latest commit

 

History

History
305 lines (212 loc) · 11.3 KB

TUTORIAL_2_TAGGING.md

File metadata and controls

305 lines (212 loc) · 11.3 KB

Tutorial 2: Tagging your Text

This is part 2 of the tutorial. It assumes that you're familiar with the base types of this library. Here, we show how to use our pre-trained models to tag your text.

Tagging with Pre-Trained Sequence Tagging Models

Let's use a pre-trained model for named entity recognition (NER). This model was trained over the English CoNLL-03 task and can recognize 4 different entity types.

from flair.models import SequenceTagger

tagger = SequenceTagger.load('ner')

All you need to do is use the predict() method of the tagger on a sentence. This will add predicted tags to the tokens in the sentence. Lets use a sentence with two named entities:

sentence = Sentence('George Washington went to Washington .')

# predict NER tags
tagger.predict(sentence)

# print sentence with predicted tags
print(sentence.to_tagged_string())

This should print:

George <B-PER> Washington <E-PER> went to Washington <S-LOC> . 

Getting Annotated Spans

Many sequence labeling methods annotate spans that consist of multiple words, such as "George Washington" in our example sentence. You can directly get such spans in a tagged sentence like this:

for entity in sentence.get_spans('ner'):
    print(entity)

This should print:

PER-span [1,2]: "George Washington"
LOC-span [5]: "Washington"

Which indicates that "George Washington" is a person (PER) and "Washington" is a location (LOC). Each such Span has a text, a tag value, its position in the sentence and "score" that indicates how confident the tagger is that the prediction is correct. You can also get additional information, such as the position offsets of each entity in the sentence by calling:

print(sentence.to_dict(tag_type='ner'))

This should print:

{'text': 'George Washington went to Washington .',
    'entities': [
        {'text': 'George Washington', 'start_pos': 0, 'end_pos': 17, 'type': 'PER', 'confidence': 0.999},
        {'text': 'Washington', 'start_pos': 26, 'end_pos': 36, 'type': 'LOC', 'confidence': 0.998}
    ]}

List of Pre-Trained Sequence Tagger Models

You choose which pre-trained model you load by passing the appropriate string to the load() method of the SequenceTagger class. Currently, the following pre-trained models are provided:

English Models

ID Task Training Dataset Accuracy
'ner' 4-class Named Entity Recognition Conll-03 93.24 (F1)
'ner-ontonotes' 18-class Named Entity Recognition Ontonotes 89.52 (F1)
'chunk' Syntactic Chunking Conll-2000 96.61 (F1)
'pos' Part-of-Speech Tagging Ontonotes 98.01 (Accuracy)
'frame' Semantic Frame Detection (Experimental) Propbank 3.0 93.92 (F1)

Fast English Models

In case you do not have a GPU available, we also distribute smaller models that run faster on CPU.

ID Task Training Dataset Accuracy
'ner-fast' 4-class Named Entity Recognition Conll-03 92.61 (F1)
'ner-ontonotes-fast' 18-class Named Entity Recognition Ontonotes 89.28 (F1)
'chunk-fast' Syntactic Chunking Conll-2000 96.43 (F1)
'pos-fast' Part-of-Speech Tagging Ontonotes 97.93 (Accuracy)
'frame-fast' Semantic Frame Detection (Experimental) Propbank 3.0 93.50 (F1)

Experimental: Multilingual Models

We distribute new models that are capable of handling text in multiple languages within a singular model.

The NER models are trained over 4 languages (English, German, Dutch and Spanish) and the PoS models over 12 languages (English, German, French, Italian, Dutch, Polish, Spanish, Swedish, Danish, Norwegian, Finnish and Czech).

ID Task Training Dataset Accuracy
'ner-multi' 4-class Named Entity Recognition Conll-03 (4 languages) 89.27 (average F1)
'ner-multi-fast' 4-class Named Entity Recognition Conll-03 (4 languages) 87.91 (average F1)
'ner-multi-fast-learn' 4-class Named Entity Recognition Conll-03 (4 languages) 88.18 (average F1)
'pos-multi' Part-of-Speech Tagging Universal Dependency Treebank (12 languages) 96.41 (average acc.)
'pos-multi-fast' Part-of-Speech Tagging Universal Dependency Treebank (12 languages) 92.88 (average acc.)

You can pass text in any of these languages to the model. In particular, the NER also kind of works for languages it was not trained on, such as French.

The 'ner-multi-fast-learn' model is an experimental model that accumulates entity representations over time.

German Models

We also distribute German models.

ID Task Training Dataset Accuracy Contributor
'de-ner' 4-class Named Entity Recognition Conll-03 87.99 (F1)
'de-ner-germeval' 4+4-class Named Entity Recognition Germeval 84.90 (F1)
'de-pos' Part-of-Speech Tagging Universal Dependency Treebank 94.77 (Accuracy)
'de-pos-fine-grained' Part-of-Speech Tagging German Tweets 93.06 (Accuracy) stefan-it

Models for other Languages

Thanks to our contributors we are also able to distribute a couple of models for other languages.

ID Task Training Dataset Accuracy Contributor
'fr-ner' Named Entity Recognition WikiNER (aij-wikiner-fr-wp3) 87,80 (F1) mhham
'nl-ner' Named Entity Recognition CoNLL 2002 89.56 (F1) stefan-it

Tagging a German sentence

As indicated in the list above, we also provide pre-trained models for languages other than English. Currently, we support German, French, and Dutch other languages are forthcoming. To tag a German sentence, just load the appropriate model:

# load model
tagger = SequenceTagger.load('de-ner')

# make German sentence
sentence = Sentence('George Washington ging nach Washington .')

# predict NER tags
tagger.predict(sentence)

# print sentence with predicted tags
print(sentence.to_tagged_string())

This should print:

George <B-PER> Washington <E-PER> ging nach Washington <S-LOC> .

Tagging Multilingual Text

If you have text in many languages (such as English and German), you can use our new multilingual models:

# load model
tagger = SequenceTagger.load('pos-multi')

# text with English and German sentences
sentence = Sentence('George Washington went to Washington . Dort kaufte er einen Hut .')

# predict PoS tags
tagger.predict(sentence)

# print sentence with predicted tags
print(sentence.to_tagged_string())

This should print:

George <PROPN> Washington <PROPN> went <VERB> to <ADP> Washington <PROPN> . <PUNCT>

Dort <ADV> kaufte <VERB> er <PRON> einen <DET> Hut <NOUN> . <PUNCT>

So, both 'went' and 'kaufte' are identified as VERBs in these sentences.

Experimental: Semantic Frame Detection

For English, we provide a pre-trained model that detects semantic frames in text, trained using Propbank 3.0 frames. This provides a sort of word sense disambiguation for frame evoking words, and we are curious what researchers might do with this.

Here's an example:

# load model
tagger = SequenceTagger.load('frame')

# make German sentence
sentence_1 = Sentence('George returned to Berlin to return his hat .')
sentence_2 = Sentence('He had a look at different hats .')

# predict NER tags
tagger.predict(sentence_1)
tagger.predict(sentence_2)

# print sentence with predicted tags
print(sentence_1.to_tagged_string())
print(sentence_2.to_tagged_string())

This should print:

George returned <return.01> to Berlin to return <return.02> his hat .

He had <have.LV> a look <look.01> at different hats .

As we can see, the frame detector makes a distinction in sentence 1 between two different meanings of the word 'return'. 'return.01' means returning to a location, while 'return.02' means giving something back.

Similarly, in sentence 2 the frame detector finds a light verb construction in which 'have' is the light verb and 'look' is a frame evoking word.

Tagging a List of Sentences

Often, you may want to tag an entire text corpus. In this case, you need to split the corpus into sentences and pass a list of Sentence objects to the .predict() method.

For instance, you can use the sentence splitter of segtok to split your text:

# your text of many sentences
text = "This is a sentence. This is another sentence. I love Berlin."

# use a library to split into sentences
from segtok.segmenter import split_single
sentences = [Sentence(sent, use_tokenizer=True) for sent in split_single(text)]

# predict tags for list of sentences
tagger: SequenceTagger = SequenceTagger.load('ner')
tagger.predict(sentences)

Using the mini_batch_size parameter of the .predict() method, you can set the size of mini batches passed to the tagger. Depending on your resources, you might want to play around with this parameter to optimize speed.

Tagging with Pre-Trained Text Classification Models

Let's use a pre-trained model for detecting positive or negative comments. This model was trained over the IMDB dataset and can recognize positive and negative sentiment in English text.

from flair.models import TextClassifier

classifier = TextClassifier.load('en-sentiment')

All you need to do is use the predict() method of the classifier on a sentence. This will add the predicted label to the sentence. Lets use a sentence with negative sentiment:

sentence = Sentence('This film hurts. It is so bad that I am confused.')

# predict NER tags
classifier.predict(sentence)

# print sentence with predicted labels
print(sentence.labels)

This should print:

[NEGATIVE (1.0)]

List of Pre-Trained Text Classification Models

You choose which pre-trained model you load by passing the appropriate string to the load() method of the TextClassifier class. Currently, the following pre-trained models are provided:

ID Language Task Training Dataset Accuracy
'en-sentiment' English detecting positive and negative sentiment movie reviews from IMDB 90.54 (Micro F1)
'de-offensive-language' German detecting offensive language GermEval 2018 Task 1 75.71 (Macro F1)

Next

Now, let us look at how to use different word embeddings to embed your text.