Decide() public method

Computes a class-label decision for a given input.
public Decide ( double input ) : int
input double The input vector that should be classified into /// one of the possible classes.
return int
        /// <summary>
        /// <inheritdoc />
        /// </summary>
        public override void Run()
        {
            var inputs = data.GetSelectedInput(features);

            ClassificationOutputs = forest.Decide(inputs);
        }