public struct BasicRNNCell<Scalar> : RecurrentLayerCell where Scalar : TensorFlowFloatingPoint
एक बुनियादी आरएनएन सेल।
घोषणा
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
आरंभीकरण के लिए यादृच्छिक बीज. डिफ़ॉल्ट मान यादृच्छिक है.