Vector expected = new Vector(2);
expected.setValue(0, 0.321);
expected.setValue(1, 0.368);
Vector result1 = layer1.feedForward(inputVector1);
Assert.assertEquals(expected.getValue(0), result1.getValue(0), 0.001);
Assert.assertEquals(expected.getValue(1), result1.getValue(1), 0.001);
Matrix weightMatrix2 = new Matrix(1, 2);
weightMatrix2.set(0, 0, 0.09);