Operando dell'interfaccia pubblica
Sottoclassi indirette conosciute Uscita <T> |
Interfaccia implementata dagli operandi di un'operazione TensorFlow.
Utilizzo di esempio:
// 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> | comeuscita () Restituisce la maniglia simbolica di un tensore. |
Metodi pubblici
output astratto pubblico <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 un handle simbolico che rappresenta il calcolo dell'input.