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

Exporting a dataset

This function is where we export our dataset information. As with exporting the network, this will be done in JSON human readable format:

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