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

This reverts commit 2fc4856b8a.
This commit is contained in:
Edward Shogulin 2021-11-18 10:16:24 +03:00 committed by GitHub
parent 60d2643b3e
commit 754925b17b
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 < 3) && (rankVal > 5)) {
if ((rankVal != 4) && (rankVal != 5)) {
return false;
}
}