Safe Haskell | None |
---|---|
Language | Haskell2010 |
This module declares the BatchNormalization layer data type.
Synopsis
- data BatchNormalization :: Nat -> Nat -> Nat -> Type where
- BatchNormalization :: BatchNormalization axis momentum epsilon
Documentation
data BatchNormalization :: Nat -> Nat -> Nat -> Type where Source #
A classic BatchNormalization layer with axis, momentum and epsilon parameters
BatchNormalization :: BatchNormalization axis momentum epsilon |
Instances
Show (BatchNormalization a b c) Source # | |
Defined in TensorSafe.Layers.BatchNormalization showsPrec :: Int -> BatchNormalization a b c -> ShowS # show :: BatchNormalization a b c -> String # showList :: [BatchNormalization a b c] -> ShowS # | |
(KnownNat axis, KnownNat momentum, KnownNat epsilon) => Layer (BatchNormalization axis momentum epsilon) Source # | |
Defined in TensorSafe.Layers.BatchNormalization layer :: BatchNormalization axis momentum epsilon Source # compile :: BatchNormalization axis momentum epsilon -> InputShape -> CNetwork Source # |