active questions tagged nlp - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T12:50:20Zhttp://stackoverflow.com/feeds/tag/nlphttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1923844/what-is-a-good-tool-for-natural-language-detection-in-java3What is a good tool for Natural Language Detection in Java?jben2009-12-17T18:58:53Z2009-12-18T10:26:09Z
<p>I need to do natural language detection (with confidence scores), preferably in Java, I'd really not introduce more platforms/technologies at this stage of the project. I have previously used the Google API for this in a PoC, but I now need to scale up to very large amounts of data, so any web-based solution won't cut it, (also Google are unclear in their TOS). </p>
http://stackoverflow.com/questions/1915371/using-aiksaurus-for-nlp0Using Aiksaurus for NLPKen Bloom2009-12-16T15:29:31Z2009-12-16T16:26:54Z
<p>What is the original source for the thesaurus data in <a href="http://aiksaurus.sourceforge.net/" rel="nofollow">Aiksaurus</a>?</p>
<p>Is it possible to get data about antonyms for a word from Aiksaurus?</p>
http://stackoverflow.com/questions/1840386/calculating-context-sensitive-text-correlation2Calculating context-sensitive text correlationAnders Fjeldstad2009-12-03T14:53:11Z2009-12-16T09:12:34Z
<p>Suppose I want to match address records (or person names or whatever) against each other to merge records that are most likely referring to the same address. Basically, I guess I would like to calculate some kind of correlation between the text values and merge the records if this value is over a certain threshold.</p>
<p>Example:
"West Lawnmower Drive 54 A" is probably the same as "W. Lawn Mower Dr. 54A" but different from "East Lawnmower Drive 54 A".</p>
<p>How would you approach this problem? Would it be necessary to have some kind of context-based dictionary that knows, in the address case, that "W", "W." and "West" are the same? What about misspellings ("mover" instead of "mower" etc)?</p>
<p>I think this is a tricky one - perhaps there are some well-known algorithms out there?</p>
http://stackoverflow.com/questions/1913143/how-to-convert-english-to-cron4How to Convert English to Cron?Tom Duckering2009-12-16T08:25:34Z2009-12-16T08:54:47Z
<p>I did some searching but haven't landed anything that looks useful yet but I am wondering if anyone knows of something (tool,lib etc) that can parse English phrases and translate them into a cron string.</p>
<p>For example: <code>Every Tuesday at 15:00</code> converts to <code>0 15 * * 2</code></p>
<p>It seems like something that would have lots of gotchas and it would be preferable to benefit from someone elses work. You see it in a few nice sites/apps that can work out what you mean from a simple phrase rather than having some hideous user interface.</p>
<p>Thanks,
Tom</p>
http://stackoverflow.com/questions/1902967/nltk-how-to-find-out-what-corpora-are-installed-from-within-python0NLTK - how to find out what corpora are installed from within python?Rafael S. Calsaverini2009-12-14T19:32:25Z2009-12-14T19:39:49Z
<p>I'm trying to load some corpora I installed with the NLTK installer but I got a:</p>
<pre><code>>>> from nltk.corpus import machado
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: cannot import name machado
</code></pre>
<p>But in the download manager (<code>nltk.download()</code>) the package machado is marked as installed and I have a <code>nltk_data/corpus/machado</code> folder.</p>
<p>How can I see from inside the python intepreter what are the installed corpora?</p>
<p>Also, what package should I install to work with this how-to?
<a href="http://nltk.googlecode.com/svn/trunk/doc/howto/portuguese%5Fen.html" rel="nofollow">http://nltk.googlecode.com/svn/trunk/doc/howto/portuguese%5Fen.html</a></p>
<p>I can't find the module <code>nltk.examples</code> refered to in the how-to.</p>
http://stackoverflow.com/questions/1898768/what-is-the-difference-between-foward-backward-algorithm-and-viterbi-algorithm4What is the difference between Foward-backward algorithm and viterbi algorithm?Jinx2009-12-14T03:33:32Z2009-12-14T14:10:06Z
<p>What is the difference between Foward-backward algorithm on n-gram model and viterbi algorithm on HMM model?</p>
<p>When I review the implementation of these two algorithms, only thing I found is that the transaction probability is coming from different probabilistic models.</p>
<p>Is there a difference between these 2 algorithms? </p>
http://stackoverflow.com/questions/1795410/can-nltk-pynltk-work-per-language-i-e-non-english-and-how4can NLTK/pyNLTK work "per language" (i.e. non-english), and how?Berry Tsakala2009-11-25T08:17:32Z2009-12-14T12:15:51Z
<p>how can I tell nltk to treat the text in a particular language?</p>
<p>BKG: once in a while i write a specialized NLP routine to do POS tagging, tokenizing etc. on a non-english (but still hindo-european) text domain.</p>
<p>this question seem to address only different corpora, not the change in code / settings:
<a href="http://stackoverflow.com/questions/1639855/nltk-tagging-in-german">http://stackoverflow.com/questions/1639855/nltk-tagging-in-german</a></p>
<p>alternatively,
are there any specialized hebrew / spanish / polish NLP module for python?</p>
<p>thanks</p>
http://stackoverflow.com/questions/1875765/how-to-define-persons-names-in-text-java0How to define person's names in text (Java)Denis2009-12-09T18:14:34Z2009-12-11T03:26:24Z
<p>I have some input text, which contains one or more human person names. I do not have any dictionary for these names. Which Java library can help me to define names from my input text?
I looked through OpenNLP, but did not find any example or guide or at least description of how it can be applied into my code. (I saw javadoc, but it is pretty poor documentation for such a project.)</p>
<p>I want to find names from some random text. If the input text is "My friend Joe Smith went to the store.", then I want to get "Joe Smith". I think there should be some large enough dictionaries on smart engines, based on smaller dictionaries, that can understand human names.</p>
http://stackoverflow.com/questions/1833252/java-stanford-nlp-part-of-speech-labels1Java Stanford NLP: Part of Speech labels?Rosarch2009-12-02T14:30:50Z2009-12-07T02:16:34Z
<p>The Stanford NLP, demo'd <a href="http://nlp.stanford.edu:8080/parser/" rel="nofollow">here</a>, gives an output like this:</p>
<pre><code>Colorless/JJ green/JJ ideas/NNS sleep/VBP furiously/RB ./.
</code></pre>
<p>What do the Part of Speech tags mean? I am unable to find an official list. Is it Stanford's own system, or are they using universal tags? (What is <code>JJ</code>, for instance?)</p>
<p>Also, when I am iterating through the sentences, looking for nouns, for instance, I end up doing something like checking to see if the tag <code>.contains('N')</code>. This feels pretty weak. Is there a better way to programmatically search for a certain part of speech?</p>
http://stackoverflow.com/questions/1856572/java-multidimensional-scaling0Java: Multidimensional Scaling?Rosarch2009-12-06T20:53:10Z2009-12-06T21:15:10Z
<p>I'm doing a Natural Language Processing project where I compute a bunch of attributes of a text, giving me a vector of values for each text. I want to compare these vectors with multidimensional scaling. What Java libraries/toolkits do you recommend for doing this?</p>
http://stackoverflow.com/questions/1853378/java-stanford-nlp-spell-checking0Java Stanford NLP: Spell checkingRosarch2009-12-05T20:36:14Z2009-12-06T19:05:06Z
<p>I'm trying to check spelling accuracy of text samples using the Stanford NLP. It's just a metric of the text, not a filter or anything, so if it's off by a bit it's fine, as long as the error is uniform.</p>
<p>My first idea was to check if the word is known by the lexicon:</p>
<pre><code>private static LexicalizedParser lp = new LexicalizedParser("englishPCFG.ser.gz");
@Analyze(weight=25, name="Spelling")
public double spelling() {
int result = 0;
for (List<? extends HasWord> list : sentences) {
for (HasWord w : list) {
if (! lp.getLexicon().isKnown(w.word())) {
System.out.format("misspelled: %s\n", w.word());
result++;
}
}
}
return result / sentences.size();
}
</code></pre>
<p>However, this produces quite a lot of false positives:</p>
<pre><code>misspelled: Sincerity
misspelled: Sisyphus
misspelled: Sisyphus
misspelled: fidelity
misspelled: negates
misspelled: gods
misspelled: henceforth
misspelled: atom
misspelled: flake
misspelled: Sisyphus
misspelled: Camus
misspelled: foandf
misspelled: foandf
misspelled: babby
misspelled: formd
misspelled: gurl
misspelled: pregnent
misspelled: babby
misspelled: formd
misspelled: gurl
misspelled: pregnent
misspelled: Camus
misspelled: Sincerity
misspelled: Sisyphus
misspelled: Sisyphus
misspelled: fidelity
misspelled: negates
misspelled: gods
misspelled: henceforth
misspelled: atom
misspelled: flake
misspelled: Sisyphus
</code></pre>
<p>Any ideas on how to do this better?</p>
http://stackoverflow.com/questions/1566038/how-does-aramorph-1-2-1-work0How does AraMorph 1.2.1 work?Hani2009-10-14T12:51:51Z2009-12-05T02:05:12Z
<p>I have downloaded <a href="http://sourceforge.net/projects/aramorph/" rel="nofollow">AraMorph 1.2.1</a> Perl version from SourceForge, but I do not know how to use it. Could someone explain to me how can I get it to work?</p>
http://stackoverflow.com/questions/1835605/natural-language-processing-find-obscenities-in-english2Natural Language Processing: Find obscenities in English?Rosarch2009-12-02T20:34:05Z2009-12-04T08:08:36Z
<p>Given a set of words tagged for part of speech, I want to find those that are obscenities in mainstream English. How might I do this? Should I just make a huge list, and check for the presence of anything in the list? Should I try to use a regex to capture a bunch of variations on a single root?</p>
<p>If it makes it easier, I don't want to filter out, just to get a count. So if there are some false positives, it's not the end of the world, as long as there's a more or less uniformly over exaggerated rate.</p>
http://stackoverflow.com/questions/1361030/which-is-better-gate-or-rapidminer0which is better... GATE or RapidMiner....siva2009-09-01T07:29:06Z2009-12-02T16:00:04Z
<p>hi,</p>
<p>I've started to write a simple sentiment analysis tool</p>
<p>currently i am looking @ GATE (<a href="http://gate.ac.uk" rel="nofollow">http://gate.ac.uk</a>) and RapidMiner (<a href="http://rapid-i.com/" rel="nofollow">http://rapid-i.com/</a>)
Being a beginner not able to concentrate on both...</p>
<p>could someone pls tell me which one will be better in terms of usage, learning curve, licensing etc</p>
<p>Thx
Shiv</p>
http://stackoverflow.com/questions/1816800/java-stanford-nlp-find-word-frequency0Java Stanford NLP: Find word frequency?Rosarch2009-11-29T21:14:39Z2009-12-02T14:35:10Z
<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>*in the entire language, not just the text sample.</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/1783653/computing-precision-and-recall-in-named-entity-recognition2Computing precision and recall in Named Entity RecognitionNick2009-11-23T15:00:44Z2009-11-29T05:51:08Z
<p>Hi,</p>
<p>Now I am about to report the results from Named Entity Recognition. One thing that I find a bit confusing is that my understanding of precision and recall was that one simply sums up true positives, true negatives, false positives and false negatives over all classes.</p>
<p>But this seems implausible now that I think of it as each misclassification would give simultaneously rise to one false positive and one false negative (e.g. a token that should have been labelled as "A" but was labelled as "B" is a false negative for "A" and false positive for "B"). Thus the number of the false positives and the false negatives over all classes would be the same which means that precision is (always!) equal to recall. This simply can't be true so there is an error in my reasoning and I wonder where it is. It is certainly something quite obvious and straight-forward but it escapes me right now.</p>
<p>Nick</p>
http://stackoverflow.com/questions/1793516/ideas-for-natural-language-processing-project10Ideas for Natural Language Processing project?Rosarch2009-11-24T22:54:04Z2009-11-29T05:19:40Z
<p>I have to do a final project for my computational linguistics class. We've been using OCaml the entire time, but I also have familiarity with Java. We've studied morphology, FSMs, collecting parse trees, CYK parsing, tries, pushdown automata, regular expressions, formal language theory, some semantics, etc.</p>
<p>Here are some ideas I've come up with. Do you have anything you think would be cool?</p>
<ol>
<li><p>A script that scans Facebook threads for obnoxious* comments and silently hides them with JS (this would be run with the user's consent, obviously)</p></li>
<li><p>An analysis of a piece of writing using semantics, syntax, punctuation usage, and other metrics, to try to "fingerprint" the author. It could be used to determine if two works are likely written by the same author. Or, someone could put in a bunch of writing he's done over time, and get a sense of how his style has changed.</p></li>
<li><p>A chat bot (less interesting/original)</p></li>
</ol>
<p>I may be permitted to use pre-existing libraries to do this. Do any exist for OCaml? Without a library/toolkit, the above three ideas are probably infeasible, unless I limit it to a very specific domain.</p>
<p>Lower level ideas:</p>
<ol>
<li><p>Operations on finite state machines - minimizing, composing transducers, proving that an FSM is in a minimal possible state. I am very interested in graph theory, so any overlap with FSMs could be a good venue to explore. (What else can I do with FSMs?)</p></li>
<li><p>Something cool with regex?</p></li>
<li><p>Something cool with CYK?</p></li>
</ol>
<p>Does anyone else have any cool ideas?</p>
<p>*obnoxious defined as having following certain patterns typical of junior high schoolers. The vagueness of this term is not an issue; for the credit I could define whatever I want and target that.</p>
http://stackoverflow.com/questions/1655782/should-i-use-lingpipe-or-nltk-for-extracting-names-and-places0Should I use LingPipe or NLTK for extracting names and places?pedalpete2009-10-31T22:22:16Z2009-11-27T10:31:34Z
<p>I'm looking to extract names and places from very short bursts of text example</p>
<pre>
"cardinals vs jays in toronto"
" Daniel Nestor and Nenad Zimonjic play Jonas Bjorkman w/ Kevin Ullyett, paris time to be announced"
"jenson button - pole position, brawn-mercedes - monaco".
</pre>
<p>This data is currently in a MySQL database, and I (pretty much) have a separate record for each athlete, though names are sometimes spelled wrong, etc.</p>
<p>I would like to extract the athletes and locations.
I usually work in PHP, but haven't been able to find a library for entity extraction (and I may want to get deeper into some <a href="http://en.wikipedia.org/wiki/Natural%5Flanguage%5Fprocessing" rel="nofollow">NLP</a> and <a href="http://en.wikipedia.org/wiki/Machine%5Flearning" rel="nofollow">ML</a> in the future). </p>
<p>From what I've found, <a href="http://alias-i.com/lingpipe/" rel="nofollow">LingPipe</a> and <a href="http://en.wikipedia.org/wiki/Natural%5FLanguage%5FToolkit" rel="nofollow">NLTK</a> seem to be the most recommended, but I can't figure out if either will really suit my purpose, or if something else would be better. </p>
<p>I haven't programmed in either Java or Python, so before I start learning new languages, I'm hoping to get some advice on what route I should follow, or other recommendations.</p>
http://stackoverflow.com/questions/1805099/c-c-nlp-library2c/c++ NLP libraryAyoub2009-11-26T18:29:54Z2009-11-26T18:39:39Z
<p>I am looking for an open source Natural Language Processing library for c/c++ and especially i am interested in Part of speech tagging. </p>
http://stackoverflow.com/questions/1605493/natural-language-command-language1Natural language command languagepeter.murray.rust2009-10-22T07:06:14Z2009-11-26T15:40:54Z
<p>I'm interested in developing a natural language command language for a domain with existing rules. I was very impressed when Terry Winograd's <a href="http://en.wikipedia.org/wiki/Shrdlu" rel="nofollow">SHRDLU</a> showed the way (the conversation below is 40 years old! Astonishing). Can we do better now and if so where can I get examples?</p>
<blockquote>
<p>Person: Pick up a big red block.<br />
Computer: OK.<br />
Person: Grasp the pyramid.<br />
Computer: I don't understand which pyramid you mean.<br />
Person (changing their mind): Find a block which is taller than the one you are holding and put it into the box.<br />
Computer: By "it", I assume you mean the block which is taller than the one I am holding.<br />
Computer: OK.<br />
Person: What does the box contain?<br />
Computer: The blue pyramid and the blue block.<br />
Person: What is the pyramid supported by?<br />
Computer: The box.<br />
Person: How many blocks are not in the box?<br />
Computer: Four of them.<br />
Person: Is at least one of them narrower than the one which I told you to pick up?<br />
Computer: Yes, the red cube.</p>
</blockquote>
<p>I have an ontology for the domain so can reason over common problems.</p>
http://stackoverflow.com/questions/1787755/python-and-net-integration0Python and .NET integrationTrent2009-11-24T04:21:28Z2009-11-24T16:56:09Z
<p>I'm currently looking at python because I really like the text parsing capabilities and the nltk library, but traditionally I am a .Net/C# programmer. I don't think IronPython is an integration point for me because I am using NLTK and presumably would need a port of that library to the CLR. I've looked a little at <a href="http://pythonnet.sourceforge.net/readme.html" rel="nofollow">Python for .NET</a> and was wondering if this was a good place to start. Is there a way to marshal a python class into C#? Also, is this solution still being used? Better yet, has anyone done this? One thing I am considering is just using a persistence medium as a go-between (parse in Python, store in MongoDB, and run site in .NET).</p>
http://stackoverflow.com/questions/1789254/clustering-text-in-python3Clustering text in PythonDan2009-11-24T10:43:39Z2009-11-24T16:04:50Z
<p>I need to cluster some text documents and have been researching various options. It looks like LingPipe can cluster plain text without prior conversion (to vector space etc), but it's the only tool I've seen that explicitly claims to work on strings.</p>
<p>Are there any Python tools that can cluster text directly? If not, what's the best way to handle this?</p>
http://stackoverflow.com/questions/1787110/what-is-the-true-difference-between-lemmatization-vs-stemming1what is the true difference between lemmatization vs stemming?alex2009-11-24T00:48:11Z2009-11-24T04:07:18Z
<p>When do I use each ?</p>
<p>Also...is the NLTK lemmatization dependent upon Parts of Speech?
Wouldn't it be more accurate if it was?</p>
http://stackoverflow.com/questions/933212/is-it-possible-to-guess-a-users-mood-based-on-the-structure-of-text14Is it possible to guess a user's mood based on the structure of text?David Brown2009-06-01T00:43:30Z2009-11-20T22:15:15Z
<p>I assume a natural language processor would need to be used to parse the text itself, but what suggestions do you have for an algorithm to detect a user's mood based on text that they have written? I doubt it would be very accurate, but I'm still interested nonetheless.</p>
<p>EDIT: I am by no means an expert on linguistics or natural language processing, so I apologize if this question is too general or stupid.</p>
http://stackoverflow.com/questions/796412/how-to-turn-plural-words-singular5How to turn plural words singular?Dmitri Nesteruk2009-04-28T06:05:17Z2009-11-20T10:17:49Z
<p>I'm preparing some table names for an ORM, and I want to turn plural table names into single entity names. My only problem is finding an algorithm that does it reliably. Here's what I'm doing right now:</p>
<ol>
<li>If a word ends with <em>-ies</em>, I replace the ending with <em>-y</em></li>
<li>If a word ends with <em>-es</em>, I remove this ending. This doesn't always work however - for example, it replaces <em>Types</em> with <em>Typ</em></li>
<li>Otherwise, I just remove the trailing <em>-s</em></li>
</ol>
<p>Does anyone know of a better algorithm?</p>
http://stackoverflow.com/questions/579203/binarization-in-natural-language-processing5Binarization in Natural Language ProcessingSebastian Ganslandt2009-02-23T20:31:55Z2009-11-18T06:58:28Z
<p>Binarization is the act of transforming colorful features of of an entity into vectors of numbers, most often binary vectors, to make good examples for classifier algorithms.</p>
<p>If we where to binarize the sentence "The cat ate the dog", we could start by assigning every word an ID (for example cat-1, ate-2, the-3, dog-4) and then simply replace the word by it's ID giving the vector <3,1,2,3,4>. </p>
<p>Given these IDs we could also create a binary vector by giving each word four possible slots, and setting the slot corresponding to a specific word with to one, giving the vector <0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,1>. The latter method is, as far as I know, is commonly referred to as the bag-of-words-method.</p>
<p>Now for my question, what is the <i>best</i> binarization method when it comes to describe features for natural language processing in general, and transition-based <i>dependency parsing</i> (with Nivres algorithm) in particular? </p>
<p>In this context, we do not want to encode the whole sentence, but rather the current state of the parse, for example the top word on the stack en the first word in the input queue. Since order is highly relevant, this rules out the bag-of-words-method. </p>
<p>With <i>best</i>, I am referring to the method that makes the data the most intelligible for the classifier, without using up unnecessary memory. For example I don't want a word bigram to use 400 million features for 20000 unique words, if only 2% the bigrams actually exist.</p>
<p>Since the answer is also depending on the particular classifier, I am mostly interested in maximum entropy models (liblinear), support vector machines (libsvm) and perceptrons, but answers that apply to other models are also welcome.</p>
http://stackoverflow.com/questions/1695841/how-to-make-words-into-a-category-nlp0How to make words into a category. (NLP)alex2009-11-08T09:22:19Z2009-11-14T12:53:21Z
<pre><code>I love to eat chicken.
Today I went running, swimming and played basketball.
</code></pre>
<p>My objective is to return <strong>FOOD</strong> and <strong>SPORTS</strong> just by analyzing these two sentences. How can you do that?</p>
<p>I am familiar with NLP and Wordnet. But is there something more high-level/practical/modern technology??</p>
<p>Is there anything that automatically categorizes words for you, into "<em>levels</em>"?</p>
<p>More importantly, what is the technical term for this process?</p>
http://stackoverflow.com/questions/1082789/simple-sentiment-analysis0Simple Sentiment Analysismiller2009-07-04T18:58:15Z2009-11-12T21:10:56Z
<p>It appears that the simplest, naivest way to do basic sentiment analysis is with a Bayesian classifier (confirmed by what I'm finding here on SO). Any counter-arguments or other suggestions?</p>
http://stackoverflow.com/questions/1714657/find-some-sentences3find some sentencesAlexey Poimtsev2009-11-11T11:41:20Z2009-11-12T17:18:02Z
<p>Hi,
I'd like to find good way to find some (let it be two) sentences in some text. What will be better - use regexp or split-method? Your ideas?</p>
<p>As requested by Jeremy Stein - there are some examples</p>
<p><strong>Examples:</strong></p>
<p><strong>Input:</strong></p>
<blockquote>
<p>The first thing to do is to create the Comment model. We’ll create this in the normal way, but with one small difference. If we were just creating comments for an Article we’d have an integer field called article_id in the model to store the foreign key, but in this case we’re going to need something more abstract.</p>
</blockquote>
<p><strong>First two sentences:</strong></p>
<blockquote>
<p>The first thing to do is to create the Comment model. We’ll create this in the normal way, but with one small difference.</p>
</blockquote>
<p><strong>Input:</strong></p>
<blockquote>
<p>Mr. T is one mean dude. I'd hate to get in a fight with him.</p>
</blockquote>
<p><strong>First two sentences:</strong></p>
<blockquote>
<p>Mr. T is one mean dude. I'd hate to get in a fight with him.</p>
</blockquote>
<p><strong>Input:</strong></p>
<blockquote>
<p>The D.C. Sniper was executed was executed by lethal injection at a Virginia prison. Death was pronounced at 9:11 p.m. ET.</p>
</blockquote>
<p><strong>First two sentences:</strong></p>
<blockquote>
<p>The D.C. Sniper was executed was executed by lethal injection at a Virginia prison. Death was pronounced at 9:11 p.m. ET.</p>
</blockquote>
<p><strong>Input:</strong></p>
<blockquote>
<p>In her concluding remarks, the opposing attorney said that "...in this and so many other instances, two wrongs won’t make a right." The jury seemed to agree.</p>
</blockquote>
<p><strong>First two sentences:</strong></p>
<blockquote>
<p>In her concluding remarks, the opposing attorney said that "...in this and so many other instances, two wrongs won’t make a right." The jury seemed to agree.</p>
</blockquote>
<p>Guys, as you can see - it's not so easy to determine two sentences from text. :(</p>
http://stackoverflow.com/questions/1695971/does-wordnet-have-levels-nlp1Does WordNet have "levels"? (NLP)alex2009-11-08T10:29:19Z2009-11-11T20:46:53Z
<p>For example...</p>
<p>Chicken is an <strong>animal</strong>.<br>
Burrito is a <strong>food</strong>.</p>
<p>WordNet allows you to do "is-a"...the hiearchy feature.</p>
<p>However, how do I know when to stop travelling up the tree? I want a LEVEL.<br>
That is consistent.</p>
<p>For example, if presented with a bunch of words, I want wordNet to categorize all of them, but at a certain level, so it doesn't go too far up. Categorizing "burrito" as a "thing" is too broad, yet "mexican wrapped food" is too specific. I want to go up the hiearchy or down..until the right LEVEL.</p>