# HG changeset patch # User James Bergstra # Date 1243988370 14400 # Node ID b4aa46f856c1bc47d9b4cb0d653df4547211e400 # Parent 4617ee2776983945b199e9ba634b284b35bead9e added doc diff -r 4617ee277698 -r b4aa46f856c1 pylearn/algorithms/exponential_mean.py --- a/pylearn/algorithms/exponential_mean.py Fri May 29 10:48:20 2009 -0400 +++ b/pylearn/algorithms/exponential_mean.py Tue Jun 02 20:19:30 2009 -0400 @@ -14,6 +14,12 @@ :math:`self.curval = (1.0 - (1.0/max_denom)) * self.old_curval + (1.0/max_denom) * x` + + The symbolic buffer containing the running mean is called `old_curval`. (This has a value + in the ModuleInstance). + + The symbolic variable for the updated running mean is called `curval`. + """ max_denom = None