@@ -1437,7 +1437,7 @@ bool DeterminizeLatticePhonePruned(
14371437 // If --phone-determinize is true, do the determinization on phone + word
14381438 // lattices.
14391439 if (opts.phone_determinize ) {
1440- KALDI_VLOG (1 ) << " Doing first pass of determinization on phone + word "
1440+ KALDI_VLOG (3 ) << " Doing first pass of determinization on phone + word "
14411441 << " lattices." ;
14421442 ans = DeterminizeLatticePhonePrunedFirstPass<Weight, IntType>(
14431443 trans_model, beam, ifst, det_opts) && ans;
@@ -1452,14 +1452,14 @@ bool DeterminizeLatticePhonePruned(
14521452
14531453 // If --word-determinize is true, do the determinization on word lattices.
14541454 if (opts.word_determinize ) {
1455- KALDI_VLOG (1 ) << " Doing second pass of determinization on word lattices." ;
1455+ KALDI_VLOG (3 ) << " Doing second pass of determinization on word lattices." ;
14561456 ans = DeterminizeLatticePruned<Weight, IntType>(
14571457 *ifst, beam, ofst, det_opts) && ans;
14581458 }
14591459
14601460 // If --minimize is true, push and minimize after determinization.
14611461 if (opts.minimize ) {
1462- KALDI_VLOG (1 ) << " Pushing and minimizing on word lattices." ;
1462+ KALDI_VLOG (3 ) << " Pushing and minimizing on word lattices." ;
14631463 ans = PushCompactLatticeStrings<Weight, IntType>(ofst) && ans;
14641464 ans = PushCompactLatticeWeights<Weight, IntType>(ofst) && ans;
14651465 ans = MinimizeCompactLattice<Weight, IntType>(ofst) && ans;
0 commit comments