Weka on android?

I need to run a program that classifies specific values โ€‹โ€‹of a dataset. on the computer, I use weka to classify the same and provide it to me, but I need to implement the same on android. eclipse is disconnected when I run the program (weka), causing an error such as a heap of PermGen space. I read several forums and found the opportunity to change the value in --launcher.XXMaxPermSize in the eclipse.ini file, but I did not find success. I just need to use weka's j48 classifier, is there anything else existing that will work for me? or is there a workaround to fix PermGen error in eclipse?

direct.

+4
source share
1 answer

I just finished my first revision https://github.com/rjmarsan/Weka-for-Android

Hope this helps.

Yes, the -launcher.XXMaxPermSize parameter must be set above. 1024 worked for me.

+12
source

Source: https://habr.com/ru/post/1338774/


All Articles