changeset 573:5d1228f99caa

fix import.
author Frederic Bastien <bastienf@iro.umontreal.ca>
date Thu, 04 Dec 2008 10:56:13 -0500
parents 96221aa02fcb
children 220044be9fd8
files pylearn/algorithms/sgd.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/pylearn/algorithms/sgd.py	Mon Dec 01 16:16:21 2008 -0500
+++ b/pylearn/algorithms/sgd.py	Thu Dec 04 10:56:13 2008 -0500
@@ -4,7 +4,7 @@
 from theano.compile import module
 from theano import tensor as T
 
-from .minimizer import minimizer_factory
+from minimizer import minimizer_factory
 
 class StochasticGradientDescent(module.FancyModule):
     """Fixed stepsize gradient descent"""