Update dnn_introduction_ex.cpp (#2066)

Changed C-style cast to static_cast.
pull/2076/head
ncoder-1 4 years ago committed by GitHub
parent 253745d29f
commit 8055b8d19a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -138,7 +138,7 @@ int main(int argc, char** argv) try
}
cout << "training num_right: " << num_right << endl;
cout << "training num_wrong: " << num_wrong << endl;
cout << "training accuracy: " << num_right/(double)(num_right+num_wrong) << endl;
cout << "training accuracy: " << num_right / static_cast<double>(num_right + num_wrong) << endl;
// Let's also see if the network can correctly classify the testing images. Since
// MNIST is an easy dataset, we should see at least 99% accuracy.
@ -155,7 +155,7 @@ int main(int argc, char** argv) try
}
cout << "testing num_right: " << num_right << endl;
cout << "testing num_wrong: " << num_wrong << endl;
cout << "testing accuracy: " << num_right/(double)(num_right+num_wrong) << endl;
cout << "testing accuracy: " << num_right / static_cast<double>(num_right + num_wrong) << endl;
// Finally, you can also save network parameters to XML files if you want to do
@ -167,4 +167,3 @@ catch(std::exception& e)
{
cout << e.what() << endl;
}

Loading…
Cancel
Save