Package aima.test.core.unit.learning.framework

Examples of aima.test.core.unit.learning.framework.MockDataSetSpecification


    // 3 examples have classification = "yes" and one ,"no"
    ds2.add(ds.getExample(0));
    ds2.add(ds.getExample(1));// "no"
    ds2.add(ds.getExample(2));
    ds2.add(ds.getExample(3));
    ds2.setSpecification(new MockDataSetSpecification("will_wait"));

    learner.train(ds2);
    Assert.assertEquals("Yes", learner.predict(ds.getExample(1)));
  }
View Full Code Here

TOP

Related Classes of aima.test.core.unit.learning.framework.MockDataSetSpecification

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.