टेंसरफ़्लो:: ऑप्स:: ग्रेटर

#include <math_ops.h>

तत्व-वार (x > y) का सत्य मान लौटाता है।

सारांश

ध्यान दें : Greater प्रसारण का समर्थन करता है। यहां प्रसारण के बारे में अधिक जानकारी

उदाहरण:

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

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

तर्क:

रिटर्न:

  • Output : z टेंसर।

निर्माता और विध्वंसक

Greater (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

जेड

::tensorflow::Output z

सार्वजनिक समारोह

ग्रेटर

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

नोड

::tensorflow::Node * node() const 

ऑपरेटर::टेन्सरफ़्लो::इनपुट

 operator::tensorflow::Input() const 

ऑपरेटर::टेन्सरफ़्लो::आउटपुट

 operator::tensorflow::Output() const