অপারেন্ড

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

টেনসরফ্লো অপারেশনের অপারেন্ড দ্বারা বাস্তবায়িত ইন্টারফেস।

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

// The "decodeJpeg" operation can be used as an operand to the "cast"<; ope>ration
 OperandUInt8 decodeJpeg = ops.image().decodeJpeg(...);
 ops.math().cast(decodeJpeg, DataType.FLOAT);

 // The output "y" of the "unique" operation can be used as an< operan>d to the "cast" operation
 OutputInteger y = ops.array().unique(...).y();
 ops.math().cast(y, Float.class);

 // The "split" operation can< be used as opera<nd li>>st to the "concat" operation
 Iterable? extends OperandFloat split = ops.array().split(...);
 ops.array().concat(0, split);
 

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

বিমূর্ত আউটপুট <T>
আউটপুট হিসাবে ()
একটি টেনসরের প্রতীকী হ্যান্ডেল প্রদান করে।

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

সর্বজনীন বিমূর্ত আউটপুট <T> হিসাবে আউটপুট ()

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

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

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