File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/libtorchaudio/forced_align Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -42,9 +42,9 @@ void forced_align_impl(
42
42
}
43
43
TORCH_CHECK (
44
44
T >= L + R,
45
- " targets length is too long for CTC. Found targets length: " ,
45
+ " targets length is too long for CTC. Found log_probs length: " ,
46
46
T,
47
- " , log_probs length: " ,
47
+ " , targets length: " ,
48
48
L,
49
49
" , and number of repeats: " ,
50
50
R);
Original file line number Diff line number Diff line change @@ -160,9 +160,9 @@ void forced_align_impl(
160
160
}
161
161
TORCH_CHECK (
162
162
T >= L + R,
163
- " targets length is too long for CTC. Found targets length: " ,
163
+ " targets length is too long for CTC. Found log_probs length: " ,
164
164
T,
165
- " , log_probs length: " ,
165
+ " , targets length: " ,
166
166
L,
167
167
" , and number of repeats: " ,
168
168
R);
You can’t perform that action at this time.
0 commit comments