Operand

interface pública Operando
Subclasses indiretas conhecidas

Interface implemented by operands of a TensorFlow operation.

Example usage:

// 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étodos públicos

abstract Output <T>
asOutput ()
Retorna o identificador simbólico de um tensor.

Métodos públicos

public abstract Output <T> asOutput ()

Retorna o identificador simbólico de um tensor.

As entradas para as operações do TensorFlow são saídas de outra operação do TensorFlow. Este método é usado para obter um identificador simbólico que representa a computação da entrada.

,
public interface Operand
Known Indirect Subclasses

Interface implemented by operands of a TensorFlow operation.

Example usage:

// The "decodeJpeg" operation can be used as an operand to the "cast" operation
 Operand&lt;UInt8&gt; 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&lt;Integer&gt; 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&lt;? extends Operand&lt;Float&gt;&gt; split = ops.array().split(...);
 ops.array().concat(0, split);
 

Métodos públicos

abstract Output <T>
asOutput ()
Retorna o identificador simbólico de um tensor.

Métodos públicos

public abstract Output <T> asOutput ()

Retorna o identificador simbólico de um tensor.

As entradas para as operações do TensorFlow são saídas de outra operação do TensorFlow. Este método é usado para obter um identificador simbólico que representa a computação da entrada.