require 'htk_io'
gconf = {lrate = 0.2, wcost = 1e-6, momentum = 0.9,
cumat_type = nerv.CuMatrixFloat,
mmat_type = nerv.MMatrixFloat,
frm_ext = 5,
frm_trim = 5,
batch_size = 256,
buffer_size = 81920,
rearrange = true,
tr_scp = "/sgfs/users/wd007/asr/baseline_chn_50h/finetune/finetune_baseline/train.scp",
cv_scp = "/sgfs/users/wd007/asr/baseline_chn_50h/finetune/finetune_baseline/train_cv.scp",
htk_conf = "/sgfs/users/wd007/asr/baseline_chn_50h/finetune/finetune_baseline/fbank_d_a_z.conf",
initialized_param = {"/sgfs/users/wd007/src/nerv/tools/nerv.global.transf",
"/sgfs/users/wd007/src/nerv/tools/nerv.svd0.55_3000h_iter1.init"},
debug = false}
function make_layer_repo(param_repo)
local layer_repo = nerv.LayerRepo(
{
-- global transf
["nerv.BiasLayer"] =
{
blayer1 = {{bias = "bias1"}, {dim_in = {1320}, dim_out = {1320}}},
},
["nerv.WindowLayer"] =
{
wlayer1 = {{window = "window1"}, {dim_in = {1320}, dim_out = {1320}}},
},
-- biased linearity
["nerv.AffineLayer"] =
{
affine0 = {{ltp = "affine0_ltp", bp = "affine0_bp"},
{dim_in = {1320}, dim_out = {2048}}},
affine1 = {{ltp = "affine1_ltp", bp = "affine1_bp"},
{dim_in = {2048}, dim_out = {367}}},
affine2 = {{ltp = "affine2_ltp", bp = "affine2_bp"},
{dim_in = {367}, dim_out = {2048}}},
affine3 = {{ltp = "affine3_ltp", bp = "affine3_bp"},
{dim_in = {2048}, dim_out = {408}}},
affine4 = {{ltp = "affine4_ltp", bp = "affine4_bp"},
{dim_in = {408}, dim_out = {2048}}},
affine5 = {{ltp = "affine5_ltp", bp = "affine5_bp"},
{dim_in = {2048}, dim_out = {368}}},
affine6 = {{ltp = "affine6_ltp", bp = "affine6_bp"},
{dim_in = {368}, dim_out = {2048}}},
affine7 = {{ltp = "affine7_ltp", bp = "affine7_bp"},
{dim_in = {2048}, dim_out = {303}}},
affine8 = {{ltp = "affine8_ltp", bp = "affine8_bp"},
{dim_in = {303}, dim_out = {2048}}},
affine9 = {{ltp = "affine9_ltp", bp = "affine9_bp"},
{dim_in = {2048}, dim_out = {277}}},
affine10 = {{ltp = "affine10_ltp", bp = "affine10_bp"},
{dim_in = {277}, dim_out = {2048}}},
affine11 = {{ltp = "affine11_ltp", bp = "affine11_bp"},
{dim_in = {2048}, dim_out = {361}}},
affine12 = {{ltp = "affine12_ltp", bp = "affine12_bp"},
{dim_in = {361}, dim_out = {2048}}},
affine13 = {{ltp = "affine13_ltp", bp = "affine13_bp"},
{dim_in = {2048}, dim_out = {441}}},
affine14 = {{ltp = "affine14_ltp", bp = "affine14_bp"},
{dim_in = {441}, dim_out = {10092}}},
},
["nerv.SigmoidLayer"] =
{
sigmoid0 = {{}, {dim_in = {2048}, dim_out = {2048}}},
sigmoid1 = {{}, {dim_in = {2048}, dim_out = {2048}}},
sigmoid2 = {{}, {dim_in = {2048}, dim_out = {2048}}},
sigmoid3 = {{}, {dim_in = {2048}, dim_out = {2048}}},
sigmoid4 = {{}, {dim_in = {2048}, dim_out = {2048}}},
sigmoid5 = {{}, {dim_in = {2048}, dim_out = {2048}}},
sigmoid6 = {{}, {dim_in = {2048}, dim_out = {2048}}},
},
["nerv.SoftmaxCELayer"] = -- softmax + ce criterion layer for finetune output
{
ce_crit = {{}, {dim_in = {10092, 1}, dim_out = {1}, compressed = true}}
},
["nerv.SoftmaxLayer"] = -- softmax for decode output
{
softmax = {{}, {dim_in = {10092}, dim_out = {10092}}}
}
}, param_repo, gconf)
layer_repo:add_layers(
{
["nerv.DAGLayer"] =
{
global_transf = {{}, {
dim_in = {1320}, dim_out = {1320},
sub_layers = layer_repo,
connections =
{
["[1]"] = "blayer1[1]",
["blayer1[1]"] = "wlayer1[1]",
["wlayer1[1]"] = "