給定索引處的一組張量切片的稀疏表示。
用法
tf.IndexedSlices(
values, indices, dense_shape=None
)
屬性
-
dense_shape
一維Tensor
包含相應密集張量的形狀。 -
device
將在其上生成values
的設備的名稱,或None
。 -
dtype
該張量中元素的DType
。 -
graph
Graph
包含值、索引和形狀張量。 -
indices
包含切片索引的一維Tensor
。 -
name
此IndexedSlices
的名稱。 -
op
生成values
作為輸出的Operation
。 -
shape
獲取表示密集張量形狀的tf.TensorShape
。 -
values
包含切片值的Tensor
。
此類是一對 Tensor
對象的簡單包裝器:
values
:具有形狀[D0, D1, ..., Dn]
的任何 dtype 的Tensor
。indices
:一維整數Tensor
形狀為[D0]
。
IndexedSlices
通常用於表示形狀為 [LARGE0, D1, .. , DN]
的較大張量 dense
的子集,其中 LARGE0 >> D0
。 indices
中的值是從較大張量中提取的切片的第一維中的索引。
由 IndexedSlices
slices
表示的稠密張量 dense
具有
dense[slices.indices[i],:,:,:, ...] = slices.values[i,:,:,:, ...]
IndexedSlices
類主要用於定義具有稀疏梯度的操作的梯度(例如 tf.gather
)。
v = tf.Variable([[0.,1, 2], [2, 3, 4], [4, 5, 6], [6, 7, 8]])
with tf.GradientTape() as tape:
r = tf.gather(v, [1,3])
index_slices = tape.gradient(r,v)
index_slices
<...IndexedSlices object ...>
index_slices.indices.numpy()
array([1, 3], dtype=int32)
index_slices.values.numpy()
array([[1., 1., 1.],
[1., 1., 1.]], dtype=float32)
將此表示與使用多維索引和標量值的 tf.sparse.SparseTensor
進行對比。
相關用法
- Python tf.compat.v1.distributions.Multinomial.stddev用法及代碼示例
- Python tf.compat.v1.distribute.MirroredStrategy.experimental_distribute_dataset用法及代碼示例
- Python tf.compat.v1.data.TFRecordDataset.interleave用法及代碼示例
- Python tf.summary.scalar用法及代碼示例
- Python tf.linalg.LinearOperatorFullMatrix.matvec用法及代碼示例
- Python tf.linalg.LinearOperatorToeplitz.solve用法及代碼示例
- Python tf.raw_ops.TPUReplicatedInput用法及代碼示例
- Python tf.raw_ops.Bitcast用法及代碼示例
- Python tf.compat.v1.distributions.Bernoulli.cross_entropy用法及代碼示例
- Python tf.compat.v1.Variable.eval用法及代碼示例
- Python tf.compat.v1.train.FtrlOptimizer.compute_gradients用法及代碼示例
- Python tf.distribute.OneDeviceStrategy.experimental_distribute_values_from_function用法及代碼示例
- Python tf.math.special.fresnel_cos用法及代碼示例
- Python tf.keras.applications.inception_resnet_v2.preprocess_input用法及代碼示例
- Python tf.compat.v1.layers.conv3d用法及代碼示例
- Python tf.Variable.__lt__用法及代碼示例
- Python tf.keras.metrics.Mean.merge_state用法及代碼示例
- Python tf.keras.layers.InputLayer用法及代碼示例
- Python tf.compat.v1.strings.length用法及代碼示例
- Python tf.Variable.__pow__用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.IndexedSlices。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。