add assertions to mel generator script

This commit is contained in:
James Betker 2022-07-19 11:23:54 -06:00
parent 1b6fe88bcb
commit 4597447178

View File

@ -57,7 +57,10 @@ def process_folder(folder, base_path, output_path, progress_file, max_duration,
total_progress += 30 total_progress += 30
if total_progress > 30: if total_progress > 30:
combined = torch.cat(to_combine, dim=-1).cuda() combined = torch.cat(to_combine, dim=-1).cuda()
mel = produce_mel(combined).cpu().numpy() mel = produce_mel(combined)
assert mel.max() < 1.00001, mel.max()
assert mel.min() > -1.00001, mel.min()
mel = mel.cpu().numpy()
np.savez(os.path.join(outdir, f'{output_i}'), mel) np.savez(os.path.join(outdir, f'{output_i}'), mel)
output_i += 1 output_i += 1
report_progress(progress_file, folder) report_progress(progress_file, folder)