public struct BasicRNNCell<Scalar> : RecurrentLayerCell where Scalar : TensorFlowFloatingPoint
基本的な RNN セル。
宣言
public var weight: Tensor<Scalar>
宣言
public var bias: Tensor<Scalar>
宣言
public typealias State = Tensor<Scalar>
宣言
public typealias TimeStepInput = Tensor<Scalar>
宣言
public typealias TimeStepOutput = State
宣言
public typealias Input = RNNCellInput<TimeStepInput, State>
宣言
public typealias Output = RNNCellOutput<TimeStepOutput, State>
指定された入力サイズと非表示状態サイズで
SimpleRNNCell
を作成します。宣言
public init(inputSize: Int, hiddenSize: Int, seed: TensorFlowSeed = Context.local.randomSeed)
パラメータ
inputSize
2 次元入力テンソルの特徴の数。
hiddenSize
2 次元の隠れ状態にあるフィーチャの数。
seed
初期化用のランダム シード。デフォルト値はランダムです。