forked from interactiveaudiolab/penn
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP polypennfcn 31ks and 3ks configs
- Loading branch information
Jankowski Antoni
committed
Jul 1, 2024
1 parent
68ebd1b
commit 5e51594
Showing
2 changed files
with
104 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,52 @@ | ||
MODULE = 'penn' | ||
|
||
# Configuration name | ||
CONFIG = 'polypennfcn-31ks-batch' | ||
|
||
# gset only | ||
DATASETS = ['gset'] | ||
|
||
EVALUATION_DATASETS = ['gset'] | ||
|
||
STEPS = 50000 | ||
|
||
LOG_INTERVAL = 500 | ||
|
||
CHECKPOINT_INTERVAL = 5000 # steps | ||
|
||
# audio parameters | ||
SAMPLE_RATE = 11025 | ||
|
||
# the original hopsize is 256 samples, this is 4 times less than that | ||
HOPSIZE = 64 | ||
|
||
WINDOW_SIZE = HOPSIZE | ||
|
||
# use only the voiced frames | ||
VOICED_ONLY = True | ||
|
||
STRING_INDEX = None | ||
|
||
# poly pitch net model | ||
MODEL = 'polypennfcn' | ||
|
||
PITCH_CATS = 6 | ||
|
||
GSET_SPLIT_PLAYERS = True | ||
|
||
NUM_TRAINING_FRAMES = 128 | ||
|
||
BATCH_SIZE = 32 | ||
|
||
NORMALIZATION = 'batch' | ||
|
||
FCN = True | ||
|
||
DECODER = 'argmax' | ||
|
||
# Batch size to use for evaluation | ||
EVALUATION_BATCH_SIZE = None | ||
|
||
KERNEL_SIZE = 31 | ||
|
||
PADDING_SIZE = 15 |
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,52 @@ | ||
MODULE = 'penn' | ||
|
||
# Configuration name | ||
CONFIG = 'polypennfcn-3ks-batch' | ||
|
||
# gset only | ||
DATASETS = ['gset'] | ||
|
||
EVALUATION_DATASETS = ['gset'] | ||
|
||
STEPS = 50000 | ||
|
||
LOG_INTERVAL = 500 | ||
|
||
CHECKPOINT_INTERVAL = 5000 # steps | ||
|
||
# audio parameters | ||
SAMPLE_RATE = 11025 | ||
|
||
# the original hopsize is 256 samples, this is 4 times less than that | ||
HOPSIZE = 64 | ||
|
||
WINDOW_SIZE = HOPSIZE | ||
|
||
# use only the voiced frames | ||
VOICED_ONLY = True | ||
|
||
STRING_INDEX = None | ||
|
||
# poly pitch net model | ||
MODEL = 'polypennfcn' | ||
|
||
PITCH_CATS = 6 | ||
|
||
GSET_SPLIT_PLAYERS = True | ||
|
||
NUM_TRAINING_FRAMES = 128 | ||
|
||
BATCH_SIZE = 32 | ||
|
||
NORMALIZATION = 'batch' | ||
|
||
FCN = True | ||
|
||
DECODER = 'argmax' | ||
|
||
# Batch size to use for evaluation | ||
EVALUATION_BATCH_SIZE = None | ||
|
||
KERNEL_SIZE = 3 | ||
|
||
PADDING_SIZE = 1 |