Compare commits

...

2 Commits

Author SHA1 Message Date
c4ad38e5ac Release: v4.16.1 2022-01-28 11:53:30 -05:00
ce0102acd0 Add init to BORT (#15378)
* Add init to BORT

* BORT should be in init
2022-01-28 11:52:07 -05:00
4 changed files with 3 additions and 2 deletions

View File

@ -351,7 +351,7 @@ install_requires = [
setup(
name="transformers",
version="4.16.0", # expected format is one of x.y.z.dev0, or x.y.z.rc1 or x.y.z (no to dashes, yes to dots)
version="4.16.1", # expected format is one of x.y.z.dev0, or x.y.z.rc1 or x.y.z (no to dashes, yes to dots)
author="Thomas Wolf, Lysandre Debut, Victor Sanh, Julien Chaumond, Sam Shleifer, Patrick von Platen, Sylvain Gugger, Suraj Patil, Stas Bekman, Google AI Language Team Authors, Open AI team Authors, Facebook AI Authors, Carnegie Mellon University Authors",
author_email="thomas@huggingface.co",
description="State-of-the-art Natural Language Processing for TensorFlow 2.0 and PyTorch",

View File

@ -22,7 +22,7 @@
# to defer the actual importing for when the objects are requested. This way `import transformers` provides the names
# in the namespace without actually importing anything (and especially none of the backends).
__version__ = "4.16.0"
__version__ = "4.16.1"
from typing import TYPE_CHECKING

View File

@ -31,6 +31,7 @@ from . import (
bigbird_pegasus,
blenderbot,
blenderbot_small,
bort,
byt5,
camembert,
canine,

View File