I am porting code from tensorflow to numpy and i have trouble with this line of code:
tensor_unstack = tf.unstack(some_tensor, axis=0)
The tf.unstack method is used and i was unable to find a equivalent in numpy. So my question is how would a tf.unstack be implemented when using numpy?