A simple multilayer perceptron library for C#.
Originally made to be used within Unity3D, but useable anywhere. Extracted from one of my school projects (flappy-pos-logic).
using Fylipp.MlpCs;
var network = Network.Generate(new []{2, 2, 1});
var output = network.Calculate(3.5, -1.2); // output = double[]
Download the latest release from the releases tab.
To use it in Unity3D drag the .dll
into the Assets
folder.
MIT.