# HG changeset patch # User James Bergstra # Date 1225409950 14400 # Node ID da916044454cad88ab60f6903867c23911e5ae3c # Parent 6fe692b93b691a37f01bcd5c7fa6263edbd74363 added useless comments diff -r 6fe692b93b69 -r da916044454c algorithms/daa.py --- 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__()