Skip to content

Commit eb0ee05

Browse files
authored
Merge pull request #11 from notoraptor/test-pr-5336
Remove printing in test.
2 parents 6b50493 + 20dc8cb commit eb0ee05

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

theano/scan_module/tests/test_scan.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5491,5 +5491,4 @@ def _active(x, pre_h):
54915491
gW_x = theano.tensor.grad(cost, W_x)
54925492
updates = [(W_x, W_x - 0.1 * gW_x)]
54935493
f = theano.function([X], outputs=cost, updates=updates)
5494-
test = f(numpy.random.rand(10, in_size).astype(X.dtype))
5495-
print(test)
5494+
f(numpy.random.rand(10, in_size).astype(X.dtype))

0 commit comments

Comments
 (0)