Skip to content

Commit 543b2e3

Browse files
authored
fixed useful import
1 parent 9ce9752 commit 543b2e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/vanilla_mnist_perceptron_mlp.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import Mariana.regularizations as MR
99
import Mariana.scenari as MS
1010

11-
from Mariana.examples.useful import load_mnist
11+
from useful import load_mnist
1212

1313
"""
1414
This is the equivalent the theano MLP from here: http://deeplearning.net/tutorial/mlp.html
@@ -73,4 +73,4 @@ def MLP(ls, cost) :
7373
else :
7474
print "\tvalidation score:", res["score"], "best:", bestValScore
7575

76-
epoch += 1
76+
epoch += 1

0 commit comments

Comments
 (0)