几个point [:,i]类似python直接的index 列操作是可行的, 注意i不能是variable,如果是使用slice slice操作会保持和输入tensor一样的shape 返回 而1对应的列操作会降维 Slice 使用-1 表示该维度元素全选类似: import tensorflow as tf sess = tf.InteractiveSession() In [12]: t = tf.constant([[1, 2, 3], [4, 5, 6]], dtype=tf.float…