# HG changeset patch # User Joseph Turian # Date 1225175940 14400 # Node ID e06666ac32d5dd70cb5719fcc0198b63951279cf # Parent 94a4c5b7293b0d391740a64c0e9d3ad4c4d85225 Added another todo diff -r 94a4c5b7293b -r e06666ac32d5 algorithms/daa.py --- a/algorithms/daa.py Tue Oct 28 02:21:50 2008 -0400 +++ b/algorithms/daa.py Tue Oct 28 02:39:00 2008 -0400 @@ -12,6 +12,7 @@ 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 """ super(DenoisingAA, self).__init__() @@ -131,6 +132,7 @@ class SigmoidXEDenoisingAA(DenoisingAA): """ @todo: Merge this into the above. + @todo: Default noise level for all daa levels """ def build_corrupted_input(self):