馃挘 Machine learning which might blow up in your face 馃挘
at master 21 lines 653 B view raw
1{-| 2Module : Grenade.Core.LearningParameters 3Description : Stochastic gradient descent learning parameters 4Copyright : (c) Huw Campbell, 2016-2017 5License : BSD2 6Stability : experimental 7-} 8module Grenade.Core.LearningParameters ( 9 -- | This module contains learning algorithm specific 10 -- code. Currently, this module should be considered 11 -- unstable, due to issue #26. 12 13 LearningParameters (..) 14 ) where 15 16-- | Learning parameters for stochastic gradient descent. 17data LearningParameters = LearningParameters { 18 learningRate :: Double 19 , learningMomentum :: Double 20 , learningRegulariser :: Double 21 } deriving (Eq, Show)