Skip to content

Commit

Permalink
fix if elif seq2seq
Browse files Browse the repository at this point in the history
  • Loading branch information
abhishekkrthakur committed Jun 20, 2024
1 parent 2cac237 commit fd6390c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/autotrain/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
warnings.filterwarnings("ignore", category=UserWarning, module="huggingface_hub")

logger = Logger().get_logger()
__version__ = "0.7.126"
__version__ = "0.7.127"


def is_colab():
Expand Down
2 changes: 1 addition & 1 deletion src/autotrain/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ def launch_command(params):
"launch",
"--cpu",
]
if num_gpus == 1:
elif num_gpus == 1:
cmd = [
"accelerate",
"launch",
Expand Down

0 comments on commit fd6390c

Please sign in to comment.