diff mlp.py @ 132:f6505ec32dc3

Updated documentation slightly
author Joseph Turian <turian@gmail.com>
date Thu, 08 May 2008 00:54:14 -0400
parents 4c2280edcaf5
children b4657441dd65
line wrap: on
line diff
--- a/mlp.py	Wed May 07 21:40:15 2008 -0400
+++ b/mlp.py	Thu May 08 00:54:14 2008 -0400
@@ -1,11 +1,14 @@
+"""
+A straightforward classicial feedforward
+one-hidden-layer neural net, with L2 regularization.
+This is one of the simplest example of L{Learner}, and illustrates
+the use of theano.
+"""
 
 from learner import *
 from theano import tensor as t
 from nnet_ops import *
 
-# this is one of the simplest example of learner, and illustrates
-# the use of theano
-
 
 class OneHiddenLayerNNetClassifier(OnlineGradientTLearner):
     """