Mercurial > pylearn
comparison linear_regression.py @ 408:5175c564e37a
corrected import as a file moved to sandbox
author | Frederic Bastien <bastienf@iro.umontreal.ca> |
---|---|
date | Mon, 14 Jul 2008 13:48:36 -0400 |
parents | 273e5c03003e |
children | 43d9aa93934e |
comparison
equal
deleted
inserted
replaced
407:b9f545594207 | 408:5175c564e37a |
---|---|
4 the use of theano. | 4 the use of theano. |
5 """ | 5 """ |
6 | 6 |
7 from pylearn.learner import OfflineLearningAlgorithm | 7 from pylearn.learner import OfflineLearningAlgorithm |
8 from theano import tensor as T | 8 from theano import tensor as T |
9 from theano.others_ops import prepend_1_to_each_row | 9 from theano.sandbox.others_ops import prepend_1_to_each_row |
10 from theano.scalar import as_scalar | 10 from theano.scalar import as_scalar |
11 from common.autoname import AutoName | 11 from common.autoname import AutoName |
12 import theano | 12 import theano |
13 import numpy | 13 import numpy |
14 | 14 |