Skip to content

Commit

Permalink
Go: Update generated wrapper functions for TensorFlow ops.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 363986630
Change-Id: I0123ccced7578526cfc9a9861568f5aaa57dd8a8
  • Loading branch information
tensorflower-gardener committed Mar 19, 2021
1 parent b72c576 commit 766a3ef
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions tensorflow/go/op/wrappers.go
Original file line number Diff line number Diff line change
Expand Up @@ -16794,21 +16794,6 @@ func IsotonicRegression(scope *Scope, input tf.Output, optional ...IsotonicRegre
return op.Output(0), op.Output(1)
}

// Computes softplus: `log(exp(features) + 1)`.
func Softplus(scope *Scope, features tf.Output) (activations tf.Output) {
if scope.Err() != nil {
return
}
opspec := tf.OpSpec{
Type: "Softplus",
Input: []tf.Input{
features,
},
}
op := scope.AddOperation(opspec)
return op.Output(0)
}

// MutableHashTableV2Attr is an optional argument to MutableHashTableV2.
type MutableHashTableV2Attr func(optionalAttr)

Expand Down

0 comments on commit 766a3ef

Please sign in to comment.