本文整理匯總了Java中com.rapidminer.operator.preprocessing.discretization.AbstractDiscretizationOperator類的典型用法代碼示例。如果您正苦於以下問題:Java AbstractDiscretizationOperator類的具體用法?Java AbstractDiscretizationOperator怎麽用?Java AbstractDiscretizationOperator使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
AbstractDiscretizationOperator類屬於com.rapidminer.operator.preprocessing.discretization包,在下文中一共展示了AbstractDiscretizationOperator類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: getFixesForRegressionWhenClassificationSupported
import com.rapidminer.operator.preprocessing.discretization.AbstractDiscretizationOperator; //導入依賴的package包/類
/**
* This method has to return a collection of quick fixes which are appropriate when
* classification is supported and the data needs regression. The default implementation will
* return fixes for discretization.
*/
protected List<QuickFix> getFixesForRegressionWhenClassificationSupported(AttributeMetaData labelMD) {
return AbstractDiscretizationOperator.createDiscretizationFixes(getInputPort(), labelMD.getName());
}
示例2: getFixesForRegressionWhenClassificationSupported
import com.rapidminer.operator.preprocessing.discretization.AbstractDiscretizationOperator; //導入依賴的package包/類
/**
* This method has to return a collection of quick fixes which are appropriate when classification is supported and
* the data needs regression. The default implementation will return fixes for discretization.
*/
protected List<QuickFix> getFixesForRegressionWhenClassificationSupported(AttributeMetaData labelMD) {
return AbstractDiscretizationOperator.createDiscretizationFixes(getInputPort(), labelMD.getName());
}