Mercurial > pylearn
changeset 925:6be337c30928
use new import path
author | Frederic Bastien <nouiz@nouiz.org> |
---|---|
date | Wed, 31 Mar 2010 15:17:40 -0400 |
parents | be420f1836bb |
children | 995b50f0c2ee |
files | pylearn/shared/layers/lecun1998.py pylearn/shared/layers/rust2005.py |
diffstat | 2 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/pylearn/shared/layers/lecun1998.py Tue Mar 30 13:46:08 2010 -0400 +++ b/pylearn/shared/layers/lecun1998.py Wed Mar 31 15:17:40 2010 -0400 @@ -8,8 +8,8 @@ from theano import tensor from theano.compile import shared, pfunc -from theano.sandbox.conv import ConvOp -from theano.sandbox.downsample import DownsampleFactorMax +from theano.tensor.nnet.conv import ConvOp +from theano.tensor.signal.downsample import DownsampleFactorMax from pylearn.shared.layers.util import update_locals from pylearn.shared.layers.squash import squash
--- a/pylearn/shared/layers/rust2005.py Tue Mar 30 13:46:08 2010 -0400 +++ b/pylearn/shared/layers/rust2005.py Wed Mar 31 15:17:40 2010 -0400 @@ -28,7 +28,7 @@ from theano.compile import shared from theano.sandbox.softsign import softsign from theano.tensor.nnet import softplus -from theano.sandbox.conv import ConvOp +from theano.tensor.nnet.conv import ConvOp from pylearn.shared.layers.util import update_locals, add_logging