You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
do you know why we setting variable length only for tensors with size more than 2? @zeahmed do we have tests with variable length? If yes, I believe it's probably for images, can we have test for two dimensional model?
Uh oh!
There was an error while loading. Please reload this page.
System information
Issue
Source code / logs
TensorFlowTransform.cs, Lines 810 - 875
Line 853:
var d = originalShape.NumDimensions > 2 ? Math.Pow(typeValueCount / valCount, 1.0 / (originalShape.NumDimensions - 2)) : 1;
The case with 2 dimensions, where the originalShape is [1, ?] is not matched properly.
The text was updated successfully, but these errors were encountered: