Operando

Operando dell'interfaccia pubblica
Sottoclassi indirette conosciute

Interfaccia implementata dagli operandi di un'operazione TensorFlow.

Utilizzo di esempio:

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

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

 // The "split" operation can< be used as opera<nd li>>st to the "concat" operation
 Iterable? extends OperandFloat 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.

Vedi anche