Operand

सार्वजनिक इंटरफ़ेस ऑपरेंड
ज्ञात अप्रत्यक्ष उपवर्ग

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

सार्वजनिक तरीके

सार आउटपुट <टी>
आउटपुट के रूप में ()
टेंसर का प्रतीकात्मक हैंडल लौटाता है।
सार टी
एस्टेंसर ()
इस ऑपरेंड पर टेंसर लौटाता है।
अमूर्त आकार
आकार ()
इस ऑपरेंड के Output द्वारा निर्दिष्ट टेंसर का (संभवतः आंशिक रूप से ज्ञात) आकार लौटाता है।
सार वर्ग<T>
प्रकार ()
इस ऑपरेंड का टेंसर प्रकार लौटाता है

विरासत में मिली विधियाँ

सार्वजनिक तरीके

public abstract Output <T> asOutput ()

टेंसर का प्रतीकात्मक हैंडल लौटाता है।

TensorFlow संचालन के इनपुट किसी अन्य 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 ()

इस ऑपरेंड का टेंसर प्रकार लौटाता है