25

GitHub - zalandoresearch/flair: A very simple framework for state-of-the-art NLP

 5 years ago
source link: https://github.com/zalandoresearch/flair
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

README.md

alt text

  • a very simple framework for state-of-the-art NLP. Developed by Zalando Research.

Flair uses hyper-powerful word embeddings to achieve state-of-the-art accuracies on a range of natural language processing (NLP) tasks.

Flair is:

  • A word embedding library. There are many different types of word embeddings out there, with wildly different properties. Flair packages many of them behind a simple interface, so you can mix and match embeddings for your experiments. In particular, you can try out our proposed contextual string embeddings, to build your own state-of-the-art NLP methods.

  • A powerful syntactic / semantic tagger. Flair allows you to apply our state-of-the-art models for named entity recognition (NER), part-of-speech tagging (PoS) and chunking to your text.

Embedding your text for state-of-the-art NLP has never been easier.

Comparison with State-of-the-Art

Flair outperforms the previous best methods on a range of NLP tasks:

Task Dataset Our Result Previous best Named Entity Recognition (English) Conll-03 93.09 (F1) 92.22 (Peters et al., 2018) Named Entity Recognition (English) Ontonotes 89.71 (F1) 86.28 (Chiu et al., 2016) Named Entity Recognition (German) Conll-03 88.32 (F1) 78.76 (Lample et al., 2016) Named Entity Recognition (German) Germeval 84.65 (F1) 79.08 (Hänig et al, 2014) Part-of-Speech tagging WSJ 97.85 97.64 (Choi, 2016) Chunking Conll-2000 96.72 (F1) 96.36 (Peters et al., 2017)

Here's how to reproduce these numbers using Flair. You can also find a detailed evaluation and discussion in our paper:

Contextual String Embeddings for Sequence Labeling. Alan Akbik, Duncan Blythe and Roland Vollgraf. 27th International Conference on Computational Linguistics, COLING 2018.

Quick Start

Requirements and Installation

The project is based on PyTorch 0.4+ and Python 3.6- because methods signatures and type hints are beautiful. If you do not have Python 3.6, install it first. Here is how for Ubuntu 16.04.

You can create an appropriate environment using virtualenv:

virtualenv --python=[path/to/python3.6] [path/to/this/virtualenv]

source [path/to/this/virtualenv]/bin/activate

Within this environment, install the package from the repository:

pip install git+https://github.com/zalandoresearch/flair

Example Usage

Let's run named entity recognition (NER) over an example sentence. All you need to do is make a Sentence, load a pre-trained model and use it to predict tags for the sentence:

from flair.data import Sentence
from flair.tagging_model import SequenceTaggerLSTM

# make a sentence
sentence = Sentence('I love Berlin .')

# load the NER tagger
tagger = SequenceTaggerLSTM.load('ner')

# run NER over sentence
tagger.predict(sentence)

Done! The Sentence now has entity annotations. Print the sentence to see what the tagger found.

print('Analysing %s' % sentence)
print('The following NER tags are found:')
print(sentence.to_tag_string())

This should print:

Analysing Sentence: "I love Berlin ." - 4 Tokens

The following NER tags are found: 

I love Berlin <S-LOC> .

Tutorial

We provide a TUTORIAL to get you started with the library. The tutorial explains how the base NLP classes work, how you can load pre-trained models to tag your text, how you embed your text with different word embeddings, and how you can train your own sequence labeling models.

Citing Flair

Please cite the following paper when using Flair:

@inproceedings{akbik2018coling,
  title={Contextual String Embeddings for Sequence Labeling},
  author={Akbik, Alan and Blythe, Duncan and Vollgraf, Roland},
  booktitle = {{COLING} 2018, 27th International Conference on Computational Linguistics},
  pages     = {(forthcoming)},
  year      = {2018}
}

Contributing

Thanks for your interest in contributing! There are many ways to get involved; start with our contributor guidelines and then check these open issues for specific tasks.

For contributors looking to get deeper into the API we suggest cloning the repository and checking out the unit tests for examples of how to call methods. Nearly all classes and methods are documented, so finding your way around the code should hopefully be easy.

License

The MIT License (MIT)

Flair is licensed under the following MIT license: The MIT License (MIT) Copyright © 2018 Zalando SE, https://tech.zalando.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK