Developing a C# wrapper to help developer easily create and train deep neural network models. I am working on enhancing the interface to load data, build model, train and predict.
GPU and CPU Version: https://www.nuget.org/packages/SiaNet
For better performance on CPU please use CPU only version. CPU Only Version: https://www.nuget.org/packages/SiaNet.CPUOnly/
DataFrame frame = new DataFrame();
frame.LoadFromCsv(trainFile);
var xy = frame.SplitXY(14, new[] { 1, 13 });
traintest = xy.SplitTrainTest(0.25);
Downloader.DownloadSample(SampleDataset.MNIST);
var samplePath = Downloader.GetSamplePath(SampleDataset.MNIST);
train = ImageDataGenerator.FlowFromText(samplePath.Train);
validation = ImageDataGenerator.FlowFromText(samplePath.Test);
model = new Sequential();
model.Add(new Dense(13, 12, OptActivations.ReLU));
model.Add(new Dense(13, OptActivations.ReLU));
model.Add(new Dense(1));
model.Add(new Conv2D(Tuple.Create(imageDim[0], imageDim[1], imageDim[2]), 4, Tuple.Create(3, 3), Tuple.Create(2, 2), activation: OptActivations.None, weightInitializer: OptInitializers.Xavier, useBias: true, biasInitializer: OptInitializers.Ones));
model.Add(new MaxPool2D(Tuple.Create(3, 3)));
model.Add(new Conv2D(8, Tuple.Create(3, 3), Tuple.Create(2, 2), activation: OptActivations.None, weightInitializer: OptInitializers.Xavier));
model.Add(new MaxPool2D(Tuple.Create(3, 3)));
model.Add(new Dense(numClasses));
model.OnEpochEnd += Model_OnEpochEnd;
model.OnTrainingEnd += Model_OnTrainingEnd;
model.OnBatchEnd += Model_OnBatchEnd;
model.Compile(OptOptimizers.Adam, OptLosses.MeanSquaredError, OptMetrics.MAE, Regulizers.RegL2(0.1));
model.Train(traintest.Train, 64, 200, traintest.Test);
API Documentation: https://deepakkumar1984.github.io/SiaNet/
- XOR Example (Build dataset): https://github.com/deepakkumar1984/SiaNet/wiki/Example-Build-Dataset---XOR-Gate
- Housing Regression: https://github.com/deepakkumar1984/SiaNet/wiki/Example---Housing-Regression-Problem
- MNIST Training: https://github.com/deepakkumar1984/SiaNet/wiki/Example---MNIST-Training
- Image Classification: https://github.com/deepakkumar1984/SiaNet/wiki/Example---Image-Classification
- Object Detection: https://github.com/deepakkumar1984/SiaNet/wiki/Example---Object-Detection
This project exists thanks to all the people who contribute. [Contribute].
Thank you to all our backers! 🙏 [Become a backer]
Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [Become a sponsor]