From 9c641dc16154964e5ffc0c13e9ec6aaffa295ed6 Mon Sep 17 00:00:00 2001 From: Arthur Date: Tue, 29 Jul 2025 17:32:03 +0200 Subject: [PATCH] v4.54.1 --- .../pytorch/audio-classification/run_audio_classification.py | 2 +- examples/pytorch/contrastive-image-text/run_clip.py | 2 +- .../pytorch/image-classification/run_image_classification.py | 2 +- .../image-classification/run_image_classification_no_trainer.py | 2 +- examples/pytorch/image-pretraining/run_mae.py | 2 +- examples/pytorch/image-pretraining/run_mim.py | 2 +- examples/pytorch/image-pretraining/run_mim_no_trainer.py | 2 +- .../pytorch/instance-segmentation/run_instance_segmentation.py | 2 +- .../run_instance_segmentation_no_trainer.py | 2 +- examples/pytorch/language-modeling/run_clm.py | 2 +- examples/pytorch/language-modeling/run_clm_no_trainer.py | 2 +- examples/pytorch/language-modeling/run_fim.py | 2 +- examples/pytorch/language-modeling/run_fim_no_trainer.py | 2 +- examples/pytorch/language-modeling/run_mlm.py | 2 +- examples/pytorch/language-modeling/run_mlm_no_trainer.py | 2 +- examples/pytorch/language-modeling/run_plm.py | 2 +- examples/pytorch/multiple-choice/run_swag.py | 2 +- examples/pytorch/multiple-choice/run_swag_no_trainer.py | 2 +- examples/pytorch/object-detection/run_object_detection.py | 2 +- .../pytorch/object-detection/run_object_detection_no_trainer.py | 2 +- .../pytorch/semantic-segmentation/run_semantic_segmentation.py | 2 +- .../run_semantic_segmentation_no_trainer.py | 2 +- .../speech-pretraining/run_wav2vec2_pretraining_no_trainer.py | 2 +- .../pytorch/speech-recognition/run_speech_recognition_ctc.py | 2 +- .../speech-recognition/run_speech_recognition_ctc_adapter.py | 2 +- .../speech-recognition/run_speech_recognition_seq2seq.py | 2 +- examples/pytorch/summarization/run_summarization.py | 2 +- examples/pytorch/summarization/run_summarization_no_trainer.py | 2 +- examples/pytorch/text-classification/run_classification.py | 2 +- examples/pytorch/text-classification/run_glue.py | 2 +- examples/pytorch/text-classification/run_glue_no_trainer.py | 2 +- examples/pytorch/text-classification/run_xnli.py | 2 +- examples/pytorch/text-generation/run_generation.py | 2 +- .../text-generation/run_generation_contrastive_search.py | 2 +- examples/pytorch/token-classification/run_ner.py | 2 +- examples/pytorch/token-classification/run_ner_no_trainer.py | 2 +- examples/pytorch/translation/run_translation.py | 2 +- examples/pytorch/translation/run_translation_no_trainer.py | 2 +- setup.py | 2 +- src/transformers/__init__.py | 2 +- 40 files changed, 40 insertions(+), 40 deletions(-) diff --git a/examples/pytorch/audio-classification/run_audio_classification.py b/examples/pytorch/audio-classification/run_audio_classification.py index 55d32d165d..5ca4cc3b98 100644 --- a/examples/pytorch/audio-classification/run_audio_classification.py +++ b/examples/pytorch/audio-classification/run_audio_classification.py @@ -15,7 +15,7 @@ # /// script # dependencies = [ -# "transformers==4.54.0", +# "transformers==4.54.1", # "datasets[audio]>=1.14.0", # "evaluate", # "librosa", diff --git a/examples/pytorch/contrastive-image-text/run_clip.py b/examples/pytorch/contrastive-image-text/run_clip.py index 3ca209313e..bd2343256a 100644 --- a/examples/pytorch/contrastive-image-text/run_clip.py +++ b/examples/pytorch/contrastive-image-text/run_clip.py @@ -15,7 +15,7 @@ # /// script # dependencies = [ -# "transformers==4.54.0", +# "transformers==4.54.1", # "torch>=1.5.0", # "torchvision>=0.6.0", # "datasets>=1.8.0", diff --git a/examples/pytorch/image-classification/run_image_classification.py b/examples/pytorch/image-classification/run_image_classification.py index 240164d6a4..5e02083b72 100755 --- a/examples/pytorch/image-classification/run_image_classification.py +++ b/examples/pytorch/image-classification/run_image_classification.py @@ -14,7 +14,7 @@ # /// script # dependencies = [ -# "transformers==4.54.0", +# "transformers==4.54.1", # "accelerate>=0.12.0", # "torch>=1.5.0", # "torchvision>=0.6.0", diff --git a/examples/pytorch/image-classification/run_image_classification_no_trainer.py b/examples/pytorch/image-classification/run_image_classification_no_trainer.py index 2e908767c7..f24753497d 100644 --- a/examples/pytorch/image-classification/run_image_classification_no_trainer.py +++ b/examples/pytorch/image-classification/run_image_classification_no_trainer.py @@ -14,7 +14,7 @@ # /// script # dependencies = [ -# "transformers==4.54.0", +# "transformers==4.54.1", # "accelerate>=0.12.0", # "torch>=1.5.0", # "torchvision>=0.6.0", diff --git a/examples/pytorch/image-pretraining/run_mae.py b/examples/pytorch/image-pretraining/run_mae.py index d2a9613e9a..da1b49d68b 100644 --- a/examples/pytorch/image-pretraining/run_mae.py +++ b/examples/pytorch/image-pretraining/run_mae.py @@ -14,7 +14,7 @@ # /// script # dependencies = [ -# "transformers==4.54.0", +# "transformers==4.54.1", # "torch>=1.5.0", # "torchvision>=0.6.0", # "datasets>=1.8.0", diff --git a/examples/pytorch/image-pretraining/run_mim.py b/examples/pytorch/image-pretraining/run_mim.py index 9e38f790c4..32dbec9f97 100644 --- a/examples/pytorch/image-pretraining/run_mim.py +++ b/examples/pytorch/image-pretraining/run_mim.py @@ -14,7 +14,7 @@ # /// script # dependencies = [ -# "transformers==4.54.0", +# "transformers==4.54.1", # "torch>=1.5.0", # "torchvision>=0.6.0", # "datasets>=1.8.0", diff --git a/examples/pytorch/image-pretraining/run_mim_no_trainer.py b/examples/pytorch/image-pretraining/run_mim_no_trainer.py index 62f2f98bb0..5e1e48acd8 100644 --- a/examples/pytorch/image-pretraining/run_mim_no_trainer.py +++ b/examples/pytorch/image-pretraining/run_mim_no_trainer.py @@ -14,7 +14,7 @@ # /// script # dependencies = [ -# "transformers==4.54.0", +# "transformers==4.54.1", # "torch>=1.5.0", # "torchvision>=0.6.0", # "datasets>=1.8.0", diff --git a/examples/pytorch/instance-segmentation/run_instance_segmentation.py b/examples/pytorch/instance-segmentation/run_instance_segmentation.py index 777f78d8f8..ddd133c785 100644 --- a/examples/pytorch/instance-segmentation/run_instance_segmentation.py +++ b/examples/pytorch/instance-segmentation/run_instance_segmentation.py @@ -14,7 +14,7 @@ # /// script # dependencies = [ -# "transformers==4.54.0", +# "transformers==4.54.1", # "albumentations >= 1.4.16", # "timm", # "datasets", diff --git a/examples/pytorch/instance-segmentation/run_instance_segmentation_no_trainer.py b/examples/pytorch/instance-segmentation/run_instance_segmentation_no_trainer.py index 02e1d02abe..f33439cf3d 100644 --- a/examples/pytorch/instance-segmentation/run_instance_segmentation_no_trainer.py +++ b/examples/pytorch/instance-segmentation/run_instance_segmentation_no_trainer.py @@ -14,7 +14,7 @@ # /// script # dependencies = [ -# "transformers==4.54.0", +# "transformers==4.54.1", # "albumentations >= 1.4.16", # "timm", # "datasets", diff --git a/examples/pytorch/language-modeling/run_clm.py b/examples/pytorch/language-modeling/run_clm.py index ffe52b1d3c..8978b07071 100755 --- a/examples/pytorch/language-modeling/run_clm.py +++ b/examples/pytorch/language-modeling/run_clm.py @@ -15,7 +15,7 @@ # /// script # dependencies = [ -# "transformers==4.54.0", +# "transformers==4.54.1", # "albumentations >= 1.4.16", # "accelerate >= 0.12.0", # "torch >= 1.3", diff --git a/examples/pytorch/language-modeling/run_clm_no_trainer.py b/examples/pytorch/language-modeling/run_clm_no_trainer.py index fc1128a7ac..6c5424c3e1 100755 --- a/examples/pytorch/language-modeling/run_clm_no_trainer.py +++ b/examples/pytorch/language-modeling/run_clm_no_trainer.py @@ -15,7 +15,7 @@ # /// script # dependencies = [ -# "transformers==4.54.0", +# "transformers==4.54.1", # "albumentations >= 1.4.16", # "accelerate >= 0.12.0", # "torch >= 1.3", diff --git a/examples/pytorch/language-modeling/run_fim.py b/examples/pytorch/language-modeling/run_fim.py index a296dac99c..54282c9e3d 100644 --- a/examples/pytorch/language-modeling/run_fim.py +++ b/examples/pytorch/language-modeling/run_fim.py @@ -15,7 +15,7 @@ # /// script # dependencies = [ -# "transformers==4.54.0", +# "transformers==4.54.1", # "albumentations >= 1.4.16", # "accelerate >= 0.12.0", # "torch >= 1.3", diff --git a/examples/pytorch/language-modeling/run_fim_no_trainer.py b/examples/pytorch/language-modeling/run_fim_no_trainer.py index 7f4bcb671d..bfce8bebed 100644 --- a/examples/pytorch/language-modeling/run_fim_no_trainer.py +++ b/examples/pytorch/language-modeling/run_fim_no_trainer.py @@ -15,7 +15,7 @@ # /// script # dependencies = [ -# "transformers==4.54.0", +# "transformers==4.54.1", # "albumentations >= 1.4.16", # "accelerate >= 0.12.0", # "torch >= 1.3", diff --git a/examples/pytorch/language-modeling/run_mlm.py b/examples/pytorch/language-modeling/run_mlm.py index f81b7e510f..5f5f876890 100755 --- a/examples/pytorch/language-modeling/run_mlm.py +++ b/examples/pytorch/language-modeling/run_mlm.py @@ -15,7 +15,7 @@ # /// script # dependencies = [ -# "transformers==4.54.0", +# "transformers==4.54.1", # "albumentations >= 1.4.16", # "accelerate >= 0.12.0", # "torch >= 1.3", diff --git a/examples/pytorch/language-modeling/run_mlm_no_trainer.py b/examples/pytorch/language-modeling/run_mlm_no_trainer.py index d2441d7f28..83e212e303 100755 --- a/examples/pytorch/language-modeling/run_mlm_no_trainer.py +++ b/examples/pytorch/language-modeling/run_mlm_no_trainer.py @@ -15,7 +15,7 @@ # /// script # dependencies = [ -# "transformers==4.54.0", +# "transformers==4.54.1", # "albumentations >= 1.4.16", # "accelerate >= 0.12.0", # "torch >= 1.3", diff --git a/examples/pytorch/language-modeling/run_plm.py b/examples/pytorch/language-modeling/run_plm.py index b45df82276..a98b1f9a95 100755 --- a/examples/pytorch/language-modeling/run_plm.py +++ b/examples/pytorch/language-modeling/run_plm.py @@ -15,7 +15,7 @@ # /// script # dependencies = [ -# "transformers==4.54.0", +# "transformers==4.54.1", # "albumentations >= 1.4.16", # "accelerate >= 0.12.0", # "torch >= 1.3", diff --git a/examples/pytorch/multiple-choice/run_swag.py b/examples/pytorch/multiple-choice/run_swag.py index 6d20382438..4219ae7eb8 100755 --- a/examples/pytorch/multiple-choice/run_swag.py +++ b/examples/pytorch/multiple-choice/run_swag.py @@ -15,7 +15,7 @@ # /// script # dependencies = [ -# "transformers==4.54.0", +# "transformers==4.54.1", # "accelerate >= 0.12.0", # "sentencepiece != 0.1.92", # "protobuf", diff --git a/examples/pytorch/multiple-choice/run_swag_no_trainer.py b/examples/pytorch/multiple-choice/run_swag_no_trainer.py index 91a4ac08ca..978231591e 100755 --- a/examples/pytorch/multiple-choice/run_swag_no_trainer.py +++ b/examples/pytorch/multiple-choice/run_swag_no_trainer.py @@ -15,7 +15,7 @@ # /// script # dependencies = [ -# "transformers==4.54.0", +# "transformers==4.54.1", # "accelerate >= 0.12.0", # "sentencepiece != 0.1.92", # "protobuf", diff --git a/examples/pytorch/object-detection/run_object_detection.py b/examples/pytorch/object-detection/run_object_detection.py index 89f23ce0d2..148333dbac 100644 --- a/examples/pytorch/object-detection/run_object_detection.py +++ b/examples/pytorch/object-detection/run_object_detection.py @@ -14,7 +14,7 @@ # /// script # dependencies = [ -# "transformers==4.54.0", +# "transformers==4.54.1", # "albumentations >= 1.4.16", # "timm", # "datasets>=4.0", diff --git a/examples/pytorch/object-detection/run_object_detection_no_trainer.py b/examples/pytorch/object-detection/run_object_detection_no_trainer.py index fe9907bfff..dc44a05203 100644 --- a/examples/pytorch/object-detection/run_object_detection_no_trainer.py +++ b/examples/pytorch/object-detection/run_object_detection_no_trainer.py @@ -14,7 +14,7 @@ # /// script # dependencies = [ -# "transformers==4.54.0", +# "transformers==4.54.1", # "albumentations >= 1.4.16", # "timm", # "datasets>=4.0", diff --git a/examples/pytorch/semantic-segmentation/run_semantic_segmentation.py b/examples/pytorch/semantic-segmentation/run_semantic_segmentation.py index 75bbe69e6d..abe03699f1 100644 --- a/examples/pytorch/semantic-segmentation/run_semantic_segmentation.py +++ b/examples/pytorch/semantic-segmentation/run_semantic_segmentation.py @@ -14,7 +14,7 @@ # /// script # dependencies = [ -# "transformers==4.54.0", +# "transformers==4.54.1", # "datasets >= 2.0.0", # "torch >= 1.3", # "accelerate", diff --git a/examples/pytorch/semantic-segmentation/run_semantic_segmentation_no_trainer.py b/examples/pytorch/semantic-segmentation/run_semantic_segmentation_no_trainer.py index 2e0fe0b54f..e71f18bfe3 100644 --- a/examples/pytorch/semantic-segmentation/run_semantic_segmentation_no_trainer.py +++ b/examples/pytorch/semantic-segmentation/run_semantic_segmentation_no_trainer.py @@ -14,7 +14,7 @@ # /// script # dependencies = [ -# "transformers==4.54.0", +# "transformers==4.54.1", # "datasets >= 2.0.0", # "torch >= 1.3", # "accelerate", diff --git a/examples/pytorch/speech-pretraining/run_wav2vec2_pretraining_no_trainer.py b/examples/pytorch/speech-pretraining/run_wav2vec2_pretraining_no_trainer.py index 9946aed5e4..2cd301a3dd 100755 --- a/examples/pytorch/speech-pretraining/run_wav2vec2_pretraining_no_trainer.py +++ b/examples/pytorch/speech-pretraining/run_wav2vec2_pretraining_no_trainer.py @@ -14,7 +14,7 @@ # /// script # dependencies = [ -# "transformers==4.54.0", +# "transformers==4.54.1", # "datasets[audio] >= 1.12.0", # "torch >= 1.5", # "torchaudio", diff --git a/examples/pytorch/speech-recognition/run_speech_recognition_ctc.py b/examples/pytorch/speech-recognition/run_speech_recognition_ctc.py index c66df5271e..216638666b 100755 --- a/examples/pytorch/speech-recognition/run_speech_recognition_ctc.py +++ b/examples/pytorch/speech-recognition/run_speech_recognition_ctc.py @@ -15,7 +15,7 @@ # /// script # dependencies = [ -# "transformers==4.54.0", +# "transformers==4.54.1", # "datasets[audio] >= 1.18.0", # "torch >= 1.5", # "torchaudio", diff --git a/examples/pytorch/speech-recognition/run_speech_recognition_ctc_adapter.py b/examples/pytorch/speech-recognition/run_speech_recognition_ctc_adapter.py index 1c07423d50..24b773a47a 100755 --- a/examples/pytorch/speech-recognition/run_speech_recognition_ctc_adapter.py +++ b/examples/pytorch/speech-recognition/run_speech_recognition_ctc_adapter.py @@ -15,7 +15,7 @@ # /// script # dependencies = [ -# "transformers==4.54.0", +# "transformers==4.54.1", # "datasets[audio] >= 1.18.0", # "torch >= 1.5", # "torchaudio", diff --git a/examples/pytorch/speech-recognition/run_speech_recognition_seq2seq.py b/examples/pytorch/speech-recognition/run_speech_recognition_seq2seq.py index fd18339326..f62c21308b 100755 --- a/examples/pytorch/speech-recognition/run_speech_recognition_seq2seq.py +++ b/examples/pytorch/speech-recognition/run_speech_recognition_seq2seq.py @@ -15,7 +15,7 @@ # /// script # dependencies = [ -# "transformers==4.54.0", +# "transformers==4.54.1", # "datasets[audio] >= 1.18.0", # "torch >= 1.5", # "torchaudio", diff --git a/examples/pytorch/summarization/run_summarization.py b/examples/pytorch/summarization/run_summarization.py index 92309d6036..2b2a4d15c4 100755 --- a/examples/pytorch/summarization/run_summarization.py +++ b/examples/pytorch/summarization/run_summarization.py @@ -15,7 +15,7 @@ # /// script # dependencies = [ -# "transformers==4.54.0", +# "transformers==4.54.1", # "accelerate >= 0.12.0", # "datasets >= 1.8.0", # "sentencepiece != 0.1.92", diff --git a/examples/pytorch/summarization/run_summarization_no_trainer.py b/examples/pytorch/summarization/run_summarization_no_trainer.py index 7c81b361a5..7e4586e647 100644 --- a/examples/pytorch/summarization/run_summarization_no_trainer.py +++ b/examples/pytorch/summarization/run_summarization_no_trainer.py @@ -15,7 +15,7 @@ # /// script # dependencies = [ -# "transformers==4.54.0", +# "transformers==4.54.1", # "accelerate >= 0.12.0", # "datasets >= 1.8.0", # "sentencepiece != 0.1.92", diff --git a/examples/pytorch/text-classification/run_classification.py b/examples/pytorch/text-classification/run_classification.py index 840b22f96f..2ab1e30e6c 100755 --- a/examples/pytorch/text-classification/run_classification.py +++ b/examples/pytorch/text-classification/run_classification.py @@ -15,7 +15,7 @@ # /// script # dependencies = [ -# "transformers==4.54.0", +# "transformers==4.54.1", # "accelerate >= 0.12.0", # "datasets >= 1.8.0", # "sentencepiece != 0.1.92", diff --git a/examples/pytorch/text-classification/run_glue.py b/examples/pytorch/text-classification/run_glue.py index 9df3044828..230e968019 100755 --- a/examples/pytorch/text-classification/run_glue.py +++ b/examples/pytorch/text-classification/run_glue.py @@ -15,7 +15,7 @@ # /// script # dependencies = [ -# "transformers==4.54.0", +# "transformers==4.54.1", # "accelerate >= 0.12.0", # "datasets >= 1.8.0", # "sentencepiece != 0.1.92", diff --git a/examples/pytorch/text-classification/run_glue_no_trainer.py b/examples/pytorch/text-classification/run_glue_no_trainer.py index 9e811f7167..1fc4281c75 100644 --- a/examples/pytorch/text-classification/run_glue_no_trainer.py +++ b/examples/pytorch/text-classification/run_glue_no_trainer.py @@ -14,7 +14,7 @@ # /// script # dependencies = [ -# "transformers==4.54.0", +# "transformers==4.54.1", # "accelerate >= 0.12.0", # "datasets >= 1.8.0", # "sentencepiece != 0.1.92", diff --git a/examples/pytorch/text-classification/run_xnli.py b/examples/pytorch/text-classification/run_xnli.py index e2b0abde05..0ff7beda12 100755 --- a/examples/pytorch/text-classification/run_xnli.py +++ b/examples/pytorch/text-classification/run_xnli.py @@ -16,7 +16,7 @@ # /// script # dependencies = [ -# "transformers==4.54.0", +# "transformers==4.54.1", # "accelerate >= 0.12.0", # "datasets >= 1.8.0", # "sentencepiece != 0.1.92", diff --git a/examples/pytorch/text-generation/run_generation.py b/examples/pytorch/text-generation/run_generation.py index ee56fb3633..689ac6f78a 100755 --- a/examples/pytorch/text-generation/run_generation.py +++ b/examples/pytorch/text-generation/run_generation.py @@ -16,7 +16,7 @@ # /// script # dependencies = [ -# "transformers==4.54.0", +# "transformers==4.54.1", # "accelerate >= 0.21.0", # "sentencepiece != 0.1.92", # "protobuf", diff --git a/examples/pytorch/text-generation/run_generation_contrastive_search.py b/examples/pytorch/text-generation/run_generation_contrastive_search.py index d89d19939d..e41a8b38f3 100755 --- a/examples/pytorch/text-generation/run_generation_contrastive_search.py +++ b/examples/pytorch/text-generation/run_generation_contrastive_search.py @@ -15,7 +15,7 @@ # /// script # dependencies = [ -# "transformers==4.54.0", +# "transformers==4.54.1", # "accelerate >= 0.21.0", # "sentencepiece != 0.1.92", # "protobuf", diff --git a/examples/pytorch/token-classification/run_ner.py b/examples/pytorch/token-classification/run_ner.py index a3bee9c588..42b2ac8432 100755 --- a/examples/pytorch/token-classification/run_ner.py +++ b/examples/pytorch/token-classification/run_ner.py @@ -15,7 +15,7 @@ # /// script # dependencies = [ -# "transformers==4.54.0", +# "transformers==4.54.1", # "accelerate >= 0.12.0", # "seqeval", # "datasets >= 1.8.0", diff --git a/examples/pytorch/token-classification/run_ner_no_trainer.py b/examples/pytorch/token-classification/run_ner_no_trainer.py index 54da5cd07c..834b45259b 100755 --- a/examples/pytorch/token-classification/run_ner_no_trainer.py +++ b/examples/pytorch/token-classification/run_ner_no_trainer.py @@ -15,7 +15,7 @@ # /// script # dependencies = [ -# "transformers==4.54.0", +# "transformers==4.54.1", # "accelerate >= 0.12.0", # "seqeval", # "datasets >= 1.8.0", diff --git a/examples/pytorch/translation/run_translation.py b/examples/pytorch/translation/run_translation.py index 4dc5d3f80d..b3f29ecbce 100755 --- a/examples/pytorch/translation/run_translation.py +++ b/examples/pytorch/translation/run_translation.py @@ -15,7 +15,7 @@ # /// script # dependencies = [ -# "transformers==4.54.0", +# "transformers==4.54.1", # "accelerate >= 0.12.0", # "datasets >= 1.8.0", # "sentencepiece != 0.1.92", diff --git a/examples/pytorch/translation/run_translation_no_trainer.py b/examples/pytorch/translation/run_translation_no_trainer.py index eb31535fc1..c3a24d8d7a 100644 --- a/examples/pytorch/translation/run_translation_no_trainer.py +++ b/examples/pytorch/translation/run_translation_no_trainer.py @@ -15,7 +15,7 @@ # /// script # dependencies = [ -# "transformers==4.54.0", +# "transformers==4.54.1", # "accelerate >= 0.12.0", # "datasets >= 1.8.0", # "sentencepiece != 0.1.92", diff --git a/setup.py b/setup.py index e9b7b18012..7b8e1e6a27 100644 --- a/setup.py +++ b/setup.py @@ -462,7 +462,7 @@ install_requires = [ setup( name="transformers", - version="4.54.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.54.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="The Hugging Face team (past and future) with the help of all our contributors (https://github.com/huggingface/transformers/graphs/contributors)", author_email="transformers@huggingface.co", description="State-of-the-art Machine Learning for JAX, PyTorch and TensorFlow", diff --git a/src/transformers/__init__.py b/src/transformers/__init__.py index 4446200e8b..ad98e29a86 100644 --- a/src/transformers/__init__.py +++ b/src/transformers/__init__.py @@ -18,7 +18,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.54.0" +__version__ = "4.54.1" from pathlib import Path from typing import TYPE_CHECKING