I'm currently using the Stanford CoreNLP tools to extract triplets from text. I've been dealing with relatively small pieces of text, but I need to make it work with larger ones. Also, I need this work on the average machine with an average amount of memory. Any suggestions on how I can reduce the memory load? Perhaps split the text into smaller pieces (this would screw up coreference however...)?

Thank you

link|improve this question

78% accept rate
feedback

1 Answer

A brute force method: use a off heap memory (using disk space as a memory for Java program), see this thread or go here to learn more about BigMemory library. Slow but it might be what you are looking for.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.