Monopoly.Classes.Player.getNeural C# (CSharp) Method

getNeural() public method

public getNeural ( ) : NeuronDotNet.Core.Network
return NeuronDotNet.Core.Network
        public virtual NeuronDotNet.Core.Network getNeural()
        {
            LinearLayer inputLayer = new LinearLayer(23);
            SigmoidLayer outputLayer = new SigmoidLayer(100);
            return new BackpropagationNetwork(inputLayer, outputLayer);
        }