Operand

Operan antarmuka publik
Subkelas Tidak Langsung yang Diketahui

Interface implemented by operands of a TensorFlow operation.

Example usage:

Ops tf = Ops.create();

 // The "decodeJpeg" operation can be used as an operand to the "cast" operation
 Operand<TUint8> decodeJpeg = tf.image.decodeJpeg(...);
 tf.dtypes.cast(decodeJpeg, TFloat32.class);

 // The output "y" of the "unique" operation can be used as an operand to the "cast" operation
 Output<TInt32> y = tf.unique(...).y();
 tf.dtypes.cast(y, TFloat32.class);

 // The "split" operation can be used as operand list to the "concat" operation
 Iterable<? extends Operand<TFloat32>> split = tf.split(...);
 tf.concat(split, tf.constant(0));
 

Metode Publik

Keluaran abstrak <T>
sebagai Keluaran ()
Mengembalikan pegangan simbolis tensor.
abstrak T
sebagai Tensor ()
Mengembalikan tensor pada operan ini.
Bentuk abstrak
membentuk ()
Mengembalikan bentuk tensor (yang mungkin diketahui sebagian) yang dirujuk oleh Output operan ini.
Kelas abstrak<T>
jenis ()
Mengembalikan tipe tensor operan ini

Metode Warisan

Metode Publik

public abstract Output <T> asOutput ()

Mengembalikan pegangan simbolis tensor.

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

See Also

public abstract T asTensor ()

Mengembalikan tensor pada operan ini. Only works when running in an eager execution

Kembali
  • the tensor
Melempar
IlegalStateException if this is an operand of a graph

public abstract Shape shape ()

Mengembalikan bentuk tensor (yang mungkin diketahui sebagian) yang dirujuk oleh Output operan ini.

public abstract Class<T> type ()

Mengembalikan tipe tensor operan ini