Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

42
votes
25answers
2k views

How can I correctly prefix a word with “a” and “an”?

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 a ...
38
votes
8answers
6k views

Your favorite natural language parser?

This is just a poll on what parser you like to use for parsing sentences of natural language syntactically. I am interested in complete software toolkits/solutions. A good answer would list at least ...
17
votes
14answers
2k views

How do I determine if a random string sounds like English?

I have an algorithm that generates strings based on a list of input words. How do I separate only the strings that sounds like English words? ie. discard RDLO while keeping LORD. EDIT: To clarify, ...
16
votes
2answers
185 views

Selecting the most fluent text from a set of possibilities via grammar checking (Python)

Some background I am a literature student at New College of Florida, currently working on an overly ambitious creative project. The project is geared towards the algorithmic generation of poetry. ...
12
votes
7answers
1k views

Algorithm to choose random letters for word search game that allows many words to be spelled

I'm making a boggle-like word game. The user is given a grid of letters like this: O V Z W X S T A C K Y R F L Q The user picks out a word using any adjacent chains of letters, like the word ...
12
votes
6answers
427 views

Monitor brands with common words

Let's say you should monitor the brand "ONE" online. What algorithms can be used to separate pages about the brand ONE from pages containing the common word ONE? I'm thinking maybe Bayes could work, ...
10
votes
3answers
558 views

Thesaurus class or API for PHP [edited]

TL;DR Summary: I need a single command-line application which I can use to get synonyms and other related words. It needs to be multi-lingual and works cross platform. Can anyone suggest a suitable ...
9
votes
5answers
265 views

Build a natural language model that fixes misspellings

What are books about how to build a natural language parsing program like this: input: I got to TALL you output: I got to TELL you input: Big RAT box output: Big RED box in: hoo un thum zend three ...
8
votes
4answers
832 views

Where can I find a list of English phrases?

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 examples: ...
8
votes
6answers
675 views

Algorithm for Negating Sentences

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 meaning ...
6
votes
4answers
184 views

Justadistraction: tokenizing English without whitespaces. Murakami SheepMan

I wondered how you would go about tokenizing strings in English (or other western languages) if whitespaces were removed? The inspiration for the question is the Sheep Man character in the Murakami ...
6
votes
9answers
318 views

Is there a fairly simple way for a script to tell (from context) whether “her” is a possessive pronoun?

I am writing a script to reverse all genders in a piece of text, so all gendered words are swapped - "man" is swapped with "woman", "she" is swapped with "he", etc. But there is an ambiguity as to ...
6
votes
5answers
653 views

Interesting linguistics/nlp problems/projects

As I know, looking for a problem to solve (debugging, thinking up a theme for an article, whatever) is the most creative, interesting and difficult part of any problem-solving work. Or just the most ...
6
votes
2answers
243 views

Is there software that outputs speech-to-text at the Phonological level?

Is there any software out there capable of taking audio files and outputting phonological (IPA) text? I understand much of the software out there takes it straight to a language, but is there one ...
6
votes
4answers
2k views

LSA - Latent Semantic Analysis - How to code it in PHP?

I would like to implement Latent Semantic Analysis (LSA) in PHP in order to find out topics/tags for texts. Here is what I think I have to do. Is this correct? How can I code it in PHP? How do I ...
5
votes
2answers
1k views

English Language Dictionary api

Is there a public API which would let me lookup definitions for words ? I've been searching for this for a bit but it's getting mixed up with the dictionary datastructure. I'm planing on using it in a ...
5
votes
2answers
1k views

How to get logical parts of a sentence with java?

Let's say there is a sentence: On March 1, he was born. Changing it to He was born on March 1. doesn't break the sense of the sentence and it is still valid. Shuffling words in any other way ...
4
votes
2answers
147 views

Implementing Read typeclass where parsing strings includes “$”

I've been playing with Haskell for about a month. For my first "real" Haskell project I'm writing a parts-of-speech tagger. As part of this project I have a type called Tag that represents a ...
4
votes
7answers
283 views

Create short human-readable string from longer string

I have a requirement to contract a string such as... Would you consider becoming a robot? You would be provided with a free annual oil change." ...to something much shorter but yet still humanly ...
4
votes
1answer
449 views

PHP implementation of Bayes classificator: Assign topics to texts

In my news page project, I have a database table news with the following structure: - id: [integer] unique number identifying the news entry, e.g.: *1983* - title: [string] title of the text, e.g.: ...
4
votes
2answers
330 views

How to conjugate English words in Java?

Say I have a base form of a word and a tag from the Penn Treebank Tag Set. How can I get the conjugated form? For example for "do" and "VBN" how can I get "done"? I thinks this task is already ...
4
votes
2answers
354 views

Training Hidden Markov Models without Tagged Corpus Data

For a linguistics course we implemented Part of Speech (POS) tagging using a hidden markov model, where the hidden variables were the parts of speech. We trained the system on some tagged data, and ...
4
votes
5answers
861 views

Best practices for seaching for alternate forms of a word with Lucene

I have a site which is searchable using Lucene. I've noticed from logs that users sometimes don't find what they're looking for because they enter a singular term, but only the plural version of that ...
3
votes
1answer
199 views

Converting adjectives and adverbs to their noun forms

I am experimenting with word sense disambiguation using wordnet for my project. As a part of the project, I would like to convert a derived adjective or an adverb form to it's root noun form. For ...
3
votes
4answers
170 views

Algorithm to take a number and output its English word

