diff options
Diffstat (limited to 'src/CuTNetLib/cuComponent.h')
-rw-r--r-- | src/CuTNetLib/cuComponent.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CuTNetLib/cuComponent.h b/src/CuTNetLib/cuComponent.h index 8d0d810..71e51aa 100644 --- a/src/CuTNetLib/cuComponent.h +++ b/src/CuTNetLib/cuComponent.h @@ -156,7 +156,7 @@ namespace TNet { //do the dimensionality test if(GetNInputs() != GetInput().Cols()) { KALDI_ERR << "Non-matching INPUT dim!!! Network dim: " << GetNInputs() - << " Data dim: " << GetInput().Cols(); + << " Data dim: " << GetInput().Cols() << GetName(); } //run transform PropagateF(GetInput(),mOutput); |