--
You received this message because you are subscribed to the Google Groups "berkeleylm-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to berkeleylm-disc...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Reading ngrams of order 4 {Reading ngrams from file /scratch/common/nobackup/calvillo/google5grams/4gms/4gm-0000.gz {Line 0## A fatal error has been detected by the Java Runtime Environment:## SIGSEGV (0xb) at pc=0x00007fa73e8fc5b4, pid=48266, tid=139871353304832## JRE version: Java(TM) SE Runtime Environment (7.0_51-b13) (build 1.7.0_51-b13)# Java VM: Java HotSpot(TM) 64-Bit Server VM (24.51-b03 mixed mode linux-amd64 )# Problematic frame:# V [libjvm.so+0x3ba5b4] CardTableExtension::scavenge_contents_parallel(ObjectStartArray*, MutableSpace*, HeapWord*, PSPromotionManager*, unsigned int, unsigned int)+0x204## Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again#[thread 139871324882688 also had an error]# An error report file with more information is saved as:# [thread 139871324882688 also had an error]## If you would like to submit a bug report, please visit:# http://bugreport.sun.com/bugreport/crash.jsp#
To unsubscribe from this group and stop receiving emails from it, send an email to berkeleylm-discuss+unsub...@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to berkeleylm-disc...@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to berkeleylm-discuss+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To unsubscribe from this group and stop receiving emails from it, send an email to berkeleylm-disc...@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to berkeleylm-disc...@googlegroups.com.
if(kneserNey) {
final int lmOrder = 5;// TODO make this not hard-coded
KneserNeyLmReaderCallback<W> kneserNeyReader = new KneserNeyLmReaderCallback<W>(wordIndexer, lmOrder, opts);
I wanted to know at which point the system would run out of resources and that's why I tried with order 5. But when I set lmOrder to 4, then the error appeared. Previously the system was able to do the:
...
Writing line 314830001
Writing line 314840001
...
part for order 3 without problems, and it was after some point of the ngrams of order 4 where the problem of the array size appeared. So I guess it has something to do with the way lmOrder is set and the way ngrams of order n-2 and n-1 are handled. What would be the correct way to set lmOrder if I wanted a language model of order 4? I assume it should be 4, but now I'm not so sure, 3 or maybe 5?. Did you find a solution for the problem in the other thread?
Thanks again! :D
To unsubscribe from this group and stop receiving emails from it, send an email to berkeleylm-disc...@googlegroups.com.