| @@ -42,7 +42,7 @@ namespace Tensorflow | |||||
| /// matching structure of Tensors having shape `[batch_size].concatenate(s)` | /// matching structure of Tensors having shape `[batch_size].concatenate(s)` | ||||
| /// for each `s` in `self.batch_size`. | /// for each `s` in `self.batch_size`. | ||||
| /// </summary> | /// </summary> | ||||
| public abstract class RNNCell : Layers.Layer | |||||
| public abstract class RnnCell : Layers.Layer | |||||
| { | { | ||||
| /// <summary> | /// <summary> | ||||
| /// Attribute that indicates whether the cell is a TF RNN cell, due the slight | /// 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 virtual int output_size { get; } | ||||
| public RNNCell(bool trainable = true, | |||||
| public RnnCell(bool trainable = true, | |||||
| string name = null, | string name = null, | ||||
| TF_DataType dtype = TF_DataType.DtInvalid, | TF_DataType dtype = TF_DataType.DtInvalid, | ||||
| bool? _reuse = null) : base(trainable: trainable, | bool? _reuse = null) : base(trainable: trainable, | ||||