Skip to content

Commit 8574881

Browse files
authored
Merge pull request #1139 from BalashovK/master
fix: exp moved to tf.math.cs
2 parents a95005f + 5f64a0f commit 8574881

File tree

2 files changed

+2
-25
lines changed

2 files changed

+2
-25
lines changed

src/TensorFlowNET.Core/APIs/tf.exp.cs

-25
This file was deleted.

src/TensorFlowNET.Core/APIs/tf.math.cs

+2
Original file line numberDiff line numberDiff line change
@@ -622,5 +622,7 @@ public Tensor squared_difference(Tensor x, Tensor y, string name = null)
622622
=> gen_math_ops.squared_difference(x: x, y: y, name: name);
623623
public Tensor complex(Tensor real, Tensor imag, Tensorflow.TF_DataType? dtype = null,
624624
string name = null) => gen_ops.complex(real, imag, dtype, name);
625+
public Tensor exp(Tensor x,
626+
string name = null) => gen_math_ops.exp(x, name);
625627
}
626628
}

0 commit comments

Comments
 (0)