Tagged Questions

0
votes
1answer
9 views

Java Stanford NLP: ArrayIndexOutOfBounds after loading second lexicon

I am using the Stanford Natural Language processing toolkit. I've been trying to find spelling errors with Lexicon's isKnown method, but it produces quite a few false positives. So I thought I'd load …
0
votes
1answer
50 views

Java Stanford NLP: Find word frequency?

I'm using the Stanford NLP Parsing toolkit. Given a word in the lexicon, how can I find its frequency*? Or, given a frequency rank, how can I determine the corresponding word? *in the entire …
0
votes
1answer
21 views

Stanford NLP Toolkit Parse -Help me find the manual

Would any one help me by sending the URL for the Stanford NLP dependency manual....
1
vote
3answers
207 views

Limit CPU / Stack for Java method call?

I am using an NLP library (Stanford NER) that throws OOM errors for rare input documents. I plan to eventually isolate these documents and figure out what about them causes the errors, but this is …