Operand

interface publique Opérande
Sous-classes indirectes connues

Interface implémentée par les opérandes d'une opération TensorFlow.

Exemple d'utilisation:

// The "decodeJpeg" operation can be used as an operand to the "cast" operation
 Operand<UInt8> decodeJpeg = ops.image().decodeJpeg(...);
 ops.math().cast(decodeJpeg, DataType.FLOAT);

 // The output "y" of the "unique" operation can be used as an operand to the "cast" operation
 Output<Integer> y = ops.array().unique(...).y();
 ops.math().cast(y, Float.class);

 // The "split" operation can be used as operand list to the "concat" operation
 Iterable<? extends Operand<Float>> split = ops.array().split(...);
 ops.array().concat(0, split);
 

Méthodes publiques

Sortie abstraite <T>
AsOutput ()
Renvoie la poignée symbolique d'un tenseur.

Méthodes publiques

Sortie abstraite publique <T> ASOutput ()

Renvoie la poignée symbolique d'un tenseur.

Les entrées des opérations TensorFlow sont les sorties d'une autre opération TensorFlow. Cette méthode est utilisée pour obtenir une poignée symbolique qui représente le calcul de l'entrée.