We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c172126 commit 48a62b7Copy full SHA for 48a62b7
1 file changed
src/TensorFlowNET.Core/APIs/tf.nn.cs
@@ -116,6 +116,8 @@ public Tensor embedding_lookup(Tensor @params,
116
public IActivation relu() => new relu();
117
public IActivation swish() => new swish();
118
public IActivation tanh() => new tanh();
119
+
120
+ public IActivation softmax() => new softmax();
121
public Tensor tanh(Tensor x, string name = null)
122
=> gen_nn_ops.tanh(x, name);
123
0 commit comments