Operand

Operando dell'interfaccia pubblica
Sottoclassi indirette conosciute

Interfaccia implementata da operandi di un'operazione Tensorflow.

Esempio di utilizzo:

// 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);
 

Metodi pubblici

Output astratto <T>
asoutput ()
Restituisce la maniglia simbolica di un tensore.

Metodi pubblici

Public Abstract Output <T> asoutput ()

Restituisce la maniglia simbolica di un tensore.

Gli input per le operazioni TensorFlow sono output di un'altra operazione TensorFlow. Questo metodo viene utilizzato per ottenere una maniglia simbolica che rappresenta il calcolo dell'input.