Skip to content

Commit

Permalink
Fix timeouts for endpointer
Browse files Browse the repository at this point in the history
  • Loading branch information
nshmyrev committed Apr 22, 2024
1 parent 40937b6 commit 7279711
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/recognizer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -247,8 +247,8 @@ void Recognizer::SetEndpointerDelays(float t_start_max, float t_end, float t_max

rule1 = t_start_max;
rule2 = t_end;
rule3 = t_end * 1.5;
rule4 = t_end * 2;
rule3 = t_end + 0.5;
rule4 = t_end + 1.0;
rule5 = t_max;

KALDI_LOG << "Updating endpointer delays " << rule1 << "," << rule2 << "," << rule3 << "," << rule4 << "," << rule5;
Expand Down

0 comments on commit 7279711

Please sign in to comment.