Fixed progress bar output for epoch

This commit is contained in:
alg-wiki 2022-10-10 17:31:33 +09:00 committed by AUTOMATIC1111
parent ea00c1624b
commit 6ad3a53e36
1 changed files with 1 additions and 1 deletions

View File

@ -228,7 +228,7 @@ def train_embedding(embedding_name, learn_rate, data_root, log_directory, traini
optimizer.step() optimizer.step()
epoch_num = math.floor(embedding.step / epoch_len) epoch_num = math.floor(embedding.step / epoch_len)
epoch_step = embedding.step - (epoch_num * epoch_len) epoch_step = embedding.step - (epoch_num * epoch_len) + 1
pbar.set_description(f"[Epoch {epoch_num}: {epoch_step}/{epoch_len}]loss: {losses.mean():.7f}") pbar.set_description(f"[Epoch {epoch_num}: {epoch_step}/{epoch_len}]loss: {losses.mean():.7f}")