From a6ca29f7cc04a2d11bf30911f79572ed9f1edfa8 Mon Sep 17 00:00:00 2001 From: Yibing Liu Date: Thu, 29 Mar 2018 07:13:42 -0700 Subject: [PATCH] Add acoustic scale in decoder init --- fluid/DeepASR/infer_by_ckpt.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fluid/DeepASR/infer_by_ckpt.py b/fluid/DeepASR/infer_by_ckpt.py index 67963483..bf6093ac 100644 --- a/fluid/DeepASR/infer_by_ckpt.py +++ b/fluid/DeepASR/infer_by_ckpt.py @@ -149,7 +149,8 @@ def infer_from_ckpt(args): fluid.io.load_persistables(exe, args.checkpoint) # init decoder - decoder = Decoder(args.vocabulary, args.graphs, args.log_prior) + decoder = Decoder(args.vocabulary, args.graphs, args.log_prior, + args.acoustic_scale) ltrans = [ trans_add_delta.TransAddDelta(2, 2), -- GitLab