gpt4 book ai didi

python - 在 Tensorflow 中查找子矩阵的秩

转载 作者:行者123 更新时间:2023-11-30 08:44:48 27 4
gpt4 key购买 nike

我有一个形状为 [4, 4, 2, 2] 的矩阵 g,我需要在其中找到 g[0, 0] 的秩g[1, 1]g[2, 2]g[3, 3] 都是 2x2 矩阵。我使用了 tf.rank 运算符,但它将 g 视为单个数组并计算排名并返回整个矩阵的单个值。我需要的是相应的 g[i, j] 的行列的 2x2 矩阵。以下是 MWE:

import tensorflow as tf
import numpy as np

a = np.array([
[[[ 0., 0.], [ 0., 0.]], [[-1., -1.], [-1., -1.]], [[-2., -2.], [-2., -2.]], [[-3., -3.], [-3., -3.]]],
[[[ 1., 1.], [ 1., 1.]], [[ 0., 0.], [ 0., 0.]], [[-1., -1.], [-1., -1.]], [[-2., -2.], [-2., -2.]]],
[[[ 2., 2.], [ 2., 2.]], [[ 1., 1.], [ 1., 1.]], [[ 0., 0.], [ 0., 0.]], [[-1., -1.], [-1., -1.]]],
[[[ 3., 3.], [ 3., 3.]], [[ 2., 2.], [ 2., 2.]], [[ 1., 1.], [ 1., 1.]], [[ 0., 0.], [ 0., 0.]]]
])
rank = tf.rank(a) # Returns a number

除了使用for循环之外,还有什么方法可以得到这个排名矩阵?谢谢。

最佳答案

我认为 TensorFlow 中没有任何计算矩阵秩的函数。一种可能性是使用 tf.linalg.svd并计算非零奇异值的数量:

import tensorflow as tf

EPS = 1e-6
a = tf.ones((4, 4, 2, 2), tf.float32)
s = tf.linalg.svd(a, full_matrices=False, compute_uv=False)
r = tf.math.count_nonzero(tf.abs(s) > EPS, axis=-1)
print(r.numpy())
# [[1 1 1 1]
# [1 1 1 1]
# [1 1 1 1]
# [1 1 1 1]]

关于python - 在 Tensorflow 中查找子矩阵的秩,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60150887/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com