Skip to content

Commit

Permalink
Fix assertion in GravesBidirectionalLSTMTest.java
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexDBlack committed May 1, 2016
1 parent f81c5d9 commit de36897
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ public void testSimpleForwardsAndBackwardsActivation() {
final INDArray activation3Reverse = activation3.dup();
reverseColumnsInPlace(activation3Reverse);

assertArrayEquals(activation3Reverse.data().asFloat(),activation1.data().asFloat(),1e-5f);
assertEquals(activation3Reverse,activation1);
assertArrayEquals(activation3Reverse.shape(),activation1.shape());

//test backprop now
Expand Down

0 comments on commit de36897

Please sign in to comment.