mirror of
https://github.com/davisking/dlib.git
synced 2024-11-01 10:14:53 +08:00
Added a note about exporting to XML.
This commit is contained in:
parent
482c2db7ba
commit
70b885eb0b
@ -157,6 +157,11 @@ int main(int argc, char** argv) try
|
||||
cout << "testing num_wrong: " << num_wrong << endl;
|
||||
cout << "testing accuracy: " << num_right/(double)(num_right+num_wrong) << endl;
|
||||
|
||||
|
||||
// Finally, you can also save network parameters to XML files if you want to do
|
||||
// something with the network in another tool. For example, you could use dlib's
|
||||
// tools/convert_dlib_nets_to_caffe to convert the network to a caffe model.
|
||||
net_to_xml(net, "lenet.xml");
|
||||
}
|
||||
catch(std::exception& e)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user