Package fr.lip6.jkernelmachines.test.classifier

Source Code of fr.lip6.jkernelmachines.test.classifier.DoubleSGDQNTest

/**
    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.classifier;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;

import java.util.List;

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

import fr.lip6.jkernelmachines.classifier.DoubleSGDQN;
import fr.lip6.jkernelmachines.type.TrainingSample;
import fr.lip6.jkernelmachines.util.generators.GaussianGenerator;

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

  List<TrainingSample<double[]>> train;
  DoubleSGDQN svm;
 
  /**
   * @throws java.lang.Exception
   */
  @Before
  public void setUp() throws Exception {
    GaussianGenerator g = new GaussianGenerator(10, 5.0f, 1.0);
    train = g.generateList(10);
   
    svm = new DoubleSGDQN();
  }

  /**
   * Test method for {@link fr.lip6.jkernelmachines.classifier.DoubleSGDQN#train(java.util.List)}.
   */
  @Test
  public final void testTrainListOfTrainingSampleOfdouble() {
    svm.train(train);
    for(TrainingSample<double[]> t : train) {
      double v = t.label * svm.valueOf(t.sample);
      assertTrue(v > 0);
    }
  }

  /**
   * Test method for {@link fr.lip6.jkernelmachines.classifier.DoubleSGDQN#setLoss(int)}.
   */
  @Test
  public final void testSetLoss() {
    svm.setLoss(DoubleSGDQN.HINGELOSS);
    assertEquals(DoubleSGDQN.HINGELOSS, svm.getLoss());
   
    svm.setLoss(DoubleSGDQN.LOGLOSS);
    assertEquals(DoubleSGDQN.LOGLOSS, svm.getLoss());
   
    svm.setLoss(DoubleSGDQN.LOGLOSSMARGIN);
    assertEquals(DoubleSGDQN.LOGLOSSMARGIN, svm.getLoss());
   
    svm.setLoss(DoubleSGDQN.SMOOTHHINGELOSS);
    assertEquals(DoubleSGDQN.SMOOTHHINGELOSS, svm.getLoss());
   
    svm.setLoss(DoubleSGDQN.SQUAREDHINGELOSS);
    assertEquals(DoubleSGDQN.SQUAREDHINGELOSS, svm.getLoss());
  }

  /**
   * Test method for {@link fr.lip6.jkernelmachines.classifier.DoubleSGDQN#setLambda(double)}.
   */
  @Test
  public final void testSetLambda() {
    svm.setLambda(1e-3);
    assertEquals(1e-3, svm.getLambda(), 1e-15);
  }

  /**
   * Test method for {@link fr.lip6.jkernelmachines.classifier.DoubleSGDQN#setEpochs(int)}.
   */
  @Test
  public final void testSetEpochs() {
    svm.setEpochs(10);
    assertEquals(10, svm.getEpochs());
  }

  /**
   * Test method for {@link fr.lip6.jkernelmachines.classifier.DoubleSGDQN#setNormalize(boolean)}.
   */
  @Test
  public final void testSetNormalize() {
    svm.setNormalize(true);
    assertTrue(svm.isNormalize());
  }

  /**
   * Test method for {@link fr.lip6.jkernelmachines.classifier.DoubleSGDQN#setC(double)}.
   */
  @Test
  public final void testSetC() {
    svm.setC(10.0);
    assertEquals(10.0, svm.getC(), 1e-15);
  }

}
TOP

Related Classes of fr.lip6.jkernelmachines.test.classifier.DoubleSGDQNTest

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.