-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
15ff1d1
commit 39005bc
Showing
27 changed files
with
305 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+455 Bytes
model_zoo/intel_ndns/spike_fsb/baseline_l/checkpoints/best/custom_checkpoint_0.pkl
Binary file not shown.
Binary file added
BIN
+455 Bytes
model_zoo/intel_ndns/spike_fsb/baseline_l/checkpoints/best/custom_checkpoint_1.pkl
Binary file not shown.
Binary file added
BIN
+583 Bytes
model_zoo/intel_ndns/spike_fsb/baseline_l/checkpoints/best/custom_checkpoint_2.pkl
Binary file not shown.
Binary file added
BIN
+9.88 MB
model_zoo/intel_ndns/spike_fsb/baseline_l/checkpoints/best/optimizer.bin
Binary file not shown.
Binary file added
BIN
+1.4 MB
model_zoo/intel_ndns/spike_fsb/baseline_l/checkpoints/best/optimizer_1.bin
Binary file not shown.
Binary file added
BIN
+4.97 MB
model_zoo/intel_ndns/spike_fsb/baseline_l/checkpoints/best/pytorch_model.bin
Binary file not shown.
Binary file added
BIN
+730 KB
model_zoo/intel_ndns/spike_fsb/baseline_l/checkpoints/best/pytorch_model_1.bin
Binary file not shown.
Binary file added
BIN
+23.2 KB
model_zoo/intel_ndns/spike_fsb/baseline_l/checkpoints/best/random_states_0.pkl
Binary file not shown.
Binary file added
BIN
+563 Bytes
model_zoo/intel_ndns/spike_fsb/baseline_l/checkpoints/best/scheduler.bin
Binary file not shown.
Binary file added
BIN
+567 Bytes
model_zoo/intel_ndns/spike_fsb/baseline_l/checkpoints/best/scheduler_1.bin
Binary file not shown.
120 changes: 120 additions & 0 deletions
120
model_zoo/intel_ndns/spike_fsb/baseline_l/config__2023_07_27--22_13_36.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
[[validate_dataset]] | ||
path = "dataloader.DNSAudio" | ||
|
||
[validate_dataset.args] | ||
root = "/datasets/datasets_fullband/validation_set/" | ||
train = false | ||
[validate_dataset.dataloader] | ||
batch_size = 6 | ||
num_workers = 6 | ||
|
||
[meta] | ||
save_dir = "exp" | ||
description = "Train a model using Generative Adversarial Networks (GANs)" | ||
seed = 20220815 | ||
exp_id = "baseline_l" | ||
config_path = "/home/xianghao/proj/audiozen/recipes/intel_ndns/spike_fsb/baseline_l.toml" | ||
|
||
[trainer] | ||
path = "trainer.Trainer" | ||
|
||
[loss_function] | ||
path = "torch.nn.MSELoss" | ||
|
||
[optimizer_g] | ||
path = "torch.optim.AdamW" | ||
|
||
[optimizer_d] | ||
path = "torch.optim.AdamW" | ||
|
||
[lr_scheduler_g] | ||
path = "torch.optim.lr_scheduler.ExponentialLR" | ||
|
||
[lr_scheduler_d] | ||
path = "torch.optim.lr_scheduler.ExponentialLR" | ||
|
||
[model_g] | ||
path = "model_low_freq.Separator" | ||
|
||
[model_d] | ||
path = "discriminator.Discriminator" | ||
|
||
[acoustics] | ||
n_fft = 512 | ||
hop_length = 128 | ||
win_length = 512 | ||
sr = 16000 | ||
|
||
[train_dataset] | ||
path = "dataloader.DNSAudio" | ||
|
||
[test_dataset] | ||
path = "dataloader.DNSAudio" | ||
|
||
[trainer.args] | ||
max_epoch = 9999 | ||
clip_grad_norm_value = 10 | ||
save_max_score = true | ||
save_ckpt_interval = 1 | ||
patience = 20 | ||
plot_norm = true | ||
validation_interval = 1 | ||
max_num_checkpoints = 9999 | ||
|
||
[loss_function.args] | ||
|
||
[optimizer_g.args] | ||
lr = 0.001 | ||
|
||
[optimizer_d.args] | ||
lr = 0.001 | ||
|
||
[lr_scheduler_g.args] | ||
gamma = 0.99 | ||
|
||
[lr_scheduler_d.args] | ||
gamma = 0.99 | ||
|
||
[model_g.args] | ||
sr = 16000 | ||
fdrc = 0.5 | ||
n_fft = 512 | ||
fb_freqs = 64 | ||
hop_length = 128 | ||
win_length = 512 | ||
num_freqs = 256 | ||
sequence_model = "GSU" | ||
fb_hidden_size = 320 | ||
fb_output_activate_function = false | ||
freq_cutoffs = [ 32, 128, 192,] | ||
sb_df_orders = [ 5, 3, 1, 1,] | ||
sb_num_center_freqs = [ 2, 4, 32, 64,] | ||
sb_num_neighbor_freqs = [ 15, 15, 15, 15,] | ||
fb_num_center_freqs = [ 2, 4, 32, 64,] | ||
fb_num_neighbor_freqs = [ 0, 0, 0, 0,] | ||
sb_hidden_size = 256 | ||
sb_output_activate_function = false | ||
norm_type = "offline_laplace_norm" | ||
shared_weights = true | ||
bn = true | ||
|
||
[model_d.args] | ||
|
||
[train_dataset.args] | ||
root = "/datasets/datasets_fullband/training_set/" | ||
limit = false | ||
offset = 0 | ||
|
||
[train_dataset.dataloader] | ||
batch_size = 24 | ||
num_workers = 12 | ||
drop_last = true | ||
pin_memory = true | ||
|
||
[test_dataset.args] | ||
root = "/datasets/datasets_fullband/validation_set/" | ||
train = false | ||
|
||
[test_dataset.dataloader] | ||
batch_size = 6 | ||
num_workers = 6 |
Binary file added
BIN
+2.33 KB
...dns/spike_fsb/baseline_l/tb_log/events.out.tfevents.1690381937.user-SYS-420GP-TNR.50027.0
Binary file not shown.
Binary file added
BIN
+2.33 KB
...dns/spike_fsb/baseline_l/tb_log/events.out.tfevents.1690381995.user-SYS-420GP-TNR.56015.0
Binary file not shown.
Binary file added
BIN
+2.33 KB
...dns/spike_fsb/baseline_l/tb_log/events.out.tfevents.1690382073.user-SYS-420GP-TNR.64818.0
Binary file not shown.
Binary file added
BIN
+2.33 KB
...dns/spike_fsb/baseline_l/tb_log/events.out.tfevents.1690382145.user-SYS-420GP-TNR.73507.0
Binary file not shown.
Binary file added
BIN
+2.33 KB
...dns/spike_fsb/baseline_l/tb_log/events.out.tfevents.1690382207.user-SYS-420GP-TNR.81987.0
Binary file not shown.
Binary file added
BIN
+5.99 MB
...dns/spike_fsb/baseline_l/tb_log/events.out.tfevents.1690382278.user-SYS-420GP-TNR.90664.0
Binary file not shown.
Binary file added
BIN
+2.33 KB
...s/spike_fsb/baseline_l/tb_log/events.out.tfevents.1690465514.user-SYS-420GP-TNR.2624973.0
Binary file not shown.
Binary file added
BIN
+2.33 KB
...s/spike_fsb/baseline_l/tb_log/events.out.tfevents.1690466057.user-SYS-420GP-TNR.2641013.0
Binary file not shown.
Binary file added
BIN
+20.4 KB
...s/spike_fsb/baseline_l/tb_log/events.out.tfevents.1690467216.user-SYS-420GP-TNR.2667713.0
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.