Mercurial > pylearn
view test_mlp.py @ 181:1b06bc2c3ca9
fixed c_code for the ops in nnet_ops.py
author | Olivier Breuleux <breuleuo@iro.umontreal.ca> |
---|---|
date | Tue, 13 May 2008 15:49:39 -0400 |
parents | 2698c0feeb54 |
children | 25d0a0c713da |
line wrap: on
line source
from mlp import * import dataset def test0(): nnet = OneHiddenLayerNNetClassifier(10,2,.001,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) output_ds = fprop(training_set) for fieldname in output_ds.fieldNames(): print fieldname+"=",output_ds[fieldname] test0()