码迷,mamicode.com
首页 > 其他好文 > 详细

steps/train_mono.sh

时间:2018-06-07 21:59:06      阅读:819      评论:0      收藏:0      [点我收藏+]

标签:one   cup   font   step   dimen   power   pow   round   Dimension   

<<单音素HMM的训练流程图.vsdx>>

技术分享图片

定义拓扑结构、参数初始化

$ gmm-init-mono --shared-phones=$lang/phones/sets.int "--train-feats=$feats subset-feats --n=10 ark:- ark:-|" $lang/topo $feat_dim $dir/0.mdl $dir/tree

$ wc -w data/lang_test/phones/sets.int

385 data/lang_test/phones/sets.int

$ gmm-info exp/mono0c/0.mdl

number of phones 385

number of pdfs 290

number of transition-ids 2370

number of transition-states 1165

feature dimension 39

number of gaussians 290

   

对高斯参数进行扰动和幅值

totgauss=1000

# 290

numgauss=`gmm-info --print-args=false $dir/0.mdl | grep gaussians | awk ‘{print $NF}‘`

# 23,每次迭代增加23个高斯

incgauss=$[($totgauss-$numgauss)/$max_iter_inc]

# 最后一次迭代为290+23*30=980

numgauss=$[$numgauss+$incgauss]

$ gmm-est --min-gaussian-occupancy=3 --mix-up=$numgauss --power=$power $dir/0.mdl "gmm-sum-accs - $dir/0.*.acc|" $dir/1.mdl 2> $dir/log/update.0.log

   

$ gmm-info exp/mono0a/final.mdl

number of phones 385

number of pdfs 290

number of transition-ids 2370

number of transition-states 1165

feature dimension 39

number of gaussians 982

steps/train_mono.sh

标签:one   cup   font   step   dimen   power   pow   round   Dimension   

原文地址:https://www.cnblogs.com/JarvanWang/p/9152676.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!