切片操作 分片赋值

简介

什么是切片赋值?

python

python为什么要设计分片赋值

Java C呢?

tensorflow

tensorflow中的tensor是一个整体,切片不能赋值。

示例

1
2
3
4
5
6
import tensorflow as tf
sess = tf.Session()

a = [1,3,2,4,0,5]
mask = tf.less(b,2)
index = tf.squeeze()

如何实现切片赋值?