diff --git a/src/TensorFlowNET.Core/APIs/tf.nn.cs b/src/TensorFlowNET.Core/APIs/tf.nn.cs
index 08b88c3d..e5cd4e56 100644
--- a/src/TensorFlowNET.Core/APIs/tf.nn.cs
+++ b/src/TensorFlowNET.Core/APIs/tf.nn.cs
@@ -17,7 +17,6 @@
using System.Xml.Linq;
using Tensorflow.Operations;
using Tensorflow.Operations.Activation;
-//using static System.Formats.Asn1.AsnWriter;
using static Tensorflow.Binding;
namespace Tensorflow
@@ -127,6 +126,18 @@ namespace Tensorflow
is_training: is_training,
name: name,
exponential_avg_factor: exponential_avg_factor);
+
+ ///
+ /// Normalizes a tensor by `mean` and `variance`, and applies (optionally) a`scale` \\(\gamma\\) to it, as well as an `offset` \\(\beta\\).
+ ///
+ /// A floating point tensor.
+ /// A mean `Tensor`.
+ /// A variance `Tensor`.
+ /// An offset `Tensor`, often denoted \\(\beta\\) in equations, or NULL. If present, will be added to the normalized tensor.
+ /// A scale `Tensor`, often denoted \\(\gamma\\) in equations, or NULL. If present, the scale is applied to the normalized tensor.
+ /// A small float number to avoid dividing by 0.
+ /// A name for this operation.
+ /// the normalized, scaled, offset tensor.
public Tensor batch_normalization(Tensor x,
Tensor mean,
Tensor variance,