diff --git a/src/TensorFlowNET.Core/Operations/RNNCell.cs b/src/TensorFlowNET.Core/Operations/RNNCell.cs index 442115c0..9902cd41 100644 --- a/src/TensorFlowNET.Core/Operations/RNNCell.cs +++ b/src/TensorFlowNET.Core/Operations/RNNCell.cs @@ -42,7 +42,7 @@ namespace Tensorflow /// matching structure of Tensors having shape `[batch_size].concatenate(s)` /// for each `s` in `self.batch_size`. /// - public abstract class RNNCell : Layers.Layer + public abstract class RnnCell : Layers.Layer { /// /// Attribute that indicates whether the cell is a TF RNN cell, due the slight @@ -53,7 +53,7 @@ namespace Tensorflow public virtual int output_size { get; } - public RNNCell(bool trainable = true, + public RnnCell(bool trainable = true, string name = null, TF_DataType dtype = TF_DataType.DtInvalid, bool? _reuse = null) : base(trainable: trainable,