tensorflow :: ops :: LessEqual
#include <math_ops.h>Retorna o valor verdadeiro de (x <= y) elemento a elemento.
Resumo
 NOTA : LessEqual oferece suporte a transmissão. Mais sobre transmissão aqui
Exemplo:
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]
Argumentos:
- escopo: um objeto Scope
Retorna:
-  Output: O tensor z.
| Construtores e Destruidores | |
|---|---|
| LessEqual (const :: tensorflow::Scope & scope, :: tensorflow::Input x, :: tensorflow::Input y) | 
| Atributos públicos | |
|---|---|
| operation | |
| z | |
| Funções públicas | |
|---|---|
| node () const | ::tensorflow::Node * | 
| operator::tensorflow::Input () const | |
| operator::tensorflow::Output () const | |
Atributos públicos
Operação
Operation operation
z
::tensorflow::Output z
Funções públicas
LessEqual
LessEqual( const ::tensorflow::Scope & scope, ::tensorflow::Input x, ::tensorflow::Input y )
nó
::tensorflow::Node * node() const
operador :: tensorflow :: Input
operator::tensorflow::Input() const
operador :: tensorflow :: Saída
operator::tensorflow::Output() const