當前位置: 首頁>>代碼示例>>Java>>正文


Java DotKernel類代碼示例

本文整理匯總了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;
			}
		}
	}
}
 
開發者ID:transwarpio,項目名稱:rapidminer,代碼行數:30,代碼來源:EvoSVMModel.java

示例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;
			}
		}
	}
}
 
開發者ID:rapidminer,項目名稱:rapidminer-5,代碼行數:28,代碼來源:EvoSVMModel.java

示例3: getKernel

import com.rapidminer.tools.math.kernels.DotKernel; //導入依賴的package包/類
protected Kernel getKernel() throws UndefinedParameterError {
	return new DotKernel();
}
 
開發者ID:transwarpio,項目名稱:rapidminer,代碼行數:4,代碼來源:Perceptron.java

示例4: HyperplaneModel

import com.rapidminer.tools.math.kernels.DotKernel; //導入依賴的package包/類
public HyperplaneModel(ExampleSet exampleSet, String classNegative, String classPositive) {
	this(exampleSet, classNegative, classPositive, new DotKernel());
}
 
開發者ID:transwarpio,項目名稱:rapidminer,代碼行數:4,代碼來源:HyperplaneModel.java


注:本文中的com.rapidminer.tools.math.kernels.DotKernel類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。