DeepDarkFantasy-0.2017.8.4: A DSL for creating neural network.

Safe HaskellSafe
LanguageHaskell2010

DDF.Y

Documentation

class DBI r => Y r where Source #

Minimal complete definition

y

Methods

y :: r h ((a -> a) -> a) Source #

undefined :: r h a Source #

Instances

Y Show Source # 

Methods

y :: Show h ((a -> a) -> a) Source #

undefined :: Show h a Source #

Y Size Source # 

Methods

y :: Size h ((a -> a) -> a) Source #

undefined :: Size h a Source #

Y UInt Source # 

Methods

y :: UInt h ((a -> a) -> a) Source #

undefined :: UInt h a Source #

(Prod r, Y r) => Y (UnLiftEnv r) Source # 

Methods

y :: UnLiftEnv r h ((a -> a) -> a) Source #

undefined :: UnLiftEnv r h a Source #

y1 :: Y r => r h (b -> b) -> r h b Source #

y2 :: Y r => r h ((a -> b) -> a -> b) -> r h a -> r h b Source #

module DDF.DBI