forked from interactiveaudiolab/ppgs
-
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.
- Loading branch information
1 parent
1345e5d
commit 887457d
Showing
6 changed files
with
131 additions
and
11 deletions.
There are no files selected for viewing
30 changes: 30 additions & 0 deletions
30
config/w2v2fb-buckets1-050000-7layer-2048channel-clipinf.py
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,30 @@ | ||
MODULE = 'ppgs' | ||
|
||
# Configuration name | ||
CONFIG = 'w2v2fb-buckets1-050000-7layer-2048channel-clipinf' | ||
|
||
# Number of buckets to partition training examples to minimize padding | ||
BUCKETS = 1 | ||
|
||
# Method to use for gradient clipping. | ||
# One of ['autoclip', 'inf', 'l1', 'l2', 'skip']. | ||
GRADIENT_CLIPPING_METHOD = 'inf' | ||
|
||
# Gradient clipping threshold. | ||
# For autoclip, this specifies the clipping percentile. | ||
GRADIENT_CLIPPING_THRESHOLD = 10000 | ||
|
||
# Network width | ||
HIDDEN_CHANNELS = 2048 | ||
|
||
# Dimensionality of input representation | ||
INPUT_CHANNELS = 768 | ||
|
||
# Maximum number of frames in a batch | ||
MAX_TRAINING_FRAMES = 50000 | ||
|
||
# Number of hidden layers | ||
NUM_HIDDEN_LAYERS = 7 | ||
|
||
# Input representation | ||
REPRESENTATION = 'w2v2fb' |
30 changes: 30 additions & 0 deletions
30
config/w2v2fb-buckets1-100000-6layer-1024channel-autoclip.py
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,30 @@ | ||
MODULE = 'ppgs' | ||
|
||
# Configuration name | ||
CONFIG = 'w2v2fb-buckets1-100000-6layer-1024channel-autoclip' | ||
|
||
# Number of buckets to partition training examples to minimize padding | ||
BUCKETS = 1 | ||
|
||
# Method to use for gradient clipping. | ||
# One of ['autoclip', 'inf', 'l1', 'l2', 'skip']. | ||
GRADIENT_CLIPPING_METHOD = 'autoclip' | ||
|
||
# Gradient clipping threshold. | ||
# For autoclip, this specifies the clipping percentile. | ||
GRADIENT_CLIPPING_THRESHOLD = .9 | ||
|
||
# Network width | ||
HIDDEN_CHANNELS = 1024 | ||
|
||
# Dimensionality of input representation | ||
INPUT_CHANNELS = 768 | ||
|
||
# Maximum number of frames in a batch | ||
MAX_TRAINING_FRAMES = 100000 | ||
|
||
# Number of hidden layers | ||
NUM_HIDDEN_LAYERS = 6 | ||
|
||
# Input representation | ||
REPRESENTATION = 'w2v2fb' |
30 changes: 30 additions & 0 deletions
30
config/w2v2fb-buckets1-100000-6layer-1024channel-clipskip.py
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,30 @@ | ||
MODULE = 'ppgs' | ||
|
||
# Configuration name | ||
CONFIG = 'w2v2fb-buckets1-100000-6layer-1024channel-clipskip' | ||
|
||
# Number of buckets to partition training examples to minimize padding | ||
BUCKETS = 1 | ||
|
||
# Method to use for gradient clipping. | ||
# One of ['autoclip', 'inf', 'l1', 'l2', 'skip']. | ||
GRADIENT_CLIPPING_METHOD = 'skip' | ||
|
||
# Gradient clipping threshold. | ||
# For autoclip, this specifies the clipping percentile. | ||
GRADIENT_CLIPPING_THRESHOLD = 10000 | ||
|
||
# Network width | ||
HIDDEN_CHANNELS = 1024 | ||
|
||
# Dimensionality of input representation | ||
INPUT_CHANNELS = 768 | ||
|
||
# Maximum number of frames in a batch | ||
MAX_TRAINING_FRAMES = 100000 | ||
|
||
# Number of hidden layers | ||
NUM_HIDDEN_LAYERS = 6 | ||
|
||
# Input representation | ||
REPRESENTATION = 'w2v2fb' |
30 changes: 30 additions & 0 deletions
30
config/w2v2fb-buckets1-150000-5layer-512channel-clipinf.py
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,30 @@ | ||
MODULE = 'ppgs' | ||
|
||
# Configuration name | ||
CONFIG = 'w2v2fb-buckets1-150000-5layer-512channel-clipinf' | ||
|
||
# Number of buckets to partition training examples to minimize padding | ||
BUCKETS = 1 | ||
|
||
# Method to use for gradient clipping. | ||
# One of ['autoclip', 'inf', 'l1', 'l2', 'skip']. | ||
GRADIENT_CLIPPING_METHOD = 'inf' | ||
|
||
# Gradient clipping threshold. | ||
# For autoclip, this specifies the clipping percentile. | ||
GRADIENT_CLIPPING_THRESHOLD = 10000 | ||
|
||
# Network width | ||
HIDDEN_CHANNELS = 512 | ||
|
||
# Dimensionality of input representation | ||
INPUT_CHANNELS = 768 | ||
|
||
# Maximum number of frames in a batch | ||
MAX_TRAINING_FRAMES = 150000 | ||
|
||
# Number of hidden layers | ||
NUM_HIDDEN_LAYERS = 5 | ||
|
||
# Input representation | ||
REPRESENTATION = 'w2v2fb' |
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