I want to make a program in C which will ask the user to input a number and then it will print that number in English. For example: if(INPUT == 1) then print ONE if(INPUT == 2) then print TWO ...
3
votes
3answers
197 views

Damerau–Levenshtein distance for language specific quirks

To Dutch speaking people the two characters "ij" are considered to be a single letter that is easily exchanged with "y". For a project I'm working on I would like to have a variant of the ...
3
votes
4answers
679 views

Dual-line bilingual paragraph in LaTeX

An interlinear gloss can be used to layout a translation of a document. http://en.wikipedia.org/wiki/Interlinear_gloss Usually this is done word-by-word or morpheme-by-morpheme. However, I would ...
3
votes
6answers
362 views

Part of Speech Tagging - where to start?

Hello I would like to know how to implement the solution to such a task: There's a 500Mb file of plain English texts. I'd like to collect the statistics about the frequency of words, but ...
3
votes
3answers
1k views

Which word stemmer should I use in nltk?

My goal is to analyze some corpus (twitter for the now) for emotional content. Just today I realized it would make a bit of sense to search for word stems as opposed to having an exhaustive list of ...
3
votes
5answers
251 views

identify tense in php

I'm looking for a way to analyze a string of text and find out in which tense it was written, for example : "I'm going to the store" == current, "I bought a car" == past ect.. Any tips on how I could ...
3
votes
2answers
388 views

Cheap tools for splitting german compound words

Do you now any tool or library to split german compound words like "Hochhaus" into single words ("Hoch", "Haus"). It would be great if it's open source and/or cheap.
3
votes
9answers
342 views

Proper language to use in form field labels: A linguistic question

I wish to use the following sentence as the comment on a form field. I have already come up with a short-form label for the field. This text is meant to explain the field in a bit more detail: The ...
3
votes
8answers
701 views

Theory: “Lexical Encoding”

I am using the term "Lexical Encoding" for my lack of a better one. A Word is arguably the fundamental unit of communication as opposed to a Letter. Unicode tries to assign a numeric value to each ...
2
votes
1answer
103 views

How can I programmatically generate Heroku-like subdomain names?

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, ...
2
votes
1answer
50 views

Extracting words from domain

I have a bunch of domains I would like to explode into words. I downloaded wordlist from wordlist.sourceforge.net and started writing brute-force type of script to run each domain through dictionary ...
2
votes
1answer
56 views

Machine learning of word structure

I am working on a system that can create made up fanatsy words based on a variety of user input, such as syllable templates or a modified Backus Naur Form. One new mode, though, is planned to be ...
2
votes
1answer
196 views

understanding semcor corpus structure h

I'm learning NLP. I currently playing with Word Sense Disambiguation. I'm planning to use the semcor corpus as training data but I have trouble understanding the xml structure. I tried googling but ...
2
votes
2answers
175 views

Where to find wordlists with gender and plural for German?

I'm trying to write a simple text mining application to try to tell a German word's gender and plural form. So, first of all, I need a big wordlist for training. I've searched around but could not ...
2
votes
3answers
211 views

How do I preserve my float number in ruby

So I'm trying some code out to convert numbers into strings. However, I noticed that in certain cases it does not preserve the last two decimal places. For instance I type 1.01 and 1.04 for addition ...
2
votes
2answers
454 views

Calculating a relative Levenshtein distance - make sense?

I am using both Daitch-Mokotoff soundexing and Damerau-Levenshtein to find out if a user entry and a value in the application are "the same". Is Levenshtein distance supposed to be used as an ...
2
votes
3answers
236 views

Natural language grammar and user-entered names

Some languages, particularly Slavic languages, change the endings of people's names according to the grammatical context. (For those of you who know grammar or studied languages that do this to words, ...
2
votes
2answers
338 views

RDF of sentences

I need to classify sentences as a RDF format. In other words "John likes coke" would be automatically represented as Subject : John Predicate : Likes Object : Coke does nyone know where I should ...
2
votes
4answers
805 views

NLP - Word Alignment

I am looking for word alignment tools and algorithms. I am dealing with bilingual English - Hindi text, and currently working on DTW (Dynamic Time Warping) algorithm CLA (Competitive Linking ...
2
votes
4answers
433 views

How can I get the possessive form of a noun?

Here's an algorithm for adding an apostrophe to a given input noun. How would you contruct a string to show ownership? /** * apostrophizes the string properly * <pre> * curtis = curtis' * ...
2
votes
4answers
412 views

Translating human languages in Python

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 ...
2
votes
23answers
1k views

Misuse of English in the computer literature [closed]

So recently in the Rails literature the non-word (please, no down grades, I know non-word is a non-word but I'm not publishing this stuff and I don't claim to be more intelligent than those who write ...
1
vote
1answer
58 views

background of summarization function in winword

There is an automatic summarization tool in Winword. Does anybody know the background, i.e. which algorithms are used or where I can find additional background information concerning this feature? ...
1
vote
2answers
75 views

Is there an algorithm of identifying different forms of “You” in a sentence AKA How to parse an English sentence

How do I tell if "You" is used as a subject or an object in a sentence?
1
vote
2answers
202 views

How to extract words from text as per the context

I want to extract relevant words from a text statement provided by the user. eg. For a question "How many sides are there in a rectangle?" The words should be 'rectangles' , 'sides', 'many' , 'how'. ...
1
vote
3answers
178 views

Python - English translator

What is the best way to approach writing a program in Python to translate English words and/or phrases into other languages?

1 2