LinearOperator
的作用类似于嵌套块循环矩阵。
继承自:LinearOperator
,Module
用法
tf.linalg.LinearOperatorCirculant3D(
spectrum, input_output_dtype=tf.dtypes.complex64, is_non_singular=None,
is_self_adjoint=None, is_positive_definite=None, is_square=True,
name='LinearOperatorCirculant3D'
)
参数
-
spectrum
形状[B1,...,Bb, N]
Tensor
。允许的数据类型:float16
,float32
,float64
,complex64
,complex128
。类型可以不同于input_output_dtype
-
input_output_dtype
dtype
用于输入/输出。 -
is_non_singular
期望这个运算符是非奇异的。 -
is_self_adjoint
期望这个算子等于它的厄米转置。如果spectrum
是真实的,这将永远是真实的。 -
is_positive_definite
期望这个算子是正定的,这意味着所有特征值的实部都是正的。我们不要求算子自伴是正定的。看:https://en.wikipedia.org/wiki/Positive-definite_matrix#Extension_for_non_symmetric_matrices -
is_square
期望此运算符的行为类似于方形 [batch] 矩阵。 -
name
附加到此类创建的所有操作的名称。
属性
-
H
返回当前的伴随LinearOperator
.给定
A
表示此LinearOperator
,返回A*
。请注意,调用self.adjoint()
和self.H
是等效的。 -
batch_shape
TensorShape
这批尺寸的LinearOperator
.如果此运算符的作用类似于带有
A.shape = [B1,...,Bb, M, N]
的批处理矩阵A
,则返回TensorShape([B1,...,Bb])
,相当于A.shape[:-2]
-
block_depth
递归定义的循环块的深度定义了这个Operator
.使用
A
这个Operator
的密集表示,block_depth = 1
表示A
是对称循环。例如,A = |w z y x| |x w z y| |y x w z| |z y x w|
block_depth = 2
表示A
是具有对称循环块的块对称循环。例如,使用W
,X
,Y
,Z
对称循环,A = |W Z Y X| |X W Z Y| |Y X W Z| |Z Y X W|
block_depth = 3
表示A
是块对称循环,块对称循环块。 -
block_shape
-
domain_dimension
此运算符的域的维度(在向量空间的意义上)。如果此运算符的作用类似于带有
A.shape = [B1,...,Bb, M, N]
的批处理矩阵A
,则返回N
。 -
dtype
Tensor
的DType
由此LinearOperator
处理。 -
graph_parents
这个的图依赖列表LinearOperator
. (已弃用)警告:此函数已弃用。它将在未来的版本中删除。更新说明:请勿调用
graph_parents
。 -
is_non_singular
-
is_positive_definite
-
is_self_adjoint
-
is_square
返回True/False
取决于此运算符是否为正方形。 -
parameters
用于实例化此LinearOperator
的参数字典。 -
range_dimension
此运算符范围的维度(在向量空间的意义上)。如果此运算符的作用类似于带有
A.shape = [B1,...,Bb, M, N]
的批处理矩阵A
,则返回M
。 -
shape
TensorShape
这个的LinearOperator
.如果此运算符的作用类似于带有
A.shape = [B1,...,Bb, M, N]
的批处理矩阵A
,则返回TensorShape([B1,...,Bb, M, N])
,等效于A.shape
。 -
spectrum
-
tensor_rank
与此运算符对应的矩阵的秩(在张量的意义上)。如果此运算符的作用类似于带有
A.shape = [B1,...,Bb, M, N]
的批处理矩阵A
,则返回b + 2
。
该运算符的作用类似于块循环矩阵 A
,对于某些 b >= 0
,其形状为 [B1,...,Bb, N, N]
。第一个 b
索引索引批处理成员。对于每个批次索引 (i1,...,ib)
, A[i1,...,ib,::]
是一个 N x N
矩阵。此矩阵A
未具体化,但为了广播此形状将是相关的。
块循环矩阵的说明
如果 A
是嵌套块循环,块大小为 N0, N1, N2
( N0 * N1 * N2 = N
):A
具有块结构,由 N0 x N0
块组成,每个块都有一个 N1 x N1
块循环矩阵。
例如,使用W
, X
, Y
, Z
每个块循环,
A = |W Z Y X|
|X W Z Y|
|Y X W Z|
|Z Y X W|
请注意,A
本身通常不会循环使用。
频谱方面的说明
在 [batch] 频谱 H
和傅里叶变换方面有一个等效的说明。这里我们考虑A.shape = [N, N]
并忽略批量维度。
If H.shape = [N0, N1, N2]
, ( N0 * N1 * N2 = N
): 粗略地说,矩阵乘法等于傅里叶乘法器的作用:A u = IDFT3[ H DFT3[u] ]
。准确地说,给定 [N, R]
矩阵 u
,让 DFT3[u]
是通过将 u
重新整形为 [N0, N1, N2, R]
并在前三个维度上进行三维 DFT 定义的 [N0, N1, N2, R]
Tensor
。让 IDFT3
是 DFT3
的倒数。矩阵乘法可以按列表示:
(A u)_r = IDFT3[ H * (DFT3[u])_r ]
从谱中推导出算子属性。
- 此运算符是正定的当且仅当
Real{H} > 0
。
傅立叶变换的一般性质是厄米特函数和实值变换之间的对应关系。
假设 H.shape = [B1,...,Bb, N0, N1, N2]
,我们说 H
是 Hermitian 谱,如果 %
表示模除,
H[..., n0 % N0, n1 % N1, n2 % N2]
= ComplexConjugate[ H[..., (-n0) % N0, (-n1) % N1, (-n2) % N2] ].
- 当且仅当
H
是 Hermitian 时,此运算符对应于实矩阵。 - 当且仅当
H
为实数时,此运算符是自伴的。
参见例如“Discrete-Time 信号处理”,奥本海姆和谢弗。
例子
有关示例,请参见 LinearOperatorCirculant
和 LinearOperatorCirculant2D
。
性能
假设 operator
是形状为 [N, N]
和 x.shape = [N, R]
的 LinearOperatorCirculant
。然后
operator.matmul(x)
是O(R*N*Log[N])
operator.solve(x)
是O(R*N*Log[N])
operator.determinant()
涉及大小N
reduce_prod
。
如果相反 operator
和 x
具有形状 [B1,...,Bb, N, N]
和 [B1,...,Bb, N, R]
,则每个操作的复杂性都会增加 B1*...*Bb
。
矩阵属性提示
此 LinearOperator
使用 is_X
形式的布尔标志初始化,用于 X = non_singular, self_adjoint, positive_definite, square
。这些具有以下含义
- 如果
is_X == True
,调用者应该期望操作符具有属性X
。这是一个应该实现的承诺,但不是运行时断言。例如,有限的浮点精度可能会导致违反这些承诺。 - 如果
is_X == False
,调用者应该期望操作符没有X
。 - 如果
is_X == None
(默认),调用者应该没有任何期望。
相关用法
- Python tf.linalg.LinearOperatorCirculant3D.diag_part用法及代码示例
- Python tf.linalg.LinearOperatorCirculant3D.solvevec用法及代码示例
- Python tf.linalg.LinearOperatorCirculant3D.matvec用法及代码示例
- Python tf.linalg.LinearOperatorCirculant3D.assert_non_singular用法及代码示例
- Python tf.linalg.LinearOperatorCirculant3D.matmul用法及代码示例
- Python tf.linalg.LinearOperatorCirculant3D.solve用法及代码示例
- Python tf.linalg.LinearOperatorCirculant2D.solve用法及代码示例
- Python tf.linalg.LinearOperatorCirculant2D.assert_non_singular用法及代码示例
- Python tf.linalg.LinearOperatorCirculant2D.matvec用法及代码示例
- Python tf.linalg.LinearOperatorCirculant.matvec用法及代码示例
- Python tf.linalg.LinearOperatorCirculant.diag_part用法及代码示例
- Python tf.linalg.LinearOperatorCirculant.assert_non_singular用法及代码示例
- Python tf.linalg.LinearOperatorCirculant用法及代码示例
- Python tf.linalg.LinearOperatorCirculant2D用法及代码示例
- Python tf.linalg.LinearOperatorCirculant.solve用法及代码示例
- Python tf.linalg.LinearOperatorCirculant.solvevec用法及代码示例
- Python tf.linalg.LinearOperatorCirculant2D.matmul用法及代码示例
- Python tf.linalg.LinearOperatorCirculant2D.solvevec用法及代码示例
- Python tf.linalg.LinearOperatorCirculant2D.diag_part用法及代码示例
- Python tf.linalg.LinearOperatorCirculant.matmul用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.linalg.LinearOperatorCirculant3D。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。