Skip to content

Commit

Permalink
Merge branch 'master' into variable_batch_size_and_lr
Browse files Browse the repository at this point in the history
  • Loading branch information
bm-synth authored Jan 7, 2025
2 parents a8b25f4 + f2cc809 commit 54b9786
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions deepspeed/module_inject/containers/bloom.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,18 @@
class DS_BloomContainer(MetaTensorContainer, HybridEngineContainer, BaseTransformerContainer):

def __init__(self, **kwargs):
# Check transformers version, error if > 4.43.4 (breaks at 4.44.0)
from importlib.metadata import version
v_transformers = version('transformers')
vers = v_transformers.split('.')
major = int(vers[0])
minor = int(vers[1])
if major > 4 or (major == 4 and minor > 43):
import sys
sys.exit(
f"Transformers version {v_transformers} exceeds version 4.43.4! After transformers version 4.43.4, BLOOM inference with DeepSpeed is no longer supported."
)

super().__init__(**kwargs)

# All model specific things should be defined here instead of the base class.
Expand Down

0 comments on commit 54b9786

Please sign in to comment.