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.
No ground truth plotting and no real metrics yet. Just loss. related to: #6
- Loading branch information
Showing
6 changed files
with
131 additions
and
34 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,33 @@ | ||
Try dropout and different regularization techniques. | ||
|
||
== Divide the dataset (important) | ||
|
||
* division for train and validation sets based on the guitar players | ||
|
||
== Regularization techniques | ||
|
||
* do the parameters to below techniques manually (important) | ||
* weight regularization, weight penalty, comes out of the box with Adam optimizer | ||
* L1, L2 regularization | ||
* ADd noise to inputs, gaussian noise of the same shape | ||
|
||
== Hyperparameters tuning and the three sets (train, test, valid) | ||
|
||
|
||
25.01.2024 | ||
|
||
== 1st experiment | ||
|
||
multi hot piano, one array of 1440 instead of 6. | ||
|
||
* use sigmoid istead of softmax | ||
* use binary cross entropy instead of categorical cross entropy | ||
|
||
set a threshold for the pitch recognition. | ||
|
||
== 2nd experiment | ||
|
||
take inspiration from here: https://arxiv.org/abs/1802.08435 | ||
|
||
* use 60 discrete values of MIDI per each string | ||
* use a vector 1-60 for estimating the deviation |
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,36 @@ | ||
MODULE = 'penn' | ||
|
||
# Configuration name | ||
CONFIG = 'fcnf0++-gset-voiced' | ||
|
||
# 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 | ||
|
||
# use only the voiced frames | ||
VOICED_ONLY = True | ||
|
||
LOSS = 'binary_cross_entropy' | ||
|
||
LOSS_MULTI_HOT = True | ||
|
||
GAUSSIAN_BLUR = False | ||
|
||
GSET_SPLIT_PLAYERS = True | ||
|
||
EVALUATE = False | ||
|
||
PITCH_CATS = 6 |
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