Encog.Engine.Data.BasicEngineData.BasicEngineData C# (CSharp) Method

BasicEngineData() public method

Construct the object with only input. If this constructor is used, then unsupervised training is being used.
public BasicEngineData ( double input ) : System
input double The input to the neural network.
return System
        public BasicEngineData(double[] input)
        {
            this.input = input;
            this.ideal = null;
        }

Same methods

BasicEngineData::BasicEngineData ( double input, double ideal ) : System