Skip to content

Commit

Permalink
fixed comment
Browse files Browse the repository at this point in the history
  • Loading branch information
castrong committed Jun 30, 2020
1 parent e2127e9 commit 3707c11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/util.jl
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ function write_nnet(fname::String, network::Network)
# Write the current bias
bias = layer.bias
for i = 1:length(bias)
write(f, @sprintf("%.10e,", bias[i])) #five digits written. More can be used, but that requires more space.
write(f, @sprintf("%.10e,", bias[i])) # ten digits written. More can be used, but that requires more space.
write(f, "\n")
end

Expand Down

0 comments on commit 3707c11

Please sign in to comment.