Operand

Operan antarmuka publik
Subkelas Tidak Langsung yang Diketahui

Antarmuka diimplementasikan oleh operan operasi TensorFlow.

Contoh Penggunaan:

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

Metode Publik

output abstrak <t>
asoutput ()
Mengembalikan pegangan simbolis dari tensor.

Metode Publik

output abstrak publik <T> asoutput ()

Mengembalikan pegangan simbolis dari tensor.

Input ke operasi TensorFlow adalah output dari operasi tensorflow lain. Metode ini digunakan untuk mendapatkan pegangan simbolik yang mewakili perhitungan input.