From 551cda9d242c8268801d09380ed71400a7ed8694 Mon Sep 17 00:00:00 2001 From: MasterPhooey Date: Sun, 18 Jan 2026 07:45:57 -0600 Subject: [PATCH] logging update --- cli/wake_word_sample_augmenter | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cli/wake_word_sample_augmenter b/cli/wake_word_sample_augmenter index 99535fb..0ac08ef 100644 --- a/cli/wake_word_sample_augmenter +++ b/cli/wake_word_sample_augmenter @@ -206,7 +206,10 @@ def generate_feature_set(input_wav_dir: str, out_root_dir: str, label: str): for split, cfg in split_cfg.items(): out_dir = out_root / split out_dir.mkdir(parents=True, exist_ok=True) + print(f" Augmenting {split} ({label})") + print(" Sit tight this can take awhile ...") + print() spectros = SpectrogramGeneration( clips=clips, @@ -229,7 +232,7 @@ def generate_feature_set(input_wav_dir: str, out_root_dir: str, label: str): print(f" {split} augmentation complete ({label})") - print(f"āœ… Features ready: {out_root_dir}/*/wakeword_mmap") + print(f"\nāœ… Features ready: {out_root_dir}/*/wakeword_mmap\n") return True # Wake word generated/TTS features (existing behavior)