本文整理了Java中weka.classifiers.trees.J48.getTechnicalInformation()
方法的一些代码示例,展示了J48.getTechnicalInformation()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。J48.getTechnicalInformation()
方法的具体详情如下:
包路径:weka.classifiers.trees.J48
类名称:J48
方法名:getTechnicalInformation
[英]Returns an instance of a TechnicalInformation object, containing detailed information about the technical background of this class, e.g., paper reference or book this class is based on.
[中]返回TechnicalInformation对象的实例,其中包含有关此类技术背景的详细信息,例如,此类所基于的纸质参考资料或书籍。
代码示例来源:origin: nz.ac.waikato.cms.weka/weka-stable
/**
* Returns a string describing classifier
*
* @return a description suitable for displaying in the explorer/experimenter
* gui
*/
public String globalInfo() {
return "Class for generating a pruned or unpruned C4.5 decision tree. For more "
+ "information, see\n\n" + getTechnicalInformation().toString();
}
代码示例来源:origin: Waikato/weka-trunk
/**
* Returns a string describing classifier
*
* @return a description suitable for displaying in the explorer/experimenter
* gui
*/
public String globalInfo() {
return "Class for generating a pruned or unpruned C4.5 decision tree. For more "
+ "information, see\n\n" + getTechnicalInformation().toString();
}
内容来源于网络,如有侵权,请联系作者删除!