flux tensoriel : : opérations : : InverserPermutation
#include <array_ops.h>
Calcule la permutation inverse d'un tenseur.
Résumé
Cette opération calcule l'inverse d'une permutation d'index. Il prend un tenseur entier 1D x
, qui représente les indices d'un tableau de base zéro, et échange chaque valeur avec sa position d'index. En d'autres termes, pour un tenseur de sortie y
et un tenseur d'entrée x
, cette opération calcule ce qui suit :
y[x[i]] = i for i in [0, 1, ..., len(x) - 1]
Les valeurs doivent inclure 0. Il ne peut y avoir de valeurs en double ni de valeurs négatives.
Par exemple:
# tensor `x` is [3, 4, 0, 2, 1] invert_permutation(x) ==> [2, 4, 3, 0, 1]
Arguments :
- scope : un objet Scope
- x : 1-D.
Retours :
-
Output
: 1-D.
Constructeurs et Destructeurs | |
---|---|
InvertPermutation (const :: tensorflow::Scope & scope, :: tensorflow::Input x) |
Attributs publics | |
---|---|
operation | |
y |
Fonctions publiques | |
---|---|
node () const | ::tensorflow::Node * |
operator::tensorflow::Input () const | |
operator::tensorflow::Output () const |
Attributs publics
opération
Operation operation
oui
::tensorflow::Output y
Fonctions publiques
InverserPermutation
InvertPermutation( const ::tensorflow::Scope & scope, ::tensorflow::Input x )
nœud
::tensorflow::Node * node() const
opérateur :: tensorflow :: Entrée
operator::tensorflow::Input() const
opérateur :: tensorflow :: Sortie
operator::tensorflow::Output() const