Seriously, no idea. Wild amount of changes. Good luck.

This commit is contained in:
j-hartling
2026-04-17 17:19:30 +02:00
parent 36ac504efa
commit 3b4b7f2161
40 changed files with 2067 additions and 672 deletions

View File

@@ -9,7 +9,7 @@ from IPython import embed
save_path = '../data/processed/white_noise'
stages = ['raw', 'filt', 'env', 'log', 'inv', 'conv', 'bi', 'feat']
sds = [1]
dur = 60
dur = 180
# Interactivity:
reload_saved = False
@@ -45,6 +45,7 @@ for sd in sds:
# Generate white noise signal:
noise = rng.normal(loc=0, scale=sd, size=n_samples)
print('Got your no(i)se!')
# Fetch and store representations:
save = None if save_path is None else save_path + f'_sd-{sd}.npz'