Unverified Commit 8055b8d1 authored by ncoder-1's avatar ncoder-1 Committed by GitHub
Browse files

Update dnn_introduction_ex.cpp (#2066)

Changed C-style cast to static_cast.
parent 253745d2
...@@ -138,7 +138,7 @@ int main(int argc, char** argv) try ...@@ -138,7 +138,7 @@ int main(int argc, char** argv) try
} }
cout << "training num_right: " << num_right << endl; cout << "training num_right: " << num_right << endl;
cout << "training num_wrong: " << num_wrong << 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 // 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. // MNIST is an easy dataset, we should see at least 99% accuracy.
...@@ -155,7 +155,7 @@ int main(int argc, char** argv) try ...@@ -155,7 +155,7 @@ int main(int argc, char** argv) try
} }
cout << "testing num_right: " << num_right << endl; cout << "testing num_right: " << num_right << endl;
cout << "testing num_wrong: " << num_wrong << 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 // Finally, you can also save network parameters to XML files if you want to do
...@@ -167,4 +167,3 @@ catch(std::exception& e) ...@@ -167,4 +167,3 @@ catch(std::exception& e)
{ {
cout << e.what() << endl; cout << e.what() << endl;
} }
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment