From 7ef3f19c3c729d24622495ccd9a606e9293f376b Mon Sep 17 00:00:00 2001 From: Thomas-MMJ <112830596+Thomas-MMJ@users.noreply.github.com> Date: Mon, 19 Dec 2022 23:16:26 -0900 Subject: [PATCH] fix typo output not ouput in bitsandbytes trainer test (#20839) fix typo output not ouput typo was causing an error on pytest collection --- tests/trainer/test_trainer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/trainer/test_trainer.py b/tests/trainer/test_trainer.py index c552f80e09b..01e7ed5fdc9 100644 --- a/tests/trainer/test_trainer.py +++ b/tests/trainer/test_trainer.py @@ -2332,7 +2332,7 @@ if is_torch_available(): optim_test_params.append( ( - TrainingArguments(optim=OptimizerNames.ADAMW_BNB, ouput_dir="None"), + TrainingArguments(optim=OptimizerNames.ADAMW_BNB, output_dir="None"), bnb.optim.Adam8bit, default_adam_kwargs, )