英文:
Is Weka's JRIP updateable?
问题
我有一个大型数据集,我正在使用Python封装的Weka来训练RIPPER算法。我可以使用Weka的可更新接口来增量训练JRIP算法(RIPPER)吗?
如何使用Weka的Python封装来训练大型数据集?
英文:
I have a large dataset and I am using Weka with the Python wrapper to train the RIPPER algorithm. Can I use Weka's updateable interface for incrementally training the JRIP algorithm (RIPPER)?
How can I train the large dataset with WEKA's python wrapper?
答案1
得分: 1
为了使Weka分类器支持增量训练,它需要实现weka.classifiers.Updateable接口。
然而,JRip并没有实现这个接口,如您可以从其Javadoc的*All Implemented Interfaces:*部分看到。
英文:
In order for a Weka classifier to support incremental training, in needs to implement the weka.classifiers.Updateable interface.
However, JRip does not implement that, as you can see from the All Implemented Interfaces: section of its Javadoc.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。


评论