/* Last edited on 2013-01-04 17:03:59 by stolfilocal */ package JKernelMachines; import java.io.Serializable; /** * Simple class of training sample that contains the generic of sample and the associated label. * @author dpicard * * @param */ public class TrainingSample implements Serializable { /** * */ private static final long serialVersionUID = 874733576041102410L; public T sample; public int label; public TrainingSample(T t, int l) { sample = t; label = l; } }