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
Minimum tensor rank should be (dim + 1) instead of (dim).
Example:
tf.argmin(x, 1) # x is a 1-d vector.
before:
"InvalidArgumentError: Minimum tensor rank: 1 but got: 1"
after:
"InvalidArgumentError: Minimum tensor rank: 2 but got: 1"
0 commit comments