Hands-On Neural Network Programming with C#
上QQ阅读APP看书,第一时间看更新

Exporting the network

Export the current network information, as follows:

public NNManager ExportNetwork()
{
Console.WriteLine("\tExporting Network...");
ExportHelper.ExportNetwork(_network);
Console.WriteLine("\t**Exporting Complete!**", Color.Green);
return this;
}