@@ -18,6 +18,9 @@ public static Tensor sqrt(Tensor a, string name = null)
1818 public static Tensor subtract < T > ( Tensor x , T [ ] y , string name = null ) where T : struct
1919 => gen_math_ops . sub ( x , ops . convert_to_tensor ( y , dtype : x . dtype . as_base_dtype ( ) , name : "y" ) , name ) ;
2020
21+ public static Tensor log ( Tensor x , string name = null )
22+ => gen_math_ops . log ( x , name ) ;
23+
2124 public static Tensor multiply ( Tensor x , Tensor y )
2225 => gen_math_ops . mul ( x , y ) ;
2326
@@ -33,11 +36,11 @@ public static Tensor pow<T1, T2>(T1 x, T2 y)
3336 /// <param name="input"></param>
3437 /// <param name="axis"></param>
3538 /// <returns></returns>
36- public static Tensor reduce_sum ( Tensor input , int [ ] axis = null )
39+ public static Tensor reduce_sum ( Tensor input , int [ ] axis = null , int ? reduction_indices = null )
3740 => math_ops . reduce_sum ( input ) ;
3841
39- public static Tensor reduce_mean ( Tensor input_tensor , int [ ] axis = null , bool keepdims = false , string name = null )
40- => math_ops . reduce_mean ( input_tensor , axis : axis , keepdims : keepdims , name : name ) ;
42+ public static Tensor reduce_mean ( Tensor input_tensor , int [ ] axis = null , bool keepdims = false , string name = null , int ? reduction_indices = null )
43+ => math_ops . reduce_mean ( input_tensor , axis : axis , keepdims : keepdims , name : name , reduction_indices : reduction_indices ) ;
4144
4245 public static Tensor cast ( Tensor x , TF_DataType dtype = TF_DataType . DtInvalid , string name = null )
4346 => math_ops . cast ( x , dtype , name ) ;
0 commit comments