Show / Hide Table of Contents

Class SimpleRNNCell

Cell class for SimpleRNN.

Inheritance
System.Object
Keras
Base
BaseLayer
RNN
SimpleRNNCell
Implements
System.IDisposable
Inherited Members
BaseLayer.Set(BaseLayer[])
Base.Parameters
Base.None
Base.Init()
Base.ToPython()
Base.InvokeStaticMethod(Object, String, Dictionary<String, Object>)
Base.InvokeMethod(String, Dictionary<String, Object>)
Base.Item[String]
Keras.Instance
Keras.keras
Keras.keras2onnx
Keras.tfjs
Keras.Dispose()
Keras.ToTuple(Array)
Keras.ToList(Array)
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Keras.Layers
Assembly: Keras.dll
Syntax
public class SimpleRNNCell : RNN, IDisposable

Constructors

| Improve this Doc View Source

SimpleRNNCell(Int32, String, Boolean, String, String, String, String, String, String, String, String, String, String, Single, Single)

Initializes a new instance of the SimpleRNNCell class.

Declaration
public SimpleRNNCell(int units, string activation = "tanh", bool use_bias = true, string kernel_initializer = "glorot_uniform", string recurrent_initializer = "orthogonal", string bias_initializer = "zeros", string kernel_regularizer = "", string recurrent_regularizer = "", string bias_regularizer = "", string activity_regularizer = "", string kernel_constraint = "", string recurrent_constraint = "", string bias_constraint = "", float dropout = 0F, float recurrent_dropout = 0F)
Parameters
Type Name Description
System.Int32 units

Positive integer, dimensionality of the output space.

System.String activation

Activation function to use (see activations). Default: hyperbolic tangent (tanh). If you pass None, no activation is applied (ie. "linear" activation: a(x) = x).

System.Boolean use_bias

Boolean, whether the layer uses a bias vector.

System.String kernel_initializer

Initializer for the kernel weights matrix, used for the linear transformation of the inputs (see initializers).

System.String recurrent_initializer

Initializer for the recurrent_kernel weights matrix, used for the linear transformation of the recurrent state (see initializers).

System.String bias_initializer

Initializer for the bias vector (see initializers).

System.String kernel_regularizer

Regularizer function applied to the kernel weights matrix (see regularizer).

System.String recurrent_regularizer

Regularizer function applied to the recurrent_kernel weights matrix (see regularizer).

System.String bias_regularizer

Regularizer function applied to the bias vector (see regularizer).

System.String activity_regularizer

Regularizer function applied to the output of the layer (its "activation"). (see regularizer).

System.String kernel_constraint

Constraint function applied to the kernel weights matrix (see constraints).

System.String recurrent_constraint

Constraint function applied to the recurrent_kernel weights matrix (see constraints).

System.String bias_constraint

Constraint function applied to the bias vector (see constraints).

System.Single dropout

Float between 0 and 1. Fraction of the units to drop for the linear transformation of the inputs.

System.Single recurrent_dropout

Float between 0 and 1. Fraction of the units to drop for the linear transformation of the recurrent state.

Implements

System.IDisposable
  • Improve this Doc
  • View Source
Back to top Generated by DocFX