安卓中的weka?
我需要运行一个对某些数据集值进行分类的程序。在计算机上,我使用 weka 对其进行分类并将其提供给我,但我需要在 Android 上实现相同的功能。当我运行程序(weka)时,Eclipse 通过给出诸如 PermGen 堆空间之类的错误来关闭。我阅读了几个论坛,发现可以更改 eclipse.ini 文件中的 --launcher.XXMaxPermSize
中的值,但我没有找到任何成功。我只需要使用 weka 的 j48 分类器,还有其他现有的东西可以为我完成这项工作吗?或者是否有解决方法来修复 eclipse 中的 PermGen 错误?
请指导。
i need to run a program that classifies certain dataset values. on the computer i am using weka to classify the same and provide it to me but i need to implement the same on android. eclipse shuts down when i run the program(weka) by giving an error such as PermGen heap space. i read several forums and found the option of changing the value in the --launcher.XXMaxPermSize
in the eclipse.ini file but i have not found any success. i just need to use the j48 classifier from weka, is there anything else existing that would do the work for me? or is there a workaround to fix the PermGen error in eclipse?
please guide.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我刚刚完成了 https://github.com/rjmarsan/Weka-for-Android< 的第一次修订/a>
希望有帮助。
是的,--launcher.XXMaxPermSize 需要设置得更高。 1024为我工作。
I just finished my first revision of https://github.com/rjmarsan/Weka-for-Android
Hope it helps.
Yes, the --launcher.XXMaxPermSize needs to be set higher. 1024 worked for me.