tf.raw_ops.ConjugateTranspose
Перемешивание измерений x согласно перестановке и конъюгирование результата.
tf.raw_ops.ConjugateTranspose(
x, perm, name=None
)
Выходной y имеет тот же ранг, что и x. Форматы x и y удовлетворяют: y.shape[i] == x.shape[perm[i]] for i in [0, 1, ..., rank(x) - 1] y[i,j,k,...,s,t,u] == conj(x[perm[i], perm[j], perm[k],...,perm[s], perm[t], perm[u]])
| Аргументы | |
|---|---|
x | A Tensor. |
perm | A Tensor. Должно быть одним из следующих типов: int32, int64. |
name | Имя операции (необязательно). |
| Возвращаемое значение | |
|---|---|
A Tensor. Имеет тот же тип, что и x. |
© 2022 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 4.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/api_docs/python/tf/raw_ops/ConjugateTranspose