我正在创建一个卷积稀疏自动编码器,我需要将一个满值的4D矩阵(其形状为[samples, N, N, D]
)转换为稀疏矩阵。
对于每个样本,我都有D NxN特征映射。我想将每个NxN特征映射转换为稀疏矩阵,最大值映射为1,其他所有映射为0。
我不希望在运行时执行此操作,但在Graph声明期间(因为我需要使用生成的稀疏矩阵作为其他图形操作的输入),但我不明白如何获取索引来构建稀疏矩阵。
答案 0 :(得分:14)
您可以使用tf.where
和tf.gather_nd
来执行此操作:
import numpy as np
import tensorflow as tf
# Make a tensor from a constant
a = np.reshape(np.arange(24), (3, 4, 2))
a_t = tf.constant(a)
# Find indices where the tensor is not zero
idx = tf.where(tf.not_equal(a_t, 0))
# Make the sparse tensor
# Use tf.shape(a_t, out_type=tf.int64) instead of a_t.get_shape()
# if tensor shape is dynamic
sparse = tf.SparseTensor(idx, tf.gather_nd(a_t, idx), a_t.get_shape())
# Make a dense tensor back from the sparse one, only to check result is correct
dense = tf.sparse_tensor_to_dense(sparse)
# Check result
with tf.Session() as sess:
b = sess.run(dense)
np.all(a == b)
>>> True
答案 1 :(得分:2)
将密集numpy数组转换为tf.SparseTensor的简单代码:
def denseNDArrayToSparseTensor(arr):
idx = np.where(arr != 0.0)
return tf.SparseTensor(np.vstack(idx).T, arr[idx], arr.shape)
答案 2 :(得分:1)
Tensorflow 从 1.15 开始就有 tf.sparse.from_dense
。示例:
In [1]: import tensorflow as tf
In [2]: x = tf.eye(3) * 5
In [3]: x
Out[3]:
<tf.Tensor: shape=(3, 3), dtype=float32, numpy=
array([[5., 0., 0.],
[0., 5., 0.],
[0., 0., 5.]], dtype=float32)>
应用tf.sparse.from_dense
:
In [4]: y = tf.sparse.from_dense(x)
In [5]: y.values
Out[5]: <tf.Tensor: shape=(3,), dtype=float32, numpy=array([5., 5., 5.], dtype=float32)>
In [6]: y.indices
Out[6]:
<tf.Tensor: shape=(3, 2), dtype=int64, numpy=
array([[0, 0],
[1, 1],
[2, 2]])>
通过应用 tf.sparse.to_dense
验证身份:
In [7]: tf.sparse.to_dense(y) == x
Out[7]:
<tf.Tensor: shape=(3, 3), dtype=bool, numpy=
array([[ True, True, True],
[ True, True, True],
[ True, True, True]])>
答案 3 :(得分:0)
答案 4 :(得分:0)
在TF 2.3中,Tensorflow Probability为此具有function:
import tensorflow_probability as tfp
tfp.math.dense_to_sparse(x, ignore_value=None, name=None)