Browse Source

Typo Add -> Abs #200

tags/v0.9
haiping008 6 years ago
parent
commit
29cbb4ca6e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/TensorFlowNET.Core/Operations/math_ops.cs

+ 1
- 1
src/TensorFlowNET.Core/Operations/math_ops.cs View File

@@ -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");


Loading…
Cancel
Save