Mercurial > ift6266
changeset 196:168aae8a6419
Fix import errors (conv and downsample are no longer in sandbox).
author | Arnaud Bergeron <abergeron@gmail.com> |
---|---|
date | Tue, 02 Mar 2010 18:03:09 -0500 |
parents | 92c9a6c48ce9 |
children | 9116cfe8e4ab |
files | baseline/conv_mlp/convolutional_mlp.py |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/baseline/conv_mlp/convolutional_mlp.py Tue Mar 02 18:01:22 2010 -0500 +++ b/baseline/conv_mlp/convolutional_mlp.py Tue Mar 02 18:03:09 2010 -0500 @@ -26,7 +26,8 @@ import theano.sandbox.softsign import pylearn.datasets.MNIST from pylearn.io import filetensor as ft -from theano.sandbox import conv, downsample +from theano.tensor.signal import downsample +from theano.tensor.nnet import conv class LeNetConvPoolLayer(object):