hasktorch-0.2.0.0: Functional differentiable programming in Haskell
Safe HaskellSafe-Inferred
LanguageHaskell2010

Torch.NN.Recurrent.Cell.GRU

Documentation

data GRUSpec Source #

Constructors

GRUSpec 

Fields

Instances

Instances details
Show GRUSpec Source # 
Instance details

Defined in Torch.NN.Recurrent.Cell.GRU

Eq GRUSpec Source # 
Instance details

Defined in Torch.NN.Recurrent.Cell.GRU

Randomizable GRUSpec GRUCell Source # 
Instance details

Defined in Torch.NN.Recurrent.Cell.GRU

data GRUCell Source #

Instances

Instances details
Generic GRUCell Source # 
Instance details

Defined in Torch.NN.Recurrent.Cell.GRU

Associated Types

type Rep GRUCell :: Type -> Type Source #

Show GRUCell Source # 
Instance details

Defined in Torch.NN.Recurrent.Cell.GRU

Parameterized GRUCell Source # 
Instance details

Defined in Torch.NN.Recurrent.Cell.GRU

Randomizable GRUSpec GRUCell Source # 
Instance details

Defined in Torch.NN.Recurrent.Cell.GRU

type Rep GRUCell Source # 
Instance details

Defined in Torch.NN.Recurrent.Cell.GRU

type Rep GRUCell = D1 ('MetaData "GRUCell" "Torch.NN.Recurrent.Cell.GRU" "hasktorch-0.2.0.0-F6yFRaDiRF49lpq95SVuR8" 'False) (C1 ('MetaCons "GRUCell" 'PrefixI 'True) ((S1 ('MetaSel ('Just "weightsIH") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Parameter) :*: S1 ('MetaSel ('Just "weightsHH") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Parameter)) :*: (S1 ('MetaSel ('Just "biasIH") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Parameter) :*: S1 ('MetaSel ('Just "biasHH") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Parameter))))

gruCellForward Source #

Arguments

:: GRUCell

cell parameters

-> Tensor

input

-> Tensor

hidden

-> Tensor

output