sgd-0.8.0.3: Stochastic gradient descent library

Safe HaskellSafe
LanguageHaskell2010

Numeric.SGD.Type

Description

Provides the basic SGD pipe type.

Synopsis
  • type SGD m e p = p -> Pipe e p m ()

Documentation

type SGD m e p = p -> Pipe e p m () Source #

SGD is a pipe which, given the initial parameter values, consumes training elements of type e and outputs the subsequently calculated parameter sets of type p.