Skip to content

Commit 2d2d0d2

Browse files
committed
enable the convolutional_mlp.py for the buildbot by lowering the number of nkern to have it run in a decent time.
1 parent d30de49 commit 2d2d0d2

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

code/test.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#import convolutional_mlp, dbn, logistic_cg, logistic_sgd, mlp, rbm, SdA_loops, SdA
2-
import convolutional_mlp, logistic_cg, logistic_sgd, mlp, SdA_loops, SdA
2+
import convolutional_mlp, logistic_cg, logistic_sgd, mlp
33
from nose.plugins.skip import SkipTest
44
#TODO: dbn, rbm, SdA, SdA_loops, convolutional_mlp
55
def test_logistic_sgd():
@@ -9,8 +9,7 @@ def test_logistic_cg():
99
def test_mlp():
1010
mlp.sgd_optimization_mnist(n_iter=5)
1111
def test_convolutional_mlp():
12-
raise SkipTest('Implementation not finished')
13-
convolutional_mlp.evaluate_lenet5(n_iter=5)
12+
convolutional_mlp.evaluate_lenet5(n_iter=5,nkerns=[5,5])
1413
def test_dbn():
1514
raise SkipTest('Implementation not finished')
1615
def test_rbm():

0 commit comments

Comments
 (0)