如何调试Weka?
我正在尝试为 Weka 实现一个新的过滤器。我想知道,我应该做什么才能调试 weka,以便我可以看到我的代码出了什么问题,因为当我尝试在 weka 中运行过滤器时,我遇到了异常。目前我正在使用
JOptionPane.showMessageDialog(null, ...);
打印变量的值,尝试找到问题,但是我浪费了很多时间生成jar文件,将它们复制到正确的位置,重新启动weka等等......等等......
提前感谢为了你的帮助。
I am trying to implement a new filter for Weka. I would like to know, what should i do to be able to debug weka, so that I can see what's wrong with my code, since when I try to run the filter in weka I am getting exceptions. Currently I am using
JOptionPane.showMessageDialog(null, ...);
to print the values of variables, to try and find the problem, however I am wasting a lot of time generating jar files, coping them to the correct location, restarting weka etc... etc...
thanks in advance for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用常用的 Java 调试器有什么问题?您可以从 Eclipse 运行 Weka,也可以使用常用的调试器附加参数启动它,然后从 Eclipse 附加到它。
What's wrong with using any of the usual Java debuggers? You can run Weka from Eclipse, or you can launch it with the usual debugger attach arguments and then attach to it from Eclipse.