I just started using CNTK C# API and, so far, I have had no problem loading files if I write them in a way that I can read using full matrix readers, e.g., the MNIST tutorial example:
MinibatchSource minibatchSourceExistModel = MinibatchSource.TextFormatMinibatchSource( Path.Combine(ImageDataFolder, "MNIST_test.ctk"), streamConfigurations);
I am confused with sparse data though. It would help to have a C# reference with examples of all possible forms of input to load using the MinibatchSource.
Do I need to save all the zeroes in the file? Is there an example file showing how to write sparse data and load it to use as MinibatchSource input?
Thanks