make_nnet_config_block.pl
6.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
#!/usr/bin/env perl
use warnings; #sed replacement for -w perl parameter
# Copyright 2012 Johns Hopkins University (Author: Daniel Povey)
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
# WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
# MERCHANTABLITY OR NON-INFRINGEMENT.
# See the Apache 2 License for the specific language governing permissions and
# limitations under the License.
# These options can be useful if we want to splice the input
# features across time.
$input_left_context = 0;
$input_right_context = 0;
$param_stddev_factor = 1.0; # can be used to adjust initial variance
# of parameters.
$initial_num_hidden_layers = -1; # if >= 0, the number of hidden layers
# the model should start with, which may be less than the final number
# (the final number is used to calculate the #neurons).
$single_layer_config = "";
for ($x = 1; $x < 10; $x++) {
if ($ARGV[0] eq "--input-left-context") {
$input_left_context = $ARGV[1];
shift; shift;
}
if ($ARGV[0] eq "--input-right-context") {
$input_right_context = $ARGV[1];
shift; shift;
}
if ($ARGV[0] eq "--param-stddev-factor") {
$param_stddev_factor = $ARGV[1];
shift; shift;
}
if ($ARGV[0] eq "--initial-num-hidden-layers") {
$initial_num_hidden_layers = $ARGV[1];
$single_layer_config = $ARGV[2];
shift; shift; shift;
}
}
if (@ARGV != 5) {
print STDERR "Usage: make_nnet_config_block.pl [options] <feat-dim> <num-leaves> <num-hidden-layers> <num-blocks> <num-parameters> >config-file
Options:
--input-left-context <n> # #frames of left context for input features; default 0.
--input-right-context <n> # #frames of right context for input features; default 0.
--param-stdddev-factor <f> # Factor which can be used to modify the standard deviation of
# randomly nitialized features (default, 1. Gets multiplied by
# 1/sqrt of number of inputs).
--initial-num-hidden-layers <n> <config-file> # If >0, number of hidden layers to initialize the network with.
# In this case, the positional parameter <num-hidden-layers> is only
# used to work out the number of units per hidden layer (based on
# parameter count), and we write to <config-file> the config corresponding
# to a single hidden layer.\n";
exit(1);
}
($feat_dim, $num_leaves, $num_hidden_layers, $num_blocks, $num_params) = @ARGV;
($input_left_context < 0) && die "Invalid input left context $input_left_context";
($input_right_context < 0) && die "Invalid input right context $input_right_context";
($feat_dim <= 0) && die "Invalid feature dimension $feat_dim";
($num_leaves <= 0) && die "Invalid number of leaves $num_leaves";
($num_blocks <= 0) && die "Invalid number of blocks $num_blocks";
($num_blocks > 20) && die "Implausibly high number of blocks $num_blocks";
($num_hidden_layers <= 0) && die "Invalid number of hidden layers $num_hidden_layers";
if ($initial_num_hidden_layers < 0) {
$initial_num_hidden_layers = $num_hidden_layers;
}
if ($initial_num_hidden_layers > $num_hidden_layers) {
print STDERR "Initial number of hidden layers is more than #hidden layers.\n" .
"This does not really make sense but continuing anyway.";
}
$context_size = 1 + $input_left_context + $input_right_context;
($num_params < ($num_leaves + ($feat_dim * $context_size) + $num_hidden_layers + 1))
&& die "Invalid number of params $num_params";
## num_params = hidden_layer_size^2/num_blocks * (num_hidden_layers-1)
## + hidden_layer_size * (num_leaves + feat_dim * context_size)
## solve for hidden_layer_size = x.
## a x^2 + b + c, with
## a = (num_hidden_layers - 1) / num_blocks
## b = num_leaves + feat_dim * context_size
## c = -num_params
$a = ($num_hidden_layers - 1) / ($num_blocks * 1.0); # * 1.0 to make sure it's float.
$b = $num_leaves + $feat_dim * $context_size;
$c = -$num_params;
if ($a > 0) {
$hidden_layer_size = int((-$b + sqrt($b*$b - 4*$a*$c)) / (2*$a));
} else {
$hidden_layer_size = int(-$c/$b);
}
## make sure num_blocks divides hidden_layer_size.
$hidden_layer_size -= $hidden_layer_size % $num_blocks;
$actual_num_params = ($hidden_layer_size * $hidden_layer_size)/$num_blocks * ($num_hidden_layers - 1)
+ $hidden_layer_size * ($num_leaves + $feat_dim * $context_size);
if (abs($actual_num_params - $num_params) > 0.1 * $num_params) {
print STDERR "Warning: $0: possible failure $actual_num_params != $num_params";
}
if ($input_left_context + $input_right_context != 0) {
# First component has to be splicing component...
# Note: we might be interested in decorrelating this e.g. with
# DCT layer at some point, but for now, splicing isn't seeming to be
# that useful.
print "SpliceComponent input-dim=$feat_dim left-context=$input_left_context right-context=$input_right_context\n";
}
$cur_input_dim = $feat_dim * (1 + $input_left_context + $input_right_context);
for ($hidden_layer = 0; $hidden_layer < $initial_num_hidden_layers; $hidden_layer++) {
if ($hidden_layer == 0) {
$param_stddev = $param_stddev_factor * 1.0 / sqrt($cur_input_dim);
print "AffineComponent input-dim=$cur_input_dim output-dim=$hidden_layer_size " .
"param-stddev=$param_stddev\n";
print "TanhComponent dim=$hidden_layer_size\n";
} else {
$param_stddev = $param_stddev_factor * 1.0 / sqrt($cur_input_dim / $num_blocks);
print "PermuteComponent dim=$cur_input_dim\n";
print "BlockAffineComponent num-blocks=$num_blocks input-dim=$cur_input_dim output-dim=$hidden_layer_size " .
"param-stddev=$param_stddev\n";
print "TanhComponent dim=$hidden_layer_size\n";
}
$cur_input_dim = $hidden_layer_size;
}
if ($single_layer_config ne "") {
# Create a config file we'll use to add new hidden layers.
open(F, ">$single_layer_config") || die "Error opening $single_layer_config for output";
$param_stddev = $param_stddev_factor * 1.0 / sqrt($hidden_layer_size);
print F "PermuteComponent dim=$hidden_layer_size\n";
print F "BlockAffineComponent num-blocks=$num_blocks input-dim=$hidden_layer_size output-dim=$hidden_layer_size " .
"param-stddev=$param_stddev\n";
print F "TanhComponent dim=$hidden_layer_size\n";
close (F) || die "Closing config file";
}
## Now the output layer.
print "AffineComponent input-dim=$cur_input_dim output-dim=$num_leaves " .
"param-stddev=0\n"; # we just set the parameters to zero for this layer.
## the softmax nonlinearity.
print "SoftmaxComponent dim=$num_leaves\n";
##