AIMA.Test.Core.Unit.Learning.Learners.DecisionTreeTest.testStumpCreationForSpecifiedAttributeValuePair C# (CSharp) Метод

testStumpCreationForSpecifiedAttributeValuePair() приватный Метод

private testStumpCreationForSpecifiedAttributeValuePair ( ) : void
Результат void
        public void testStumpCreationForSpecifiedAttributeValuePair()
        {
            DataSet ds = DataSetFactory.getRestaurantDataSet();
            List<String> unmatchedValues = new List<String>();
            unmatchedValues.Add(NO);
            DecisionTree dt = DecisionTree.getStumpFor(ds, "alternate", YES, YES,
                    unmatchedValues, NO);
            Assert.IsNotNull(dt);
        }