AIMA.Core.Learning.Learners.AdaBoostLearner.scoreOfValue C# (CSharp) Method

scoreOfValue() private method

private scoreOfValue ( String targetValue, Table table, List learners ) : double
targetValue String
table Table
learners List
return double
        private double scoreOfValue(String targetValue,
                Table<String, Learner, Double> table, List<Learner> learners) {
		double score = 0.0;
		foreach (Learner l in learners) {
			score += table.get(targetValue, l);
		}
		return score;
	}
    }