DeepDarkFantasy-0.2017.8.10: A DSL for creating neural network.
DDF.Dual
class Prod r => Dual r where Source #
Minimal complete definition
dual, runDual
Methods
dual :: r h ((x, y) -> Dual x y) Source #
runDual :: r h (Dual x y -> (x, y)) Source #
mkDual :: r h (x -> y -> Dual x y) Source #
dualOrig :: r h (Dual x y -> x) Source #
dualDiff :: r h (Dual x y -> y) Source #
Instances
dual :: Eval h ((x, y) -> Dual x y) Source #
runDual :: Eval h (Dual x y -> (x, y)) Source #
mkDual :: Eval h (x -> y -> Dual x y) Source #
dualOrig :: Eval h (Dual x y -> x) Source #
dualDiff :: Eval h (Dual x y -> y) Source #
dual :: Show h ((x, y) -> Dual x y) Source #
runDual :: Show h (Dual x y -> (x, y)) Source #
mkDual :: Show h (x -> y -> Dual x y) Source #
dualOrig :: Show h (Dual x y -> x) Source #
dualDiff :: Show h (Dual x y -> y) Source #
dual :: Size h ((x, y) -> Dual x y) Source #
runDual :: Size h (Dual x y -> (x, y)) Source #
mkDual :: Size h (x -> y -> Dual x y) Source #
dualOrig :: Size h (Dual x y -> x) Source #
dualDiff :: Size h (Dual x y -> y) Source #
dual :: Term c h ((x, y) -> Dual x y) Source #
runDual :: Term c h (Dual x y -> (x, y)) Source #
mkDual :: Term c h (x -> y -> Dual x y) Source #
dualOrig :: Term c h (Dual x y -> x) Source #
dualDiff :: Term c h (Dual x y -> y) Source #
dual :: UnHOAS r h ((x, y) -> Dual x y) Source #
runDual :: UnHOAS r h (Dual x y -> (x, y)) Source #
mkDual :: UnHOAS r h (x -> y -> Dual x y) Source #
dualOrig :: UnHOAS r h (Dual x y -> x) Source #
dualDiff :: UnHOAS r h (Dual x y -> y) Source #
dual :: UnLiftEnv r h ((x, y) -> Dual x y) Source #
runDual :: UnLiftEnv r h (Dual x y -> (x, y)) Source #
mkDual :: UnLiftEnv r h (x -> y -> Dual x y) Source #
dualOrig :: UnLiftEnv r h (Dual x y -> x) Source #
dualDiff :: UnLiftEnv r h (Dual x y -> y) Source #
dual :: ImpW r h ((x, y) -> Dual x y) Source #
runDual :: ImpW r h (Dual x y -> (x, y)) Source #
mkDual :: ImpW r h (x -> y -> Dual x y) Source #
dualOrig :: ImpW r h (Dual x y -> x) Source #
dualDiff :: ImpW r h (Dual x y -> y) Source #
dual1 :: Dual r => r h (x, y) -> r h (Dual x y) Source #
mkDual2 :: Dual r => r h a1 -> r h a -> r h (Dual a1 a) Source #
dualOrig1 :: Dual r => r h (Dual b y) -> r h b Source #
dualDiff1 :: Dual r => r h (Dual x b) -> r h b Source #
module DDF.Prod