我正在使用weka分类器生成的规则。这些规则由Weka在一个String中生成,并且在每个不同的规则情况下,我必须实现每个规则(即手动,在Java中)。我想也许有更好的方法来完成这个过程,可能使用API。
我能做到的一种方法是处理由表示规则的分类器生成的String(类ClassifierTree)。但我认为这可能有一些最简单的方法。
有人可以帮助我吗?
问候,
布鲁诺莫雷诺
答案 0 :(得分:1)
如果您的分类器supports it,您可能会获得经过训练的分类器的java代码。看following answer option three。摘录摘自Weka Wiki Generating source code from WEKA classes:
All classifiers implementing the weka.classifiers.Sourcable interface
can turn their model into Java source code
(check the Javadoc of this interface for all the classifiers implementing it).