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

keluaran abstrak <T>
sebagai Keluaran ()
Mengembalikan pegangan simbolik tensor.

Metode Publik

Abstrak publik Keluaran <T> asOutput ()

Mengembalikan pegangan simbolik tensor.

Masukan ke operasi TensorFlow adalah keluaran dari operasi TensorFlow lainnya. Metode ini digunakan untuk mendapatkan pegangan simbolis yang mewakili perhitungan input.

Lihat juga