Skip to content

Commit

Permalink
added example config files to the Configs directory
Browse files Browse the repository at this point in the history
  • Loading branch information
Alec-Wright committed Feb 24, 2021
1 parent aeab7ef commit 7f5d27c
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ application.macosx
out
Configs/*
!Configs/.gitkeep
!Configs/ht11.json
!Configs/muff1.json
Data/*
!Data/test/ht1-input.wav
!Data/test/ht1-target.wav
Expand Down
16 changes: 16 additions & 0 deletions Configs/ht11.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{"device": "ht1",
"data_location": "Data",
"config_location": "Configs",
"file_name": "ht1",
"seg_len": 44100,
"learn_rate": 0.0005,
"epochs": 500,
"batch_size": 25,
"validation_f": 5,
"loss_fcns": {"ESRPre": 0.5, "DC": 0.5},
"up_fr": 1024,
"init_len": 200,
"in_size": 1,
"num_blocks": 1,
"hidden_size": 32,
"unit_type": "LSTM"}
16 changes: 16 additions & 0 deletions Configs/muff1.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{"device": "muff",
"data_location": "Data",
"config_location": "Configs",
"file_name": "muff",
"seg_len": 44100,
"learn_rate": 0.0005,
"epochs": 500,
"batch_size": 25,
"validation_f": 5,
"loss_fcns": {"ESRPre": 0.5, "DC": 0.5},
"up_fr": 1024,
"init_len": 200,
"in_size": 1,
"num_blocks": 1,
"hidden_size": 32,
"unit_type": "LSTM"}

0 comments on commit 7f5d27c

Please sign in to comment.