We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5286f9f commit b7b7b5dCopy full SHA for b7b7b5d
src/libtorchaudio/forced_align/cpu/compute.cpp
@@ -42,9 +42,9 @@ void forced_align_impl(
42
}
43
TORCH_CHECK(
44
T >= L + R,
45
- "targets length is too long for CTC. Found targets length: ",
+ "targets length is too long for CTC. Found log_probs length: ",
46
T,
47
- ", log_probs length: ",
+ ", targets length: ",
48
L,
49
", and number of repeats: ",
50
R);
src/libtorchaudio/forced_align/gpu/compute.cu
@@ -160,9 +160,9 @@ void forced_align_impl(
160
161
162
163
164
165
166
167
168
0 commit comments