Esempio n. 1
0
        public double GetOutput(Dataset.RowForwardIndexer.Row featureBins, int prefix)
        {
            double output = 0.0;

            for (int h = 0; h < prefix; h++)
            {
                output += _trees[h].GetOutput(featureBins);
            }
            return(output);
        }
Esempio n. 2
0
 public double GetOutput(Dataset.RowForwardIndexer.Row featureBins)
 {
     return(GetOutput(featureBins, _trees.Count));
 }