From 29cbb4ca6e1487a00c6537391dbf6203819e6f0c Mon Sep 17 00:00:00 2001 From: haiping008 Date: Fri, 29 Mar 2019 15:37:23 -0500 Subject: [PATCH] Typo Add -> Abs #200 --- src/TensorFlowNET.Core/Operations/math_ops.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TensorFlowNET.Core/Operations/math_ops.cs b/src/TensorFlowNET.Core/Operations/math_ops.cs index 6d07376a..6c09d19d 100644 --- a/src/TensorFlowNET.Core/Operations/math_ops.cs +++ b/src/TensorFlowNET.Core/Operations/math_ops.cs @@ -28,7 +28,7 @@ namespace Tensorflow public static Tensor add(Tensor x, string name = null) { - return with(ops.name_scope(name, "Abs", new { x }), scope => + return with(ops.name_scope(name, "Add", new { x }), scope => { name = scope; x = ops.convert_to_tensor(x, name: "x");