Skip to content

Commit 7279711

Browse files
committed
Fix timeouts for endpointer
1 parent 40937b6 commit 7279711

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/recognizer.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,8 +247,8 @@ void Recognizer::SetEndpointerDelays(float t_start_max, float t_end, float t_max
247247

248248
rule1 = t_start_max;
249249
rule2 = t_end;
250-
rule3 = t_end * 1.5;
251-
rule4 = t_end * 2;
250+
rule3 = t_end + 0.5;
251+
rule4 = t_end + 1.0;
252252
rule5 = t_max;
253253

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

0 commit comments

Comments
 (0)