Reputation:
This is a question only to those who already used the LingPipe. My question is how to load up the GENIA corpus for Part of Speech tagging. When I start parsing it I get an error saying that I got out of memory heap. Thnx.
Upvotes: 0
Views: 994
Reputation: 1798
Set an environment variable to allow for a bigger maximum heap size e.g. -Xmx2g gives max heap of 2gb memory
Upvotes: 1
Reputation: 8934
You need to run the JVM with more memory. See the answer to Why do I get an OutOfMemoryError when inserting 50,000 objects into HashMap?.
Upvotes: 0