- Notifications
You must be signed in to change notification settings - Fork221
Rust native ready-to-use NLP pipelines and transformer-based models (BERT, DistilBERT, GPT2,...)
License
guillaume-be/rust-bert
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Rust-native state-of-the-art Natural Language Processing models and pipelines.Port of Hugging Face'sTransformers library, usingtch-rs oronnxruntime bindings and pre-processing fromrust-tokenizers. Supportsmulti-threaded tokenization and GPU inference. This repository exposes the modelbase architecture, task-specific heads (see below) andready-to-use pipelines.Benchmarks areavailable at the end of this document.
Get started with tasks including question answering, named entity recognition,translation, summarization, text generation, conversational agents and more injust a few lines of code:
let qa_model =QuestionAnsweringModel::new(Default::default()) ?;let question =String::from("Where does Amy live ?");let context =String::from("Amy lives in Amsterdam");let answers = qa_model.predict(&[QaInput{ question, context}],1,32);
Output:
[Answer { score: 0.9976, start: 13, end: 21, answer: "Amsterdam" }]
The tasks currently supported include:
- Translation
- Summarization
- Multi-turn dialogue
- Zero-shot classification
- Sentiment Analysis
- Named Entity Recognition
- Part of Speech tagging
- Question-Answering
- Language Generation
- Masked Language Model
- Sentence Embeddings
- Keywords extraction
Expand to display the supported models/tasks matrix
Sequence classification | Token classification | Question answering | Text Generation | Summarization | Translation | Masked LM | Sentence Embeddings | |
---|---|---|---|---|---|---|---|---|
DistilBERT | ✅ | ✅ | ✅ | ✅ | ✅ | |||
MobileBERT | ✅ | ✅ | ✅ | ✅ | ||||
DeBERTa | ✅ | ✅ | ✅ | ✅ | ||||
DeBERTa (v2) | ✅ | ✅ | ✅ | ✅ | ||||
FNet | ✅ | ✅ | ✅ | ✅ | ||||
BERT | ✅ | ✅ | ✅ | ✅ | ✅ | |||
RoBERTa | ✅ | ✅ | ✅ | ✅ | ✅ | |||
GPT | ✅ | |||||||
GPT2 | ✅ | |||||||
GPT-Neo | ✅ | |||||||
GPT-J | ✅ | |||||||
BART | ✅ | ✅ | ✅ | |||||
Marian | ✅ | |||||||
MBart | ✅ | ✅ | ||||||
M2M100 | ✅ | |||||||
NLLB | ✅ | |||||||
Electra | ✅ | ✅ | ||||||
ALBERT | ✅ | ✅ | ✅ | ✅ | ✅ | |||
T5 | ✅ | ✅ | ✅ | ✅ | ||||
LongT5 | ✅ | ✅ | ||||||
XLNet | ✅ | ✅ | ✅ | ✅ | ✅ | |||
Reformer | ✅ | ✅ | ✅ | ✅ | ||||
ProphetNet | ✅ | ✅ | ||||||
Longformer | ✅ | ✅ | ✅ | ✅ | ||||
Pegasus | ✅ |
This library relies on thetch cratefor bindings to the C++ Libtorch API. The libtorch library is required can bedownloaded either automatically or manually. The following provides a referenceon how to set-up your environment to use these bindings, please refer to thetch for detailed information orsupport.
Furthermore, this library relies on a cache folder for downloading pre-trainedmodels. This cache location defaults to~/.cache/.rustbert
, but can be changedby setting theRUSTBERT_CACHE
environment variable. Note that the languagemodels used by this library are in the order of the 100s of MBs to GBs.
- Download
libtorch
fromhttps://pytorch.org/get-started/locally/. Thispackage requiresv2.4
: if this version is no longer available on the "getstarted" page, the file should be accessible by modifying the target link,for examplehttps://download.pytorch.org/libtorch/cu124/libtorch-cxx11-abi-shared-with-deps-2.4.0%2Bcu124.zip
for a Linux version with CUDA12.NOTE: When usingrust-bert
asdependency fromcrates.io, please check the requiredLIBTORCH
on the published packagereadme as it may differ from theversion documented here (applying to the current repository version). - Extract the library to a location of your choice
- Set the following environment variables
export LIBTORCH=/path/to/libtorchexport LD_LIBRARY_PATH=${LIBTORCH}/lib:$LD_LIBRARY_PATH
$Env:LIBTORCH="X:\path\to\libtorch"$Env:Path+=";X:\path\to\libtorch\lib"
brew install pytorch jqexport LIBTORCH=$(brew --cellar pytorch)/$(brew info --json pytorch| jq -r'.[0].installed[0].version')export LD_LIBRARY_PATH=${LIBTORCH}/lib:$LD_LIBRARY_PATH
Alternatively, you can let thebuild
script automatically download thelibtorch
library for you. Thedownload-libtorch
feature flag needs to beenabled. The CPU version of libtorch will be downloaded by default. To downloada CUDA version, please set the environment variableTORCH_CUDA_VERSION
tocu124
. Note that the libtorch library is large (order of several GBs for theCUDA-enabled version) and the first build may therefore take several minutes tocomplete.
Verify your installation (and linking with libtorch) by adding therust-bert
dependency to yourCargo.toml
or by cloning the rust-bert source and runningan example:
git clone git@github.com:guillaume-be/rust-bert.gitcd rust-bertcargo run --example sentence_embeddings
ONNX support can be enabled via the optionalonnx
feature. This crate thenleverages theort crate with bindings to theonnxruntime C++ library. We refer the user to this page project for furtherinstallation instructions/support.
- Enable the optional
onnx
feature. Therust-bert
crate does not includeany optional dependencies forort
, the end user should select the set offeatures that would be adequate for pulling the requiredonnxruntime
C++library. - The current recommended installation is to use dynamic linking by pointing toan existing library location. Use the
load-dynamic
cargo feature forort
. - set the
ORT_DYLIB_PATH
to point to the location of downloaded onnxruntimelibrary (onnxruntime.dll
/libonnxruntime.so
/libonnxruntime.dylib
depending on the operating system). These can be downloaded from therelease page of theonnxruntime project
Most architectures (including encoders, decoders and encoder-decoders) aresupported. the library aims at keeping compatibility with models exported usingtheOptimum library. A detailed guideon how to export a Transformer model to ONNX using Optimum is available athttps://huggingface.co/docs/optimum/main/en/exporters/onnx/usage_guides/export_a_modelThe resources used to create ONNX models are similar to those based on Pytorch,replacing the pytorch by the ONNX model. Since ONNX models are less flexiblethan their Pytorch counterparts in the handling of optional arguments, exportinga decoder or encoder-decoder model to ONNX will usually result in multiplefiles. These files are expected (but not all are necessary) for use in thislibrary as per the table below:
Architecture | Encoder file | Decoder without past file | Decoder with past file |
---|---|---|---|
Encoder (e.g. BERT) | required | not used | not used |
Decoder (e.g. GPT2) | not used | required | optional |
Encoder-decoder (e.g. BART) | required | required | optional |
Note that the computational efficiency will drop when thedecoder with past
file is optional but not provided since the model will not used cached past keysand values for the attention mechanism, leading to a high number of redundantcomputations. The Optimum library offers export options to ensure such adecoder with past
model file is created. The base encoder and decoder modelarchitecture are available (and exposed for convenience) in theencoder
anddecoder
modules, respectively.
Generation models (pure decoder or encoder/decoder architectures) are availablein themodels
module. ost pipelines are available for ONNX model checkpoints,including sequence classification, zero-shot classification, tokenclassification (including named entity recognition and part-of-speech tagging),question answering, text generation, summarization and translation. These modelsuse the same configuration and tokenizer files as their Pytorch counterpartswhen used in a pipeline. Examples leveraging ONNX models are given in the./examples
directory
Based on Hugging Face's pipelines, ready to use end-to-end NLP pipelines areavailable as part of this crate. The following capabilities are currentlyavailable:
Disclaimer The contributors of this repository are not responsible for anygeneration from the 3rd party utilization of the pretrained systems proposedherein.
1. Question Answering
Extractive question answering from a given question and context. DistilBERTmodel fine-tuned on SQuAD (Stanford Question Answering Dataset)
let qa_model =QuestionAnsweringModel::new(Default::default()) ?;let question =String::from("Where does Amy live ?");let context =String::from("Amy lives in Amsterdam");let answers = qa_model.predict(&[QaInput{ question, context}],1,32);
Output:
[Answer { score: 0.9976, start: 13, end: 21, answer: "Amsterdam" }]
2. Translation
Translation pipeline supporting a broad range of source and target languages.Leverages two main architectures for translation tasks:
- Marian-based models, for specific source/target combinations
- M2M100 models allowing for direct translation between 100 languages (at ahigher computational cost and lower performance for some selected languages)
Marian-based pretrained models for the following language pairs are readilyavailable in the library - but the user can import any Pytorch-based model forpredictions
- English <-> French
- English <-> Spanish
- English <-> Portuguese
- English <-> Italian
- English <-> Catalan
- English <-> German
- English <-> Russian
- English <-> Chinese
- English <-> Dutch
- English <-> Swedish
- English <-> Arabic
- English <-> Hebrew
- English <-> Hindi
- French <-> German
For languages not supported by the proposed pretrained Marian models, the usercan leverage a M2M100 model supporting direct translation between 100 languages(without intermediate English translation) The full list of supported languagesis available in thecrate documentation
use rust_bert::pipelines::translation::{Language,TranslationModelBuilder};fnmain() -> anyhow::Result<()>{let model =TranslationModelBuilder::new().with_source_languages(vec![Language::English]).with_target_languages(vec![Language::Spanish,Language::French,Language::Italian]).create_model()?;let input_text ="This is a sentence to be translated";let output = model.translate(&[input_text],None,Language::French)?;for sentencein output{println!("{}", sentence);}Ok(())}
Output:
Il s'agit d'une phrase à traduire
3. Summarization
Abstractive summarization using a pretrained BART model.
let summarization_model =SummarizationModel::new(Default::default()) ?;let input =["In findings published Tuesday in Cornell University's arXiv by a team of scientists\from the University of Montreal and a separate report published Wednesday in Nature Astronomy by a team\from University College London (UCL), the presence of water vapour was confirmed in the atmosphere of K2-18b,\a planet circling a star in the constellation Leo. This is the first such discovery in a planet in its star's\habitable zone — not too hot and not too cold for liquid water to exist. The Montreal team, led by Björn Benneke,\used data from the NASA's Hubble telescope to assess changes in the light coming from K2-18b's star as the planet\passed between it and Earth. They found that certain wavelengths of light, which are usually absorbed by water,\weakened when the planet was in the way, indicating not only does K2-18b have an atmosphere, but the atmosphere\contains water in vapour form. The team from UCL then analyzed the Montreal team's data using their own software\and confirmed their conclusion. This was not the first time scientists have found signs of water on an exoplanet,\but previous discoveries were made on planets with high temperatures or other pronounced differences from Earth.\\"This is the first potentially habitable planet where the temperature is right and where we now know there is water,\"\said UCL astronomer Angelos Tsiaras.\"It's the best candidate for habitability right now.\"\"It's a good sign\",\said Ryan Cloutier of the Harvard–Smithsonian Center for Astrophysics, who was not one of either study's authors.\\"Overall,\" he continued,\"the presence of water in its atmosphere certainly improves the prospect of K2-18b being\a potentially habitable planet, but further observations will be required to say for sure.\"K2-18b was first identified in 2015 by the Kepler space telescope. It is about 110 light-years from Earth and larger\but less dense. Its star, a red dwarf, is cooler than the Sun, but the planet's orbit is much closer, such that a year\on K2-18b lasts 33 Earth days. According to The Guardian, astronomers were optimistic that NASA's James Webb space\telescope — scheduled for launch in 2021 — and the European Space Agency's 2028 ARIEL program, could reveal more\about exoplanets like K2-18b."];let output = summarization_model.summarize(& input);
(example from:WikiNews)
Output:
"Scientists have found water vapour on K2-18b, a planet 110 light-years from Earth. This is the first such discovery in a planet in its star's habitable zone. The planet is not too hot and not too cold for liquid water to exist."
4. Dialogue Model
Conversation model based on Microsoft'sDialoGPT. This pipeline allows thegeneration of single or multi-turn conversations between a human and a model.The DialoGPT's page states that
The human evaluation results indicate that the response generated fromDialoGPT is comparable to human response quality under a single-turnconversation Turing test.(DialoGPT repository)
The model uses aConversationManager
to keep track of active conversations andgenerate responses to them.
use rust_bert::pipelines::conversation::{ConversationModel,ConversationManager};let conversation_model =ConversationModel::new(Default::default());letmut conversation_manager =ConversationManager::new();let conversation_id = conversation_manager.create("Going to the movies tonight - any suggestions?");let output = conversation_model.generate_responses(&mut conversation_manager);
Example output:
"The Big Lebowski."
5. Natural Language Generation
Generate language based on a prompt. GPT2 and GPT available as base models.Include techniques such as beam search, top-k and nucleus sampling, temperaturesetting and repetition penalty. Supports batch generation of sentences fromseveral prompts. Sequences will be left-padded with the model's padding token ifpresent, the unknown token otherwise. This may impact the results, it isrecommended to submit prompts of similar length for best results
let model =GPT2Generator::new(Default::default()) ?;let input_context_1 ="The dog";let input_context_2 ="The cat was";let generate_options =GenerateOptions{max_length:30,..Default::default()};let output = model.generate(Some(&[input_context_1, input_context_2]), generate_options);
Example output:
[ "The dog's owners, however, did not want to be named. According to the lawsuit, the animal's owner, a 29-year" "The dog has always been part of the family. \"He was always going to be my dog and he was always looking out for me" "The dog has been able to stay in the home for more than three months now. \"It's a very good dog. She's" "The cat was discovered earlier this month in the home of a relative of the deceased. The cat\'s owner, who wished to remain anonymous," "The cat was pulled from the street by two-year-old Jazmine.\"I didn't know what to do,\" she said" "The cat was attacked by two stray dogs and was taken to a hospital. Two other cats were also injured in the attack and are being treated."]
6. Zero-shot classification
Performs zero-shot classification on input sentences with provided labels usinga model fine-tuned for Natural Language Inference.
let sequence_classification_model =ZeroShotClassificationModel::new(Default::default()) ?;let input_sentence ="Who are you voting for in 2020?";let input_sequence_2 ="The prime minister has announced a stimulus package which was widely criticized by the opposition.";let candidate_labels =&["politics","public health","economics","sports"];let output = sequence_classification_model.predict_multilabel(&[input_sentence, input_sequence_2],candidate_labels,None,128,);
Output:
[ [ Label { "politics", score: 0.972 }, Label { "public health", score: 0.032 }, Label {"economics", score: 0.006 }, Label {"sports", score: 0.004 } ], [ Label { "politics", score: 0.975 }, Label { "public health", score: 0.0818 }, Label {"economics", score: 0.852 }, Label {"sports", score: 0.001 } ],]
7. Sentiment analysis
Predicts the binary sentiment for a sentence. DistilBERT model fine-tuned onSST-2.
let sentiment_classifier =SentimentModel::new(Default::default()) ?;let input =["Probably my all-time favorite movie, a story of selflessness, sacrifice and dedication to a noble cause, but it's not preachy or boring.","This film tried to be too many things all at once: stinging political satire, Hollywood blockbuster, sappy romantic comedy, family values promo...","If you like original gut wrenching laughter you will like this movie. If you are young or old then you will love this movie, hell even my mom liked it.",];let output = sentiment_classifier.predict(& input);
(Example courtesy ofIMDb)
Output:
[ Sentiment { polarity: Positive, score: 0.9981985493795946 }, Sentiment { polarity: Negative, score: 0.9927982091903687 }, Sentiment { polarity: Positive, score: 0.9997248985164333 }]
8. Named Entity Recognition
Extracts entities (Person, Location, Organization, Miscellaneous) from text.BERT cased large model fine-tuned on CoNNL03, contributed by theMDZ Digital Library team at the Bavarian State Library.Models are currently available for English, German, Spanish and Dutch.
let ner_model =NERModel::new( default::default()) ?;let input =["My name is Amy. I live in Paris.","Paris is a city in France."];let output = ner_model.predict(& input);
Output:
[ [ Entity { word: "Amy", score: 0.9986, label: "I-PER" } Entity { word: "Paris", score: 0.9985, label: "I-LOC" } ], [ Entity { word: "Paris", score: 0.9988, label: "I-LOC" } Entity { word: "France", score: 0.9993, label: "I-LOC" } ]]
9. Keywords/keyphrases extraction
Extract keywords and keyphrases extractions from input documents
fnmain() -> anyhow::Result<()>{let keyword_extraction_model =KeywordExtractionModel::new(Default::default())?;let input ="Rust is a multi-paradigm, general-purpose programming language.\ Rust emphasizes performance, type safety, and concurrency. Rust enforces memory safety—that is,\ that all references point to valid memory—without requiring the use of a garbage collector or\ reference counting present in other memory-safe languages. To simultaneously enforce\ memory safety and prevent concurrent data races, Rust's borrow checker tracks the object lifetime\ and variable scope of all references in a program during compilation. Rust is popular for\ systems programming but also offers high-level features including functional programming constructs.";let output = keyword_extraction_model.predict(&[input])?;}
Output:
"rust" - 0.50910604"programming" - 0.35731024"concurrency" - 0.33825397"concurrent" - 0.31229728"program" - 0.29115444
10. Part of Speech tagging
Extracts Part of Speech tags (Noun, Verb, Adjective...) from text.
let pos_model =POSModel::new( default::default()) ?;let input =["My name is Bob"];let output = pos_model.predict(& input);
Output:
[ Entity { word: "My", score: 0.1560, label: "PRP" } Entity { word: "name", score: 0.6565, label: "NN" } Entity { word: "is", score: 0.3697, label: "VBZ" } Entity { word: "Bob", score: 0.7460, label: "NNP" }]
11. Sentence embeddings
Generate sentence embeddings (vector representation). These can be used forapplications including dense information retrieval.
let model =SentenceEmbeddingsBuilder::remote(SentenceEmbeddingsModelType::AllMiniLmL12V2).create_model() ?;let sentences =["this is an example sentence","each sentence is converted"];let output = model.encode(& sentences) ?;
Output:
[ [-0.000202666, 0.08148022, 0.03136178, 0.002920636 ...], [0.064757116, 0.048519745, -0.01786038, -0.0479775 ...]]
12. Masked Language Model
Predict masked words in input sentences.
let model =MaskedLanguageModel::new(Default::default()) ?;let sentences =["Hello I am a <mask> student","Paris is the <mask> of France. It is <mask> in Europe.",];let output = model.predict(& sentences);
Output:
[ [MaskedToken { text: "college", id: 2267, score: 8.091}], [ MaskedToken { text: "capital", id: 3007, score: 16.7249}, MaskedToken { text: "located", id: 2284, score: 9.0452} ]]
For simple pipelines (sequence classification, tokens classification, questionanswering) the performance between Python and Rust is expected to be comparable.This is because the most expensive part of these pipeline is the language modelitself, sharing a common implementation in the Torch backend. TheEnd-to-end NLP Pipelines in Rustprovides a benchmarks section covering all pipelines.
For text generation tasks (summarization, translation, conversation, free textgeneration), significant benefits can be expected (up to 2 to 4 times fasterprocessing depending on the input and application). The articleAccelerating text generation with Rustfocuses on these text generation applications and provides more details on theperformance comparison to Python.
The base model and task-specific heads are also available for users looking toexpose their own transformer based models. Examples on how to prepare the dateusing a native tokenizers Rust library are available in./examples
for BERT,DistilBERT, RoBERTa, GPT, GPT2 and BART. Note that when importing models fromPytorch, the convention for parameters naming needs to be aligned with the Rustschema. Loading of the pre-trained weights will fail if any of the modelparameters weights cannot be found in the weight files. If this quality check isto be skipped, an alternative methodload_partial
can be invoked from thevariables store.
Pretrained models are available on Hugging face'smodel hub and can be loaded usingRemoteResources
defined in this library.
A conversion utility script is included in./utils
to convert Pytorch weightsto a set of weights compatible with this library. This script requires Pythonandtorch
to be set-up, and can be used as follows:python ./utils/convert_model.py path/to/pytorch_model.bin
wherepath/to/pytorch_model.bin
is the location of the original Pytorch weights.
python3 -m venv .venvsource .venv/bin/activatepip install -r requirements.txtpython utils/convert_model.py path/to/pytorch_model.bin
If you userust-bert
for your work, please citeEnd-to-end NLP Pipelines in Rust:
@inproceedings{becquin-2020-end,title ="End-to-end {NLP} Pipelines in Rust",author ="Becquin, Guillaume",booktitle ="Proceedings of Second Workshop for NLP Open Source Software (NLP-OSS)",year ="2020",publisher ="Association for Computational Linguistics",url ="https://www.aclweb.org/anthology/2020.nlposs-1.4",pages ="20--25",}
Thank you toHugging Face for hosting a set of weightscompatible with this Rust library. The list of ready-to-use pretrained models islisted athttps://huggingface.co/models?filter=rust.