我正在寻找来自http://weka.wikispaces.com/Programmatic+Use的Weka的程序化例子。但是,我认为由于我的Weka jar版本(3.7.7),它在这一行上给出错误:
Instance iExample = new Instance(4);
Error: Cannot instantiate the type Instance
我应该对代码做些什么改变?
答案 0 :(得分:14)
好的,根据这个documentation Instance
是一个界面。这就是你得到这个错误的原因。您将需要创建一个实现类,例如
Instance iExample = new DenseInstance(4);
也许这个例子已经过时了。