返回批量張量的批量對角線部分。
用法
tf.raw_ops.MatrixDiagPartV3(
input, k, padding_value, align='RIGHT_LEFT', name=None
)
參數
-
input
一個Tensor
。排名r
張量,其中r >= 2
。 -
k
Tensor
類型為int32
。對角線偏移。正值表示上對角線,0 表示主對角線,負值表示次對角線。k
可以是單個整數(用於單個對角線)或一對整數,指定矩陣帶的低端和高端。k[0]
不得大於k[1]
。 -
padding_value
一個Tensor
。必須與input
具有相同的類型。用於填充指定對角帶之外區域的值。默認值為 0。 -
align
一個可選的string
來自:"LEFT_RIGHT", "RIGHT_LEFT", "LEFT_LEFT", "RIGHT_RIGHT"
。默認為"RIGHT_LEFT"
。一些對角線比max_diag_len
短,需要填充。align
是一個字符串,分別指定上對角線和下對角線應如何對齊。有四種可能的對齊方式:"RIGHT_LEFT"(默認)、"LEFT_RIGHT"、"LEFT_LEFT" 和 "RIGHT_RIGHT"。 "RIGHT_LEFT" 將上對角線向右對齊(left-pads 行)和子對角線向左對齊(right-pads 行)。它是 LAPACK 使用的打包格式。 cuSPARSE 使用"LEFT_RIGHT",這是相反的對齊方式。 -
name
操作的名稱(可選)。
返回
-
一個
Tensor
。具有與input
相同的類型。
返回具有 k[0]
-th 到 k[1]
-th 批處理 input
對角線的張量。
假設 input
具有 r
尺寸 [I, J, ..., L, M, N]
。令max_diag_len
為要提取的所有對角線中的最大長度,max_diag_len = min(M + min(k[1], 0), N + min(-k[0], 0))
令num_diags
為要提取的對角行數,num_diags = k[1] - k[0] + 1
。
如果 num_diags == 1
,則輸出張量的秩為 r - 1
,形狀為 [I, J, ..., L, max_diag_len]
和值:
diagonal[i, j, ..., l, n]
= input[i, j, ..., l, n+y, n+x] ; if 0 <= n+y < M and 0 <= n+x < N,
padding_value ; otherwise.
其中 y = max(-k[1], 0)
, x = max(k[1], 0)
。
否則,輸出張量的秩為r
,維度為[I, J, ..., L, num_diags, max_diag_len]
,其值為:
diagonal[i, j, ..., l, m, n]
= input[i, j, ..., l, n+y, n+x] ; if 0 <= n+y < M and 0 <= n+x < N,
padding_value ; otherwise.
其中 d = k[1] - m
, y = max(-d, 0) - offset
和 x = max(d, 0) - offset
。
offset
為零,除非對角線對齊在右側。
offset = max_diag_len - diag_len(d) ; if (`align` in {RIGHT_LEFT, RIGHT_RIGHT}
and `d >= 0`) or
(`align` in {LEFT_RIGHT, RIGHT_RIGHT}
and `d <= 0`)
0 ; otherwise
其中diag_len(d) = min(cols - max(d, 0), rows + min(d, 0))
.
輸入必須至少是一個矩陣。
例如:
input = np.array([[[1, 2, 3, 4], # Input shape:(2, 3, 4)
[5, 6, 7, 8],
[9, 8, 7, 6]],
[[5, 4, 3, 2],
[1, 2, 3, 4],
[5, 6, 7, 8]]])
# A main diagonal from each batch.
tf.matrix_diag_part(input) ==> [[1, 6, 7], # Output shape:(2, 3)
[5, 2, 7]]
# A superdiagonal from each batch.
tf.matrix_diag_part(input, k = 1)
==> [[2, 7, 6], # Output shape:(2, 3)
[4, 3, 8]]
# A band from each batch.
tf.matrix_diag_part(input, k = (-1, 2))
==> [[[0, 3, 8], # Output shape:(2, 4, 3)
[2, 7, 6],
[1, 6, 7],
[5, 8, 0]],
[[0, 3, 4],
[4, 3, 8],
[5, 2, 7],
[1, 6, 0]]]
# LEFT_RIGHT alignment.
tf.matrix_diag_part(input, k = (-1, 2), align="LEFT_RIGHT")
==> [[[3, 8, 0], # Output shape:(2, 4, 3)
[2, 7, 6],
[1, 6, 7],
[0, 5, 8]],
[[3, 4, 0],
[4, 3, 8],
[5, 2, 7],
[0, 1, 6]]]
# max_diag_len can be shorter than the main diagonal.
tf.matrix_diag_part(input, k = (-2, -1))
==> [[[5, 8],
[9, 0]],
[[1, 6],
[5, 0]]]
# padding_value = 9
tf.matrix_diag_part(input, k = (1, 3), padding_value = 9)
==> [[[9, 9, 4], # Output shape:(2, 3, 3)
[9, 3, 8],
[2, 7, 6]],
[[9, 9, 2],
[9, 3, 4],
[4, 3, 8]]]
相關用法
- Python tf.raw_ops.MatrixDiagPartV2用法及代碼示例
- Python tf.raw_ops.MatrixDiagPart用法及代碼示例
- Python tf.raw_ops.MatrixDiag用法及代碼示例
- Python tf.raw_ops.MatrixDiagV2用法及代碼示例
- Python tf.raw_ops.MatrixDiagV3用法及代碼示例
- Python tf.raw_ops.MatrixSetDiagV2用法及代碼示例
- Python tf.raw_ops.MatrixSetDiagV3用法及代碼示例
- Python tf.raw_ops.MatrixTriangularSolve用法及代碼示例
- Python tf.raw_ops.MatrixBandPart用法及代碼示例
- Python tf.raw_ops.Maximum用法及代碼示例
- Python tf.raw_ops.MutexLock用法及代碼示例
- Python tf.raw_ops.Minimum用法及代碼示例
- Python tf.raw_ops.MirrorPadGrad用法及代碼示例
- Python tf.raw_ops.MirrorPad用法及代碼示例
- Python tf.raw_ops.TPUReplicatedInput用法及代碼示例
- Python tf.raw_ops.Bitcast用法及代碼示例
- Python tf.raw_ops.SelfAdjointEigV2用法及代碼示例
- Python tf.raw_ops.BatchMatMul用法及代碼示例
- Python tf.raw_ops.OneHot用法及代碼示例
- Python tf.raw_ops.ResourceScatterNdSub用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.raw_ops.MatrixDiagPartV3。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。