changeset 488:e06666ac32d5

Added another todo
author Joseph Turian <turian@gmail.com>
date Tue, 28 Oct 2008 02:39:00 -0400
parents 94a4c5b7293b
children bb6bdd3b7ff3
files algorithms/daa.py
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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):