Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

weka in android?

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.

like image 968
i_raqz Avatar asked Dec 17 '22 17:12

i_raqz


1 Answers

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.

like image 85
RJ M Avatar answered Dec 19 '22 07:12

RJ M