AIMA.Core.Learning.Neural.NNExample.NNExample C# (CSharp) Method

NNExample() public method

public NNExample ( List normalizedInput, List normalizedTarget ) : System
normalizedInput List
normalizedTarget List
return System
        public NNExample(List<Double> normalizedInput, List<Double> normalizedTarget)
        {
            this.normalizedInput = normalizedInput;
            this.normalizedTarget = normalizedTarget;
        }