diff --git a/src/TensorFlowNET.Core/Operations/math_ops.cs b/src/TensorFlowNET.Core/Operations/math_ops.cs index 6c09d19d..198c461f 100644 --- a/src/TensorFlowNET.Core/Operations/math_ops.cs +++ b/src/TensorFlowNET.Core/Operations/math_ops.cs @@ -26,17 +26,6 @@ namespace Tensorflow public static Tensor add(Tensor x, Tensor y, string name = null) => gen_math_ops.add(x, y, name); - public static Tensor add(Tensor x, string name = null) - { - return with(ops.name_scope(name, "Add", new { x }), scope => - { - name = scope; - x = ops.convert_to_tensor(x, name: "x"); - - return gen_math_ops._abs(x, name: name); - }); - } - /// /// Adds all input tensors element-wise. ///