mirror of https://github.com/davisking/dlib.git
Update dnn_introduction_ex.cpp (#2066)
Changed C-style cast to static_cast.
This commit is contained in:
parent
253745d29f
commit
8055b8d19a
|
@ -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…
Reference in New Issue