Exemplo n.º 1
0
 public static Func <Variable, Function> Tanh(string name = null)
 {
     return(x => C.Tanh(x, name));
 }
Exemplo n.º 2
0
 public Tensor Tanh(Tensor x)
 {
     return(Out(C.Tanh(In(x))));
 }