Skip to content

Commit

Permalink
Merge pull request #19 from Mazyod/patch-1
Browse files Browse the repository at this point in the history
Pick Decoding Model Based on Context Dependence
  • Loading branch information
nshmyrev authored Jul 21, 2019
2 parents eb8bfba + 4a3d4b4 commit 0c21a6e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion etc/sphinx_train.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,11 @@ $DEC_CFG_EXPTNAME = "$CFG_EXPTNAME";
$DEC_CFG_JOBNAME = "$CFG_EXPTNAME"."_job";

# Models to use.
$DEC_CFG_MODEL_NAME = "$CFG_EXPTNAME.cd_${CFG_DIRLABEL}_${CFG_N_TIED_STATES}";
if ($CFG_CD_TRAIN eq 'yes') {
$DEC_CFG_MODEL_NAME = "$CFG_EXPTNAME.cd_${CFG_DIRLABEL}_${CFG_N_TIED_STATES}";
} else {
$DEC_CFG_MODEL_NAME = "$CFG_EXPTNAME.ci_${CFG_DIRLABEL}";
}

$DEC_CFG_FEATFILES_DIR = "$CFG_BASE_DIR/feat";
$DEC_CFG_FEATFILE_EXTENSION = '.mfc';
Expand Down

0 comments on commit 0c21a6e

Please sign in to comment.