Android jni libsvm,android - JNI ERROR (app bug): local reference table overflow (max=512) - Stack O...

I am trying to run the LibSVMAndroidClassification Android project with my own dataset. It works perfectly fine with the dataset already provided and it also works fine when I use my csv with 100 rows (which is less than 1% of original size). But when I try to go for "Train CSV" with for e.g 1000 rows then I see this error. I even tried to set android:largeHeap="true" in Manifest.xml but nothing improved.

This is my logcat dump.

10-31 17:49:06.745: E/dalvikvm(2008): JNI ERROR (app bug): local reference table overflow (max=512)

10-31 17:49:06.745: W/dalvikvm(2008): JNI local reference table (0x754057e0) dump:

10-31 17:49:06.745: W/dalvikvm(2008): Last 10 entries (of 512):

10-31 17:49:06.745: W/dalvikvm(2008): 511: 0x42d900b0 double

10-31 17:49:06.745: W/dalvikvm(2008): 510: 0x42a19698 int

10-31 17:49:06.745: W/dalvikvm(2008): 509: 0x42d8ff78 double

10-31 17:49:06.745: W/dalvikvm(2008): 508: 0x42a195f0 int

10-31 17:49:06.745: W/dalvikvm(2008): 507: 0x42d8fe40 double

10-31 17:49:06.745: W/dalvikvm(2008): 506: 0x42a19548 int

10-31 17:49:06.745: W/dalvikvm(2008): 505: 0x42d8fd08 double

10-31 17:49:06.745: W/dalvikvm(2008): 504: 0x42a194a0 int

10-31 17:49:06.745: W/dalvikvm(2008): 503: 0x42d8fbd0 double

10-31 17:49:06.745: W/dalvikvm(2008): 502: 0x42a193f8 int

10-31 17:49:06.745: W/dalvikvm(2008): Summary:

10-31 17:49:06.745: W/dalvikvm(2008): 5 of java.lang.Class (4 unique instances)

10-31 17:49:06.745: W/dalvikvm(2008): 3 of java.lang.String (3 unique instances)

10-31 17:49:06.745: W/dalvikvm(2008): 249 of int (249 unique instances)

10-31 17:49:06.745: W/dalvikvm(2008): 1 of int

10-31 17:49:06.745: W/dalvikvm(2008): 250 of double (250 unique instances)

10-31 17:49:06.745: W/dalvikvm(2008): 1 of java.lang.String

10-31 17:49:06.745: W/dalvikvm(2008): 1 of int[]

10-31 17:49:06.745: W/dalvikvm(2008): 1 of edu.sinica.citi.mac.android.actclassification.ActClassificationActivity

10-31 17:49:06.745: W/dalvikvm(2008): 1 of double[]

10-31 17:49:06.745: E/dalvikvm(2008): Failed adding to JNI local ref table (has 512 entries)

10-31 17:49:06.745: I/dalvikvm(2008): "main" prio=5 tid=1 RUNNABLE

10-31 17:49:06.745: I/dalvikvm(2008): | group="main" sCount=0 dsCount=0 obj=0x42027710 self=0x420115f0

10-31 17:49:06.745: I/dalvikvm(2008): | sysTid=2008 nice=0 sched=0/0 cgrp=apps handle=1074106620

10-31 17:49:06.745: I/dalvikvm(2008): | state=R schedstat=( 774483646 137982240 4930 ) utm=59 stm=18 core=1

10-31 17:49:06.745: I/dalvikvm(2008): at edu.sinica.citi.mac.android.actclassification.ActClassificationActivity.svmtrain(Native Method)

10-31 17:49:06.745: I/dalvikvm(2008): at edu.sinica.citi.mac.android.actclassification.ActClassificationActivity.train_csv(ActClassificationActivity.java:329)

10-31 17:49:06.745: I/dalvikvm(2008): at edu.sinica.citi.mac.android.actclassification.ActClassificationActivity$2.onClick(ActClassificationActivity.java:125)

10-31 17:49:06.745: I/dalvikvm(2008): at android.view.View.performClick(View.java:4249)

10-31 17:49:06.745: I/dalvikvm(2008): at android.view.View$PerformClick.run(View.java:17764)

10-31 17:49:06.745: I/dalvikvm(2008): at android.os.Handler.handleCallback(Handler.java:730)

10-31 17:49:06.745: I/dalvikvm(2008): at android.os.Handler.dispatchMessage(Handler.java:92)

10-31 17:49:06.745: I/dalvikvm(2008): at android.os.Looper.loop(Looper.java:137)

10-31 17:49:06.745: I/dalvikvm(2008): at android.app.ActivityThread.main(ActivityThread.java:5137)

10-31 17:49:06.745: I/dalvikvm(2008): at java.lang.reflect.Method.invokeNative(Native Method)

10-31 17:49:06.745: I/dalvikvm(2008): at java.lang.reflect.Method.invoke(Method.java:525)

10-31 17:49:06.745: I/dalvikvm(2008): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:752)

10-31 17:49:06.745: I/dalvikvm(2008): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:568)

10-31 17:49:06.745: I/dalvikvm(2008): at miui.dexspy.DexspyInstaller.main(DexspyInstaller.java:171)

10-31 17:49:06.745: I/dalvikvm(2008): at dalvik.system.NativeStart.main(Native Method)

10-31 17:49:06.745: E/dalvikvm(2008): VM aborting

10-31 17:49:06.745: A/libc(2008): Fatal signal 11 (SIGSEGV) at 0xdeadd00d (code=1), thread 2008 (tclassification)

I have googled a lot but still I am unable to understand the background and reason behind this. Many people have faced this same error in different situations. What can be a suitable pointer to the solution ?

Thanks in advance !

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值