From 4646ac7c6be922a37e988f5040d41264b99ee825 Mon Sep 17 00:00:00 2001 From: Dario Date: Fri, 22 Aug 2025 14:12:17 -0700 Subject: [PATCH] Show mean and std properly separated --- scratchgpt/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scratchgpt/main.py b/scratchgpt/main.py index a338fbc..f15a476 100644 --- a/scratchgpt/main.py +++ b/scratchgpt/main.py @@ -245,7 +245,7 @@ def run_epoch( average_loss.add(loss.item()) mean, std = average_loss.value() - pbar.set_description(f"{stage.capitalize()} Loss mean - std: {mean:.4f} {std:.4f}") + pbar.set_description(f"📉 {stage.capitalize()} Loss mean: {mean:.4f} std: {std:.4f}") pbar.update(1) pbar.close()