Browse Source

Exposing squared_difference

tags/v0.20
Samuel Caldas Haiping 5 years ago
parent
commit
c2672e63d9
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      src/TensorFlowNET.Core/APIs/tf.math.cs

+ 2
- 0
src/TensorFlowNET.Core/APIs/tf.math.cs View File

@@ -528,5 +528,7 @@ namespace Tensorflow

public Tensor square(Tensor x, string name = null)
=> gen_math_ops.square(x, name: name);
public Tensor squared_difference(Tensor x, Tensor y, string name = null)
=> gen_math_ops.squared_difference(x: x, y: y, name: name);
}
}

Loading…
Cancel
Save