সেন্সরফ্লো :: অপস :: কম পরিমাণে

#include <math_ops.h>

(X <= y) উপাদান-ভিত্তিক সত্যের মান প্রদান করে।

সারসংক্ষেপ

দ্রষ্টব্য : LessEqual সম্প্রচার সমর্থন করে। আরো সম্প্রচার সম্পর্কে এখানে

উদাহরণ:

x = tf.constant([5, 4, 6])
y = tf.constant([5])
tf.math.less_equal(x, y) ==> [True, True, False]

x = tf.constant([5, 4, 6])
y = tf.constant([5, 6, 6])
tf.math.less_equal(x, y) ==> [True, True, True]

যুক্তি:

রিটার্নস:

  • Output : জেড টেনসর।

নির্মাণকারী এবং ধ্বংসকারী

LessEqual (const :: tensorflow::Scope & scope, :: tensorflow::Input x, :: tensorflow::Input y)

জনসাধারণের গুণাবলী

operation
z

পাবলিক ফাংশন

node () const
::tensorflow::Node *
operator::tensorflow::Input () const
operator::tensorflow::Output () const

জনসাধারণের গুণাবলী

অপারেশন

Operation operation

z

::tensorflow::Output z

পাবলিক ফাংশন

কম পরিমাণে

 LessEqual(
  const ::tensorflow::Scope & scope,
  ::tensorflow::Input x,
  ::tensorflow::Input y
)

নোড

::tensorflow::Node * node() const 

অপারেটর :: টেনসরফ্লো :: ইনপুট

 operator::tensorflow::Input() const 

অপারেটর :: টেনসরফ্লো :: আউটপুট

 operator::tensorflow::Output() const