[LPT] GroupConvolution: 3D tensor support (#8401)

This commit is contained in:
Edward Shogulin 2021-11-17 19:44:19 +03:00 committed by GitHub
parent 58b0793386
commit 2fc4856b8a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -96,7 +96,7 @@ bool WeightableLayerTransformation::canBeTransformed(const TransformationContext
}
const auto rankVal = rank.get_length();
if ((rankVal != 4) && (rankVal != 5)) {
if ((rankVal < 3) && (rankVal > 5)) {
return false;
}
}