Accord.MachineLearning.BootstrapValues.BootstrapValues C# (CSharp) Method

BootstrapValues() public method

public BootstrapValues ( double trainingValue, double validationValue ) : System
trainingValue double The training value for the model.
validationValue double The validation value for the model.
return System
        public BootstrapValues(double trainingValue, double validationValue)
        {
            this.TrainingValue = trainingValue;
            this.ValidationValue = validationValue;
        }

Same methods

BootstrapValues::BootstrapValues ( double trainingValue, double trainingVariance, double validationValue, double validationVariance ) : System
BootstrapValues