hasktorch-0.2.1.2: Haskell bindings to libtorch, supporting both typed and untyped tensors.
Safe HaskellNone
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

Methods

(==) :: GRUSpec -> GRUSpec -> Bool #

(/=) :: GRUSpec -> GRUSpec -> Bool #

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 
Instance details

Defined in Torch.NN.Recurrent.Cell.GRU

Methods

from :: GRUCell -> Rep GRUCell x #

to :: Rep GRUCell x -> GRUCell #

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

gruCellForward Source #

Arguments

:: GRUCell

cell parameters

-> Tensor

input

-> Tensor

hidden

-> Tensor

output