Package fr.lip6.jkernelmachines.test.evaluation

Source Code of fr.lip6.jkernelmachines.test.evaluation.ApEvaluatorTest

/**
    This file is part of JkernelMachines.

    JkernelMachines is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    JkernelMachines is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with JkernelMachines.  If not, see <http://www.gnu.org/licenses/>.

    Copyright David Picard - 2013

*/
package fr.lip6.jkernelmachines.test.evaluation;

import static org.junit.Assert.assertEquals;

import java.util.List;

import org.junit.Before;
import org.junit.Test;

import fr.lip6.jkernelmachines.classifier.LaSVM;
import fr.lip6.jkernelmachines.evaluation.ApEvaluator;
import fr.lip6.jkernelmachines.kernel.typed.DoubleGaussL2;
import fr.lip6.jkernelmachines.type.TrainingSample;
import fr.lip6.jkernelmachines.util.generators.GaussianGenerator;

/**
* @author picard
*
*/
public class ApEvaluatorTest {

  List<TrainingSample<double[]>> train;
  LaSVM<double[]> svm;

  @Before
  public void setUp() throws Exception {
   
    GaussianGenerator g = new GaussianGenerator(10, 5.0f, 1.0);
    train = g.generateList(10);
   
    DoubleGaussL2 k = new DoubleGaussL2(1.0);
    svm = new LaSVM<double[]>(k);
  }

  /**
   * Test method for {@link fr.lip6.jkernelmachines.evaluation.ApEvaluator#evaluate()}.
   */
  @Test
  public final void testEvaluate() {
    ApEvaluator<double[]> ae = new ApEvaluator<double[]>();
    ae.setClassifier(svm);
    ae.setTrainingSet(train);
    ae.setTestingSet(train);
   
    ae.evaluate();
   
    assertEquals(1.0, ae.getScore(), 1e-15)
  }

}
TOP

Related Classes of fr.lip6.jkernelmachines.test.evaluation.ApEvaluatorTest

TOP
Copyright © 2018 www.massapi.com. 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.