From feeb289d6b62b65f1e918169e2ecb94de97b2473 Mon Sep 17 00:00:00 2001 From: NickKolok Date: Wed, 22 Nov 2023 19:52:52 +0300 Subject: [PATCH] [typo] 'gradient ccumulation' - 'gradient accumulation' --- train_db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/train_db.py b/train_db.py index 7fbbc18a..4ff19645 100644 --- a/train_db.py +++ b/train_db.py @@ -255,7 +255,7 @@ def train(args): accelerator.print( f" total train batch size (with parallel & distributed & accumulation) / 総バッチサイズ(並列学習、勾配合計含む): {total_batch_size}" ) - accelerator.print(f" gradient ccumulation steps / 勾配を合計するステップ数 = {args.gradient_accumulation_steps}") + accelerator.print(f" gradient accumulation steps / 勾配を合計するステップ数 = {args.gradient_accumulation_steps}") accelerator.print(f" total optimization steps / 学習ステップ数: {args.max_train_steps}") progress_bar = tqdm(range(args.max_train_steps), smoothing=0, disable=not accelerator.is_local_main_process, desc="steps")