-
Notifications
You must be signed in to change notification settings - Fork 57
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
1edc19e
commit 5e2e939
Showing
3 changed files
with
12 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
*build* | ||
*DS_Store | ||
*DS_Store | ||
*runs* | ||
*__pycache__* | ||
export/* | ||
preprocessed/* |
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 |
---|---|---|
@@ -1,22 +1,22 @@ | ||
data: | ||
data_location: "./data/" | ||
data_location: /slow-2/georges/dataset-urmp-wav | ||
extension: "wav" | ||
|
||
preprocess: | ||
sampling_rate: &samplingrate 48000 | ||
signal_length: &signallength 192000 | ||
block_size: &blocksize 512 # must be a power of 2 if using realtime | ||
sampling_rate: &samplingrate 16000 | ||
signal_length: &signallength 64000 | ||
block_size: &blocksize 160 # must be a power of 2 if using realtime | ||
|
||
oneshot: false # crop every audio file to exactly signal length | ||
out_dir: ./preprocessed/ | ||
|
||
model: | ||
hidden_size: 512 | ||
n_harmonic: 64 | ||
n_harmonic: 101 | ||
n_bands: 65 | ||
sampling_rate: *samplingrate | ||
block_size: *blocksize | ||
|
||
train: | ||
scales: [4096,2048, 1024, 512, 256, 128] | ||
scales: [4096, 2048, 1024, 512, 256, 128] | ||
overlap: .75 |
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