comparison learner.py @ 172:fb4837eed1a6

fixed import of AbstractFunction
author Yoshua Bengio <bengioy@iro.umontreal.ca>
date Tue, 13 May 2008 14:28:47 -0400
parents 4803cb76e26b
children 69759976b3ac
comparison
equal deleted inserted replaced
171:895b4b60f5e8 172:fb4837eed1a6
1 1
2 from dataset import AttributesHolder,AbstractFunction,ApplyFunctionDataSet,DataSet,CachedDataSet 2 from exceptions import *
3 from dataset import AttributesHolder,ApplyFunctionDataSet,DataSet,CachedDataSet
3 import theano 4 import theano
4 from theano import compile 5 from theano import compile
5 from theano import tensor as t 6 from theano import tensor as t
6 7
7 class Learner(AttributesHolder): 8 class Learner(AttributesHolder):