Skip to content
/ mlp-cs Public

๐Ÿ“š A basic C# MLP/ANN library

License

Notifications You must be signed in to change notification settings

Fylipp/mlp-cs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

1 Commit
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

mlp-cs

Build Status

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).

Usage

using Fylipp.MlpCs;

var network = Network.Generate(new []{2, 2, 1});
var output = network.Calculate(3.5, -1.2); // output = double[]

Integration

Download the latest release from the releases tab.

To use it in Unity3D drag the .dll into the Assets folder.

License

MIT.