Skip to main content

Efficient implementations of sequence models with fast performance

Project description

FastSeq

Introduction

FastSeq provides efficient implementations of the popular sequence models with fast performance for text generation, summarization, and translation tasks. It can automatically optimize the performance of the pupular NLP toolkits (e.g. FairSeq) by simply import fastseq.

Benchmark

BatchSize 32 64 128
FairSeq-0.9.0 4.2 samples/s OOM OOM
FairSeq-0.9.0 + FastSeq 9.5 samples/s 12.8 samples/s 13.9 samples/s

where:

Requirements and installation

git clone https://github.com/microsoft/fastseq
cd fastseq
pip install --editable ./

Usage

Example

Only one line of code change is needed to use the optimizations provided by FastSeq.

# import fastseq at the beginning of your program
import fastseq
import torch

# Download BART already finetuned for MNLI
bart = torch.hub.load('pytorch/fairseq', 'bart.large.mnli')
bart.eval()  # disable dropout for evaluation

# Encode a pair of sentences and make a prediction
tokens = bart.encode('FastSeq optimizes FairSeq.', 'FastSeq accelerates FairSeq.')
bart.predict('mnli', tokens).argmax()  # 2: entailment

Run tests

# run a single test.
python tests/optimizer/fairseq/test_fairseq_optimizer.py

# run benchmark.
python tests/optimizer/fairseq/benchmark_fairseq_optimizer.py

# run all the tests.
python -m unittest discover -s tests/ -p '*.py'

Build

# build package
python setup.py sdist bdist_wheel

Code Style

Python coding style

Changes to Python code should conform to PEP 8. yapf can be used to help format the python code, and use pylint to check your Python changes.

# format the code by yapf
yapf --style pep8 -i -r PYTHON_FILE/PACKAGE

# run pylint check
pylint --rcfile=.pylintrc  PYTHON_FILE/PACKAGE

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fastseq-0.0.1.tar.gz (25.2 kB view hashes)

Uploaded Source

Built Distribution

fastseq-0.0.1-py3-none-any.whl (30.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page