Mercurial > pylearn
changeset 512:da916044454c
added useless comments
author | James Bergstra <bergstrj@iro.umontreal.ca> |
---|---|
date | Thu, 30 Oct 2008 19:39:10 -0400 |
parents | 6fe692b93b69 |
children | 6103dc5d2a0d |
files | algorithms/daa.py |
diffstat | 1 files changed, 24 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/algorithms/daa.py Thu Oct 30 11:27:04 2008 -0400 +++ b/algorithms/daa.py Thu Oct 30 19:39:10 2008 -0400 @@ -7,12 +7,34 @@ from pylearn import cost as cost class DenoisingAA(T.RModule): + """De-noising Auto-encoder + + WRITEME + + Abstract base class. Requires subclass with functions: + + - build_corrupted_input() + + Introductory article about this model WRITEME. + + + """ def __init__(self, input = None, regularize = True, tie_weights = True, activation_function=NN.sigmoid, reconstruction_cost_function=cost.cross_entropy): """ - @param reconstruction_cost: Should return one cost per example (row) - @todo: Default noise level for all daa levels + :param input: WRITEME + + :param regularize: WRITEME + + :param tie_weights: WRITEME + + :param activation_function: WRITEME + + :param reconstruction_cost: Should return one cost per example (row) + + :todo: Default noise level for all daa levels + """ super(DenoisingAA, self).__init__()