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
Right now it seems that the .any and .all methods of ByteTensor don't accept a dimension and only operate on the whole array. It would be useful to be able to do these operations over a specific dimension only like tf.reduce_all does since now it forces me to do x.float().sum(dim=1) == x.shape[1]