Skip to content

Commit

Permalink
remove lines, udpate comment
Browse files Browse the repository at this point in the history
  • Loading branch information
castrong committed Jun 30, 2020
1 parent c1fca81 commit 1da61b5
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions test/write_nnet_test.jl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# Read back in the network
new_nnet = NeuralVerification.read_nnet(network_file)

# Test that all weights and biases are the same
# Test that all weights, biases, and activations are the same
@test new_nnet.layers[1].weights == l1.weights;
@test new_nnet.layers[1].bias == l1.bias;
@test new_nnet.layers[1].activation == l1.activation;
Expand All @@ -27,7 +27,4 @@
@test new_nnet.layers[3].weights == l3.weights;
@test new_nnet.layers[3].bias == l3.bias;
@test new_nnet.layers[3].activation == l3.activation;



end

0 comments on commit 1da61b5

Please sign in to comment.