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