annotate algorithms/layer.py @ 498:2be795cc5c3a

More documentation + todo
author Joseph Turian <turian@gmail.com>
date Tue, 28 Oct 2008 12:25:15 -0400
parents
children c7ce66b4e8f4
rev   line source
498
2be795cc5c3a More documentation + todo
Joseph Turian <turian@gmail.com>
parents:
diff changeset
1 """
2be795cc5c3a More documentation + todo
Joseph Turian <turian@gmail.com>
parents:
diff changeset
2 @todo: Make a layer class, with standardized names:
2be795cc5c3a More documentation + todo
Joseph Turian <turian@gmail.com>
parents:
diff changeset
3 input, cost, lr, and update
2be795cc5c3a More documentation + todo
Joseph Turian <turian@gmail.com>
parents:
diff changeset
4 (a Method called update, to be more precise, whose first argument is the input)
2be795cc5c3a More documentation + todo
Joseph Turian <turian@gmail.com>
parents:
diff changeset
5
2be795cc5c3a More documentation + todo
Joseph Turian <turian@gmail.com>
parents:
diff changeset
6 Modules like pylearn.algorithms.logistic_regression.Module_Nclass and
2be795cc5c3a More documentation + todo
Joseph Turian <turian@gmail.com>
parents:
diff changeset
7 pylearn.algorithms.???.Bin_Regressor should inherit from Layer and
2be795cc5c3a More documentation + todo
Joseph Turian <turian@gmail.com>
parents:
diff changeset
8 Stacker should assume Layer.
2be795cc5c3a More documentation + todo
Joseph Turian <turian@gmail.com>
parents:
diff changeset
9 """