Operand

رابط عمومی Operand
زیر کلاس های غیر مستقیم شناخته شده

Interface implemented by operands of a TensorFlow operation.

مثال استفاده:

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

روش های عمومی

abstract Output <T>
asOutput ()
دسته نمادین تانسور را برمی گرداند.
abstract T
asTensor ()
تانسور این عملوند را برمی گرداند.
شکل انتزاعی
شکل ()
شکل (احتمالاً تا حدی شناخته شده) تانسور را که توسط Output این عملوند به آن اشاره شده است، برمی گرداند.
abstract Class<T>
نوع ()
نوع تانسور این عملوند را برمی گرداند

روش های ارثی

روش های عمومی

public abstract Output <T> asOutput ()

دسته نمادین تانسور را برمی گرداند.

ورودی های عملیات TensorFlow خروجی های عملیات تنسورفلو دیگر هستند. این روش برای به دست آوردن یک دسته نمادین که نشان دهنده محاسبه ورودی است استفاده می شود.

همچنین ببینید

public abstract T asTensor ()

تانسور این عملوند را برمی گرداند. Only works when running in an eager execution

برمی گرداند
  • the tensor
پرتاب می کند
IllegalStateException if this is an operand of a graph

public abstract Shape shape ()

شکل (احتمالاً تا حدی شناخته شده) تانسور را که توسط Output این عملوند به آن اشاره شده است، برمی گرداند.

public abstract Class<T> type ()

نوع تانسور این عملوند را برمی گرداند