本文整理汇总了Java中weka.core.Option.getOptionsForHierarchy方法的典型用法代码示例。如果您正苦于以下问题:Java Option.getOptionsForHierarchy方法的具体用法?Java Option.getOptionsForHierarchy怎么用?Java Option.getOptionsForHierarchy使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类weka.core.Option
的用法示例。
在下文中一共展示了Option.getOptionsForHierarchy方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getOptions
import weka.core.Option; //导入方法依赖的package包/类
/**
* Gets the current settings of the clusterer.
*
* @return an array of strings suitable for passing to setOptions
*/
@Override
public String[] getOptions() {
Vector<String> options = new Vector<String>();
for (String s : Option.getOptionsForHierarchy(this, AbstractClusterer.class)) {
options.add(s);
}
if (getDebug()) {
options.add("-output-debug-info");
}
if (getDoNotCheckCapabilities()) {
options.add("-do-not-check-capabilities");
}
return options.toArray(new String[0]);
}
示例2: getOptions
import weka.core.Option; //导入方法依赖的package包/类
/**
* Gets the current settings of the Classifier.
*
* @return an array of strings suitable for passing to setOptions
*/
@Override
public String[] getOptions() {
Vector<String> options = new Vector<String>();
for (String s : Option.getOptionsForHierarchy(this,
AbstractClassifier.class)) {
options.add(s);
}
if (getDebug()) {
options.add("-output-debug-info");
}
if (getDoNotCheckCapabilities()) {
options.add("-do-not-check-capabilities");
}
if (getNumDecimalPlaces() != NUM_DECIMAL_PLACES_DEFAULT) {
options.add("-num-decimal-places");
options.add("" + getNumDecimalPlaces());
}
return options.toArray(new String[0]);
}
示例3: getOptions
import weka.core.Option; //导入方法依赖的package包/类
/**
* Gets the current settings of the filter.
*
* @return an array of strings suitable for passing to setOptions
*/
@Override
public String[] getOptions() {
Vector<String> options = new Vector<String>();
for (String s : Option.getOptionsForHierarchy(this, Filter.class)) {
options.add(s);
}
if (getDebug()) {
options.add("-output-debug-info");
}
if (getDoNotCheckCapabilities()) {
options.add("-do-not-check-capabilities");
}
return options.toArray(new String[0]);
}
示例4: getOptions
import weka.core.Option; //导入方法依赖的package包/类
@Override
public String[] getOptions() {
return Option.getOptionsForHierarchy(this, this.getClass().getSuperclass());
//return Option.getOptions(this, this.getClass());
}
示例5: getOptions
import weka.core.Option; //导入方法依赖的package包/类
@Override
public String[] getOptions() {
return Option.getOptionsForHierarchy(this, this.getClass().getSuperclass());
}
示例6: getOptions
import weka.core.Option; //导入方法依赖的package包/类
@Override
public String[] getOptions() {
return Option.getOptionsForHierarchy(this, this.getClass().getSuperclass());
// return Option.getOptions(this, this.getClass());
}