hot questions tagged stanford-nlp - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T05:28:12Z http://stackoverflow.com/feeds/tag?tagnames=stanford-nlp&sort=hot http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1816800/java-stanford-nlp-find-word-frequency 0 Java Stanford NLP: Find word frequency? Rosarch 2009-11-29T21:14:39Z 2009-11-29T21:14:39Z <p>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?</p> <p>This is a demo of the toolkit I'm using:</p> <pre><code>class ParserDemo { public static void main(String[] args) { LexicalizedParser lp = new LexicalizedParser("englishPCFG.ser.gz"); lp.setOptionFlags(new String[]{"-maxLength", "80", "-retainTmpSubcategories"}); String[] sent = { "Sincerity", "may", "frighten", "the", "boy", "." }; Tree parse = (Tree) lp.apply(Arrays.asList(sent)); parse.pennPrint(); System.out.println(); TreebankLanguagePack tlp = new PennTreebankLanguagePack(); GrammaticalStructureFactory gsf = tlp.grammaticalStructureFactory(); GrammaticalStructure gs = gsf.newGrammaticalStructure(parse); Collection tdl = gs.typedDependenciesCollapsed(); System.out.println(tdl); System.out.println(); TreePrint tp = new TreePrint("penn,typedDependenciesCollapsed"); tp.printTree(parse); } } </code></pre> http://stackoverflow.com/questions/1811982/stanford-nlp-toolkit-parse-help-me-find-the-manual 0 Stanford NLP Toolkit Parse -Help me find the manual unknown (yahoo) 2009-11-28T08:26:58Z 2009-11-29T21:24:10Z <p>Would any one help me by sending the URL for the Stanford NLP dependency manual....</p> http://stackoverflow.com/questions/1081466/limit-cpu-stack-for-java-method-call 1 Limit CPU / Stack for Java method call? Kevin Peterson 2009-07-04T04:09:10Z 2009-11-11T20:42:28Z <p>I am using an NLP library (Stanford NER) that throws OOM errors for rare input documents.</p> <p>I plan to eventually isolate these documents and figure out what about them causes the errors, but this is hard to do (I'm running in Hadoop, so I just know the error occurs 17% through split 379/500 or something like that). As an interim solution, I'd like to be able to apply a CPU and memory limit to this particular call.</p> <p>I'm not sure what the best way to do this would be. My first though is to create a fixed thread pool of one thread, and use the timed get() on Future. This would at least give me a wall clock limit which would likely help somewhat.</p> <p>My question is whether there is any way to do better than this with a reasonable amount of effort.</p>