Skip to content

Commit

Permalink
Removed print statement in test, and made slightly less stringent
Browse files Browse the repository at this point in the history
  • Loading branch information
williamjameshandley committed Feb 8, 2019
1 parent ae4ab20 commit b065aee
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/neuralnetworks/test_kerasnet.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,4 @@ def test_KerasNet():

# Test input has better than 5% accuracy
for i, l in enumerate(logL):
print(abs(p(params[i]) - l))
assert abs(p(params[i]) - l) < 0.5
assert abs(p(params[i]) - l) < 1.

0 comments on commit b065aee

Please sign in to comment.