From 7f5d27cba9840709f4d54185f2f909e64a7fcea6 Mon Sep 17 00:00:00 2001 From: Alec-Wright Date: Wed, 24 Feb 2021 11:24:13 +0200 Subject: [PATCH] added example config files to the Configs directory --- .gitignore | 2 ++ Configs/ht11.json | 16 ++++++++++++++++ Configs/muff1.json | 16 ++++++++++++++++ 3 files changed, 34 insertions(+) create mode 100644 Configs/ht11.json create mode 100644 Configs/muff1.json diff --git a/.gitignore b/.gitignore index 3777567..9507896 100755 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/Configs/ht11.json b/Configs/ht11.json new file mode 100644 index 0000000..92ebf1c --- /dev/null +++ b/Configs/ht11.json @@ -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"} \ No newline at end of file diff --git a/Configs/muff1.json b/Configs/muff1.json new file mode 100644 index 0000000..674e2fa --- /dev/null +++ b/Configs/muff1.json @@ -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"} \ No newline at end of file