MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / LessEqual

Function LessEqual

tensorflow/go/op/wrappers.go:33957–33969  ·  view source on GitHub ↗

Returns the truth value of (x <= y) element-wise. *NOTE*: `LessEqual` supports broadcasting. More about broadcasting [here](http://docs.scipy.org/doc/numpy/user/basics.broadcasting.html)

(scope *Scope, x tf.Output, y tf.Output)

Source from the content-addressed store, hash-verified

33955// *NOTE*: `LessEqual` supports broadcasting. More about broadcasting
33956// [here](http://docs.scipy.org/doc/numpy/user/basics.broadcasting.html)
33957func LessEqual(scope *Scope, x tf.Output, y tf.Output) (z tf.Output) {
33958 if scope.Err() != nil {
33959 return
33960 }
33961 opspec := tf.OpSpec{
33962 Type: "LessEqual",
33963 Input: []tf.Input{
33964 x, y,
33965 },
33966 }
33967 op := scope.AddOperation(opspec)
33968 return op.Output(0)
33969}
33970
33971// Computes the minimum along segments of a tensor.
33972//

Callers 2

TEST_FFunction · 0.50
MinimumGradFunction · 0.50

Calls 3

ErrMethod · 0.45
AddOperationMethod · 0.45
OutputMethod · 0.45

Tested by 1

TEST_FFunction · 0.40