Skip to content

Commit

Permalink
Merge pull request #1139 from BalashovK/master
Browse files Browse the repository at this point in the history
fix: exp moved to tf.math.cs
  • Loading branch information
Oceania2018 authored Jul 9, 2023
2 parents a95005f + 5f64a0f commit 8574881
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 25 deletions.
25 changes: 0 additions & 25 deletions src/TensorFlowNET.Core/APIs/tf.exp.cs

This file was deleted.

2 changes: 2 additions & 0 deletions src/TensorFlowNET.Core/APIs/tf.math.cs
Original file line number Diff line number Diff line change
Expand Up @@ -622,5 +622,7 @@ public Tensor squared_difference(Tensor x, Tensor y, string name = null)
=> gen_math_ops.squared_difference(x: x, y: y, name: name);
public Tensor complex(Tensor real, Tensor imag, Tensorflow.TF_DataType? dtype = null,
string name = null) => gen_ops.complex(real, imag, dtype, name);
public Tensor exp(Tensor x,
string name = null) => gen_math_ops.exp(x, name);
}
}

0 comments on commit 8574881

Please sign in to comment.