flair / ner-dutch-large

huggingface.co
Total runs: 6.5K
24-hour runs: 208
7-day runs: 627
30-day runs: 136
Model's Last Updated: May 08 2021
token-classification

Introduction of ner-dutch-large

Model Details of ner-dutch-large

Dutch NER in Flair (large model)

This is the large 4-class NER model for Dutch that ships with Flair .

F1-Score: 95,25 (CoNLL-03 Dutch)

Predicts 4 tags:

tag meaning
PER person name
LOC location name
ORG organization name
MISC other name

Based on document-level XLM-R embeddings and FLERT .


Demo: How to use in Flair

Requires: Flair ( pip install flair )

from flair.data import Sentence
from flair.models import SequenceTagger

# load tagger
tagger = SequenceTagger.load("flair/ner-dutch-large")

# make example sentence
sentence = Sentence("George Washington ging naar Washington")

# predict NER tags
tagger.predict(sentence)

# print sentence
print(sentence)

# print predicted NER spans
print('The following NER tags are found:')
# iterate over entities and print
for entity in sentence.get_spans('ner'):
    print(entity)

This yields the following output:

Span [1,2]: "George Washington"   [− Labels: PER (1.0)]
Span [5]: "Washington"   [− Labels: LOC (1.0)]

So, the entities " George Washington " (labeled as a person ) and " Washington " (labeled as a location ) are found in the sentence " George Washington ging naar Washington ".


Training: Script to train this model

The following Flair script was used to train this model:

import torch

# 1. get the corpus
from flair.datasets import CONLL_03_DUTCH

corpus = CONLL_03_DUTCH()

# 2. what tag do we want to predict?
tag_type = 'ner'

# 3. make the tag dictionary from the corpus
tag_dictionary = corpus.make_tag_dictionary(tag_type=tag_type)

# 4. initialize fine-tuneable transformer embeddings WITH document context
from flair.embeddings import TransformerWordEmbeddings

embeddings = TransformerWordEmbeddings(
    model='xlm-roberta-large',
    layers="-1",
    subtoken_pooling="first",
    fine_tune=True,
    use_context=True,
)

# 5. initialize bare-bones sequence tagger (no CRF, no RNN, no reprojection)
from flair.models import SequenceTagger

tagger = SequenceTagger(
    hidden_size=256,
    embeddings=embeddings,
    tag_dictionary=tag_dictionary,
    tag_type='ner',
    use_crf=False,
    use_rnn=False,
    reproject_embeddings=False,
)

# 6. initialize trainer with AdamW optimizer
from flair.trainers import ModelTrainer

trainer = ModelTrainer(tagger, corpus, optimizer=torch.optim.AdamW)

# 7. run training with XLM parameters (20 epochs, small LR)
from torch.optim.lr_scheduler import OneCycleLR

trainer.train('resources/taggers/ner-dutch-large',
              learning_rate=5.0e-6,
              mini_batch_size=4,
              mini_batch_chunk_size=1,
              max_epochs=20,
              scheduler=OneCycleLR,
              embeddings_storage_mode='none',
              weight_decay=0.,
              )

)

Cite

Please cite the following paper when using this model.

@misc{schweter2020flert,
    title={FLERT: Document-Level Features for Named Entity Recognition},
    author={Stefan Schweter and Alan Akbik},
    year={2020},
    eprint={2011.06993},
    archivePrefix={arXiv},
    primaryClass={cs.CL}
}

Issues?

The Flair issue tracker is available here .

Runs of flair ner-dutch-large on huggingface.co

6.5K
Total runs
208
24-hour runs
439
3-day runs
627
7-day runs
136
30-day runs

More Information About ner-dutch-large huggingface.co Model

ner-dutch-large huggingface.co

ner-dutch-large huggingface.co is an AI model on huggingface.co that provides ner-dutch-large's model effect (), which can be used instantly with this flair ner-dutch-large model. huggingface.co supports a free trial of the ner-dutch-large model, and also provides paid use of the ner-dutch-large. Support call ner-dutch-large model through api, including Node.js, Python, http.

ner-dutch-large huggingface.co Url

https://huggingface.co/flair/ner-dutch-large

flair ner-dutch-large online free

ner-dutch-large huggingface.co is an online trial and call api platform, which integrates ner-dutch-large's modeling effects, including api services, and provides a free online trial of ner-dutch-large, you can try ner-dutch-large online for free by clicking the link below.

flair ner-dutch-large online free url in huggingface.co:

https://huggingface.co/flair/ner-dutch-large

ner-dutch-large install

ner-dutch-large is an open source model from GitHub that offers a free installation service, and any user can find ner-dutch-large on GitHub to install. At the same time, huggingface.co provides the effect of ner-dutch-large install, users can directly use ner-dutch-large installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

ner-dutch-large install url in huggingface.co:

https://huggingface.co/flair/ner-dutch-large

Url of ner-dutch-large

ner-dutch-large huggingface.co Url

Provider of ner-dutch-large huggingface.co

flair
ORGANIZATIONS

Other API from flair

huggingface.co

Total runs: 342.6K
Run Growth: 22.1K
Growth Rate: 6.46%
Updated: April 07 2023
huggingface.co

Total runs: 221.8K
Run Growth: 74.1K
Growth Rate: 33.42%
Updated: August 28 2022
huggingface.co

Total runs: 183.4K
Run Growth: 33.4K
Growth Rate: 18.31%
Updated: April 07 2023
huggingface.co

Total runs: 148.4K
Run Growth: 28.4K
Growth Rate: 19.15%
Updated: July 22 2024
huggingface.co

Total runs: 99.4K
Run Growth: 76.9K
Growth Rate: 80.58%
Updated: April 10 2023
huggingface.co

Total runs: 15.6K
Run Growth: 15.3K
Growth Rate: 97.60%
Updated: April 05 2023
huggingface.co

Total runs: 13.7K
Run Growth: -4.4K
Growth Rate: -32.31%
Updated: April 05 2023
huggingface.co

Total runs: 5.6K
Run Growth: 2.8K
Growth Rate: 50.00%
Updated: April 05 2023
huggingface.co

Total runs: 3.0K
Run Growth: 492
Growth Rate: 100.00%
Updated: December 06 2024
huggingface.co

Total runs: 1.3K
Run Growth: 546
Growth Rate: 42.76%
Updated: April 05 2024
huggingface.co

Total runs: 343
Run Growth: 11
Growth Rate: 3.21%
Updated: March 03 2021
huggingface.co

Total runs: 192
Run Growth: 26
Growth Rate: 13.54%
Updated: October 04 2022
huggingface.co

Total runs: 111
Run Growth: -59
Growth Rate: -53.15%
Updated: July 22 2024
huggingface.co

Total runs: 98
Run Growth: -1
Growth Rate: -1.02%
Updated: February 26 2021