# HG changeset patch # User Olivier Delalleau # Date 1243446853 14400 # Node ID 9b371879c6aba9b3c29c7f422abafd64880bbd65 # Parent 0344ac148585c81f4fc7c9131e11bf2afb5f2607 Fixed some imports diff -r 0344ac148585 -r 9b371879c6ab pylearn/algorithms/kernel_regression.py --- a/pylearn/algorithms/kernel_regression.py Wed May 27 13:53:50 2009 -0400 +++ b/pylearn/algorithms/kernel_regression.py Wed May 27 13:54:13 2009 -0400 @@ -2,7 +2,7 @@ Implementation of kernel regression: """ -from pylearn.learner import OfflineLearningAlgorithm +from pylearn.old_dataset.learner import OfflineLearningAlgorithm from theano import tensor as T from theano.tensor.nnet import prepend_1_to_each_row from theano.scalar import as_scalar diff -r 0344ac148585 -r 9b371879c6ab pylearn/algorithms/linear_regression.py --- a/pylearn/algorithms/linear_regression.py Wed May 27 13:53:50 2009 -0400 +++ b/pylearn/algorithms/linear_regression.py Wed May 27 13:54:13 2009 -0400 @@ -4,7 +4,7 @@ the use of theano. """ -from pylearn.learner import OfflineLearningAlgorithm,OnlineLearningAlgorithm +from pylearn.old_dataset.learner import OfflineLearningAlgorithm,OnlineLearningAlgorithm from theano import tensor as T from theano.tensor.nnet import prepend_1_to_each_row from theano.scalar import as_scalar