# HG changeset patch # User Frederic Bastien # Date 1270063060 14400 # Node ID 6be337c30928df9bc6665e68f10fe6d3c4c54bc9 # Parent be420f1836bb8ba0619cc68d6e77be2a85360b6e use new import path diff -r be420f1836bb -r 6be337c30928 pylearn/shared/layers/lecun1998.py --- 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 diff -r be420f1836bb -r 6be337c30928 pylearn/shared/layers/rust2005.py --- 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