Operand

পাবলিক ইন্টারফেস অপারেন্ড
পরিচিত পরোক্ষ উপশ্রেণী

ইন্টারফেস একটি টেনসরফ্লো অপারেশনের অপারেশন দ্বারা প্রয়োগ করা হয়েছে।

উদাহরণ ব্যবহার:

// 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>
অ্যাসআউটপুট ()
একটি টেনসরের প্রতীকী হ্যান্ডেলটি ফেরত দেয়।

পাবলিক পদ্ধতি

পাবলিক অ্যাবস্ট্রাক্ট আউটপুট <t> অ্যাসআউটপুট ()

একটি টেনসরের প্রতীকী হ্যান্ডেলটি ফেরত দেয়।

টেনসরফ্লো অপারেশনের ইনপুটগুলি অন্য টেনসরফ্লো অপারেশনের আউটপুট। এই পদ্ধতিটি একটি প্রতীকী হ্যান্ডেল পেতে ব্যবহৃত হয় যা ইনপুটটির গণনা উপস্থাপন করে।

আরো দেখুন