changeset 732:9b371879c6ab

Fixed some imports
author Olivier Delalleau <delallea@iro>
date Wed, 27 May 2009 13:54:13 -0400
parents 0344ac148585
children b39a9f02ef01
files pylearn/algorithms/kernel_regression.py pylearn/algorithms/linear_regression.py
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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