linguistics Questions

5

Solved

Given a word, which may or may not be a singular-form noun, how would you generate its plural form? Based on this NLTK tutorial and this informal list on pluralization rules, I wrote this simple f...
Kweichow asked 19/9, 2013 at 18:44

7

I was wondering if anyone was familiar with any attempts at algorithmic sentence negation. For example, given a sentence like "This book is good" provide any number of alternative sentences meanin...
Zoroastrianism asked 13/4, 2010 at 21:27

4

Solved

Q1.I am trying to get tense of a complete sentence,just don't know how to do it using nlp. Any help appreciated. Q2 .What all information can be extracted from a sentence using nlp? Currently I c...
Durware asked 3/3, 2014 at 6:12

4

Solved

I'm currently working on NLP in python. However, in my corpus, there are both British and American English(realize/realise) I'm thinking to convert British to American. However, I did not find a go...
Collis asked 19/2, 2017 at 16:28

25

Solved

I have a .NET application where, given a noun, I want it to correctly prefix that word with "a" or "an". How would I do that? Before you think the answer is to simply check if the first letter is ...
Busily asked 17/8, 2009 at 14:34

4

Solved

We've all seen the interesting subdomains that you get automatically assigned when you deploy an app to Heroku with a bare "heroku create". Some examples: blazing-mist-4652, electric-night-4641, m...
Vivianviviana asked 1/10, 2011 at 16:1

1

Solved

Is the a quantitative descriptor of similarity between two words based on how they sound/are pronounced, analogous to Levenshtein distance? I know soundex gives same id to similar sounding words, b...
Phoney asked 19/3, 2021 at 20:50

3

Solved

I am trying to do anaphora resolution and for that below is my code. first i navigate to the folder where i have downloaded the stanford module. Then i run the command in command prompt to initial...
Ardine asked 24/4, 2018 at 14:54

2

Attention!! It will help a lot to know Polish or any other natural language with strong flexion, preferably with a case system (like German for instance), to answer this question. In particular, Po...
Fadil asked 26/5, 2016 at 21:27

5

Solved

I'm tasked with searching for the use of cliches and common phrases in text. The phrases are similar to the phrases you might see for the phrase puzzles on Wheel of Fortune. Here are a few ex...
Troublesome asked 19/4, 2010 at 0:49

1

Solved

I want to include hyphenated words for example: long-term, self-esteem, etc. as a single token in Spacy. After looking at some similar posts on StackOverflow, Github, its documentation and elsewher...
Snuff asked 24/6, 2018 at 17:45

2

Solved

I've been using NSLinguisticTagger with sentences and have been encountering a strange issue with sentences such as 'I am hungry' or 'I am drunk'. Whilst one would expect 'I' to be tagged as a pron...
Bouzoun asked 27/3, 2015 at 22:33

1

I'm trying to parse verbs in a corpus and list them in dictionaries and count how many times each verb appears as a transitive, intransitive and ditransitive. I was wondering how I could use spacy ...
Nudicaul asked 14/3, 2018 at 7:17

1

Solved

Considering the following Java code comparing a small string containing the German grapheme ß String a = "ß"; String b = a.toUpperCase(); assertTrue(a.equalsIgnoreCase(b)); The comparison fails...
Quits asked 15/5, 2017 at 21:9

1

I want to use NLTK to identify collocations among particular kanji characters in Japanese and hanzi characters in Chinese. As with word collocations, some sequences of Chinese characters are far mo...
Chouinard asked 23/4, 2017 at 20:28

3

Solved

I am using NSLinguisticTagger for word stemming. I am able to get a stem words of words in a sentence, but not able to get a stem word for a single word. Following is the code I am using, NSStri...
Schrimsher asked 25/6, 2014 at 7:15

2

I am working on detecting rhymes in Python using the Carnegie Mellon University dictionary of pronunciation, and would like to know: How can I estimate the phonemic similarity between two words? In...
Feuillant asked 20/10, 2014 at 21:2

1

Solved

So, I'm a javascript programmer and the new version of JavaScript (ES6) has a new keyword for declaring variables: let, next to the old one var. I know the difference between these two, but...
Unyoke asked 12/10, 2015 at 21:5

5

Solved

Is there a Python module for the translation of texts from one human language to another? I'm planning to work with texts that are to be pre and post processed with Python scripts. What other...
Parotid asked 22/8, 2009 at 16:33

6

I have a set, sentences, which contains sentences from the English language in the form of strings. I wish to create a subset of sentences, sentences2, which contains sentences containing only 20 u...
Suet asked 25/8, 2015 at 11:27

2

Does nltk or any other NLP tool allow to construct probability trees based on input sentences thus storing the language model of the input text in a dictionary tree, the following example gives the...
Represent asked 13/8, 2015 at 11:5

1

Solved

I'm trying to tabulate phones (characters) occurrences in a string, but diacritics are tabulated as characters on their own. Ideally, I have a wordlist in International Phonetic Alphabet, with a fa...
Hoodoo asked 30/5, 2015 at 21:26

5

Solved

As of right now, I decided to take a dictionary and iterate through the entire thing. Every time I see a newline, I make a string containing from that newline to the next newline, then I do string....
Hera asked 2/8, 2013 at 17:41

1

Solved

I'm using Linux Mint 16 and I got a problem. I installed Qt Creator 5.2.1 from binary package, downloaded from Qt site. I don't have Qt Linguist... Also, I have installed qtcreator and qt5-dev-tool...
Unspoiled asked 5/6, 2014 at 11:47

1

I would like to generate constituency-based parsed trees of English sentences within an iOS application. http://en.wikipedia.org/wiki/Parse_tree My current options appear to be: Write my own tre...
Greenheart asked 7/11, 2012 at 17:16

© 2022 - 2024 — McMap. All rights reserved.