• Stars
    star
    198
  • Rank 195,997 (Top 4 %)
  • Language
    C#
  • Created over 8 years ago
  • Updated about 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Simple neural network implemented in C# for Unity3D

Unity3D Neural Network

This is a C# implementation of a simple feedforward neural network.

This neural network can be used to solve any problems where an input vector of values from 0-1 results in an output vector of values from 0-1.
To use a neural network you must create a Network and a Dataset

private static NeuralNetwork.Network net;
private static List<DataSet> dataSets; 

//Initialize Network and Dataset
void Awake()
{
    int numInputs, numHiddenLayers, numOutputs;
    net = new NeuralNetwork.Network(numInputs, numHiddenLayers, numOutputs);
    dataSets = new List<DataSet>();
}

You can add data points to the dataset using

dataSets.Add(new DataSet(double[] inputs, double[] desiredOutputs));

Train the network with by calling

net.Train(dataSets, MinimumError);

MinimumError is the mimimum desired error for the network (The network will run the same dataset multiple times if it does not have enough datapoints to hit the minimum error with one trial).

Finally, you can test an input

double[] testInput = {0, 1, 0.2, 0.13};
double[] results = net.Compute(testInput);



Sample Scenes

Color picking

This project has a demo scene showing the power of the network by using it to determine which color text is easiest to read on randomly colored backgrounds.
Alt text

Users can select the color easiest to read, and after a few trials ( > 10 ) the Neural Network will show its pick for 'easiest to read color' for the given background.

Jump

Here's another demo scene. Train the network by jumping from platform to platform (Use space). After some collected datasets the network will decide if the player has to jump or not. Image