本文整理汇总了Java中com.rapidminer.tools.math.kernels.DotKernel类的典型用法代码示例。如果您正苦于以下问题:Java DotKernel类的具体用法?Java DotKernel怎么用?Java DotKernel使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
DotKernel类属于com.rapidminer.tools.math.kernels包,在下文中一共展示了DotKernel类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: EvoSVMModel
import com.rapidminer.tools.math.kernels.DotKernel; //导入依赖的package包/类
/** Creates a classification model. */
public EvoSVMModel(ExampleSet exampleSet, List<SupportVector> supportVectors, Kernel kernel, double bias) {
super(exampleSet, ExampleSetUtilities.SetsCompareOption.ALLOW_SUPERSET,
ExampleSetUtilities.TypesCompareOption.ALLOW_SAME_PARENTS);
this.supportVectors = supportVectors;
if (supportVectors == null || supportVectors.size() == 0) {
throw new IllegalArgumentException("Null or empty support vector collection: not possible to predict values!");
}
this.kernel = kernel;
this.bias = bias;
if (this.kernel instanceof DotKernel) {
this.weights = new double[getNumberOfAttributes()];
for (int i = 0; i < getNumberOfSupportVectors(); i++) {
SupportVector sv = getSupportVector(i);
if (sv != null) {
double[] x = sv.getX();
double alpha = sv.getAlpha();
double y = sv.getY();
for (int j = 0; j < weights.length; j++) {
weights[j] += y * alpha * x[j];
}
} else {
this.weights = null;
break;
}
}
}
}
示例2: EvoSVMModel
import com.rapidminer.tools.math.kernels.DotKernel; //导入依赖的package包/类
/** Creates a classification model. */
public EvoSVMModel(ExampleSet exampleSet, List<SupportVector> supportVectors, Kernel kernel, double bias) {
super(exampleSet);
this.supportVectors = supportVectors;
if ((supportVectors == null) || (supportVectors.size() == 0))
throw new IllegalArgumentException("Null or empty support vector collection: not possible to predict values!");
this.kernel = kernel;
this.bias = bias;
if (this.kernel instanceof DotKernel) {
this.weights = new double[getNumberOfAttributes()];
for (int i = 0; i < getNumberOfSupportVectors(); i++) {
SupportVector sv = getSupportVector(i);
if (sv != null) {
double[] x = sv.getX();
double alpha = sv.getAlpha();
double y = sv.getY();
for (int j = 0; j < weights.length; j++) {
weights[j] += y * alpha * x[j];
}
} else {
this.weights = null;
break;
}
}
}
}
示例3: getKernel
import com.rapidminer.tools.math.kernels.DotKernel; //导入依赖的package包/类
protected Kernel getKernel() throws UndefinedParameterError {
return new DotKernel();
}
示例4: HyperplaneModel
import com.rapidminer.tools.math.kernels.DotKernel; //导入依赖的package包/类
public HyperplaneModel(ExampleSet exampleSet, String classNegative, String classPositive) {
this(exampleSet, classNegative, classPositive, new DotKernel());
}