Skip to content

Commit 47ca86a

Browse files
committed
rename RNNCell to RnnCell
1 parent d1e1e05 commit 47ca86a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/TensorFlowNET.Core/Operations/RNNCell.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ namespace Tensorflow
4242
/// matching structure of Tensors having shape `[batch_size].concatenate(s)`
4343
/// for each `s` in `self.batch_size`.
4444
/// </summary>
45-
public abstract class RNNCell : Layers.Layer
45+
public abstract class RnnCell : Layers.Layer
4646
{
4747
/// <summary>
4848
/// Attribute that indicates whether the cell is a TF RNN cell, due the slight
@@ -53,7 +53,7 @@ public abstract class RNNCell : Layers.Layer
5353

5454
public virtual int output_size { get; }
5555

56-
public RNNCell(bool trainable = true,
56+
public RnnCell(bool trainable = true,
5757
string name = null,
5858
TF_DataType dtype = TF_DataType.DtInvalid,
5959
bool? _reuse = null) : base(trainable: trainable,

0 commit comments

Comments
 (0)