logging update

This commit is contained in:
MasterPhooey
2026-01-18 07:45:57 -06:00
parent d5e8d187a1
commit 551cda9d24

View File

@@ -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(): for split, cfg in split_cfg.items():
out_dir = out_root / split out_dir = out_root / split
out_dir.mkdir(parents=True, exist_ok=True) out_dir.mkdir(parents=True, exist_ok=True)
print(f" Augmenting {split} ({label})") print(f" Augmenting {split} ({label})")
print(" Sit tight this can take awhile ...")
print()
spectros = SpectrogramGeneration( spectros = SpectrogramGeneration(
clips=clips, 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" {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 return True
# Wake word generated/TTS features (existing behavior) # Wake word generated/TTS features (existing behavior)