转置SparseTensor
用法
tf.sparse.transpose(
sp_input, perm=None, name=None
)
参数
-
sp_input
输入SparseTensor
。 -
perm
sp_input
的尺寸排列。 -
name
返回张量的名称前缀(可选)
返回
-
转置的
SparseTensor
。
抛出
-
TypeError
如果sp_input
不是SparseTensor
。
返回的张量维度 i 将对应于输入维度 perm[i]
。如果没有给出perm
,则设置为(n-1...0),其中n是输入张量的秩。因此,默认情况下,此操作对二维输入张量执行常规矩阵转置。
例如,如果 sp_input
具有形状 [4, 5]
和 indices
/values
:
[0, 3]:b
[0, 1]:a
[3, 1]:d
[2, 0]:c
那么输出将是形状为 [5, 4]
和 indices
/values
的 SparseTensor
:
[0, 2]:c
[1, 0]:a
[1, 3]:d
[3, 0]:b
相关用法
- Python tf.sparse.to_dense用法及代码示例
- Python tf.sparse.to_indicator用法及代码示例
- Python tf.sparse.cross用法及代码示例
- Python tf.sparse.mask用法及代码示例
- Python tf.sparse.split用法及代码示例
- Python tf.sparse.expand_dims用法及代码示例
- Python tf.sparse.maximum用法及代码示例
- Python tf.sparse.bincount用法及代码示例
- Python tf.sparse.concat用法及代码示例
- Python tf.sparse.reduce_sum用法及代码示例
- Python tf.sparse.softmax用法及代码示例
- Python tf.sparse.from_dense用法及代码示例
- Python tf.sparse.retain用法及代码示例
- Python tf.sparse.minimum用法及代码示例
- Python tf.sparse.segment_sum用法及代码示例
- Python tf.sparse.reduce_max用法及代码示例
- Python tf.sparse.fill_empty_rows用法及代码示例
- Python tf.sparse.slice用法及代码示例
- Python tf.sparse.cross_hashed用法及代码示例
- Python tf.sparse.reorder用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.sparse.transpose。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。