Mercurial > pylearn
view test_mlp.py @ 134:3f4e5c9bdc5e
Fixes to ApplyFunctionDataSet and other things to make learner and mlp work
author | Yoshua Bengio <bengioy@iro.umontreal.ca> |
---|---|
date | Fri, 09 May 2008 17:38:57 -0400 |
parents | b4657441dd65 |
children | 0d8e721cc63c |
line wrap: on
line source
from mlp import * import dataset def test0(): nnet = OneHiddenLayerNNetClassifier(10,3,.1,1000) training_set = dataset.ArrayDataSet(numpy.array([[0, 0, 0], [0, 1, 1], [1, 0, 1], [1, 1, 1]]), {'input':slice(2),'target':2}) fprop=nnet(training_set) print fprop(training_set) test0()