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> অ্যাসআউটপুট ()

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

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

এছাড়াও দেখুন