सार्वजनिक इंटरफ़ेस ऑपरेंड
ज्ञात अप्रत्यक्ष उपवर्ग आउटपुट <T> |
TensorFlow ऑपरेशन के ऑपरेंड द्वारा कार्यान्वित इंटरफ़ेस।
उदाहरण उपयोग:
// 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);
सार्वजनिक तरीके
सार आउटपुट <टी> | आउटपुट के रूप में () टेंसर का प्रतीकात्मक हैंडल लौटाता है। |
सार्वजनिक तरीके
सार्वजनिक सार आउटपुट <T> asOutput ()
टेंसर का प्रतीकात्मक हैंडल लौटाता है।
TensorFlow संचालन के इनपुट किसी अन्य TensorFlow ऑपरेशन के आउटपुट हैं। इस पद्धति का उपयोग एक प्रतीकात्मक हैंडल प्राप्त करने के लिए किया जाता है जो इनपुट की गणना का प्रतिनिधित्व करता है।