- Hands-On Neural Network Programming with C#
- Matt R. Cole
- 38字
- 2025-02-24 05:32:27
Exporting the network
This function is where we export our network. To us, exporting means serializing the data into a JSON human-readable format, as follows:
public NNManager ExportNetwork()
{
Console.WriteLine("\tExporting Network...");
ExportHelper.ExportNetwork(_network);
Console.WriteLine("\t**Exporting Complete!**", Color.Green);
return this;
}