CSharpNet 3.7.0

dotnet add package CSharpNet --version 3.7.0
NuGet\Install-Package CSharpNet -Version 3.7.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CSharpNet" Version="3.7.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CSharpNet --version 3.7.0
#r "nuget: CSharpNet, 3.7.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install CSharpNet as a Cake Addin
#addin nuget:?package=CSharpNet&version=3.7.0

// Install CSharpNet as a Cake Tool
#tool nuget:?package=CSharpNet&version=3.7.0

CSharpNet

simple implementation of Neural Network with C#.

Descriptions

With this library you can easily make a neural network and train it with data and predict output values.

  • Note that this is very simple library and does not offer all the features that other libraries have.
  • Obviously, the accuracy and efficiency of the neural network you build is completely dependent on the quality of the data you use.

Usage

Installation

You can search the package name in NuGet Manager (CSharpNet), or use the commands below in package manager console. The installation contains two parts, the first is the main body:

### Install CSharpNet
PM> Install-Package CSharpNet

Two simple examples are given here to introduce the basic usage of CSharpNet. As you can see, it's easy to write C# code.

Road map to work with library:

  • Create a neural network with 3 layers.
    • First layer has 2 neurons
    • Second layer has 3 neurons
    • Third layer has 1 neuron (which is final output of neural network)
  • FeedForward operation
    • this method can use for prediction.
  • Backpropagate operation
  • Train operation
  • Save model
  • load model

Arrange variables

  • Create an array of type int to define layers and their neurons:
var layers = new int[3] { 2, 3, 1 };
  • Create a variable to define learning rate of neural network:
var learningRate = 0.1;
  • Create an instance of class DeepNetBuilder
var nn = new DeepNetBuilder(layers, learningRate);

Now you have a neural network, ready to learn everything you want.

Feed data to neural network

Now you can use FeedForward method and feed your input(s) data to neural network for calculate output(s).

  • Predict output(s) with specific input(s)
var inputs = new double[2] { 1, 0 };
var output = nn.FeedForward(inputs);

Backpropagate operation

This operation is the main part of train operation. In this example:

  • the number of inputs should be 2 because the number of neural network inputs is 2.
  • And the number of expected outputs should be 1 because the number of neural network outputs is 1.
var inputs = new double[2] { 1, 0 };
var expectedOutput = new double[1] { 1 };
nn.Backpropagate(inputs, expectedOutput);

Train operation

Unlike the previous method, this method takes 2 list of data as input, each record in the first list is an array of type double with length equal to the number of the neurons in the input layer of the neural network, The second list length should be equal to the first list and each record of the list is an array of type double with length equal to the number of the neurons in the output layer of the neural network.

var inputs = new List<double[]>()
	{
		new double[2] { 1, 1 },
        	new double[2] { 2, 2 },
        	new double[2] { 3, 3 },
	};
var targets = new List<double[]>()
	{
		new double[1] { 2 },
        	new double[1] { 4 },
        	new double[1] { 6 },
	};
	
nn.Train(inputs, targets, iterationNumber: 1000, threshold: 0.1);
  • This method run train on the data for 1000 iterations and threshold shows acceptable error value.

Save model

To save model and use it again after a while, you can use Save method. It works very easy and you should give it a path to save model as (json) file.

  • Note that the path should contain file name and (json) extension.
var filePath = ".\\Models\\carTest.json";
nn.Save(filePath);

Load model

To load load model for use or train it again, you can use LoadModel method. It loads and cast (json) file to an object of type JsonDeepNetModel as you can see in the repository.

  • Note that the path should contain file name and (json) extension.
var filePath = ".\\Models\\carTest.json";
var nn = DeepNetBuilder.LoadModel(filePath );

Contact

Follow me on LinkedIn.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.7.0 148 5/16/2023
3.6.3 118 5/2/2023
3.6.2 119 5/1/2023
3.6.0 149 4/6/2023
3.5.0 156 4/3/2023
3.2.2 152 4/3/2023
3.2.1 152 4/3/2023
3.2.0 161 4/3/2023
3.1.0 165 4/2/2023
3.0.0 155 4/2/2023
2.0.0 183 3/28/2023

Activation functions added.