From 47ca86a9adea215cea8efe4bd5e7aafae4922df9 Mon Sep 17 00:00:00 2001 From: Oceania2018 Date: Sun, 27 Oct 2019 10:47:55 -0500 Subject: [PATCH] rename RNNCell to RnnCell --- src/TensorFlowNET.Core/Operations/RNNCell.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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,