forked from jtkim-kaist/VAD
-
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
5b67f99
commit b2912cf
Showing
66 changed files
with
1,799 additions
and
366 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
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,13 @@ | ||
lr = 0.0001 | ||
dropout_rate = 0.5 | ||
max_epoch = 100 | ||
batch_size = 128 | ||
w = 19 | ||
u = 9 | ||
glimpse_hidden = 128 | ||
bp_hidden = 128 | ||
glimpse_out = 128 | ||
nGlimpse = 7 | ||
lstm_cell_size = 128 | ||
action_hidden_1 = 256 | ||
action_hidden_2 = 256 |
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,8 @@ | ||
lr=0.0001 | ||
dropout_rate=0.5 | ||
max_epoch=100 | ||
batch_size=128 | ||
w=19 | ||
u=9 | ||
num_hidden_1=512 | ||
num_hidden_2=512 |
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,9 @@ | ||
lr=0.0001 # Learning rate | ||
max_epoch=100 # Max epoch | ||
dropout_rate=0.5 # Dropout rate | ||
target_delay=5 # Target delay of LSTM | ||
num_layers=3 # The number of layers of LSTM | ||
cell_size=256 # LSTM cell size | ||
seq_len=20 # Sequence length | ||
num_batches=200 # The number of batches | ||
# Note that batch_size=seq_len*num_batches |
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,8 @@ | ||
lr = 0.0001 | ||
dropout_rate = 0.5 | ||
max_epoch = 1000 | ||
batch_size = 128 | ||
w = 19 | ||
u = 9 | ||
num_hidden_1 = 512 | ||
num_hidden_2 = 512 |
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
Oops, something went wrong.