1. 程式人生 > >tf.strided_slice 例項

tf.strided_slice 例項

tf.stride_slice(data, begin, end)
tf.slice(data, begin, end)
和tf.slice的區別是slice的end索引是閉區間,stride_slice的end索引是開區間,所以一個截掉最後一列(remove the last element or column of each line)的小技巧是用stride_slice(data, [0, 0], [rows, -1]),但是如果是用slice(data, [0, 0], [rows, -1])則仍是原矩陣。