The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
0answers
27 views

Parsing a search term, WolframAlpha style [closed]

I couldn't find a better example of what I'm looking for than WolframAlpha. Users type in what data they are looking for in a myriad of ways but the engine is able to parse and understand most of the ...
4
votes
1answer
62 views

How do I convert words to their equivalent number?

If I have a positive integer written as a string, such as "three" or "forty nine", is there a simple way to convert this to an integer? I'm happy using Linguistics to convert the other way, but I've ...
1
vote
1answer
66 views

Looking for NLP library/toolkit to create 'tag patterns' with string literals (ruby would be nice)

In NLTK/python you can create 'tag patterns' to match text. e.g., <DT>?<JJ>*<NN> I am looking for a system where you can include string literals in these patterns: NP: ...
2
votes
1answer
42 views

Given a list of dozens of words, how do I find the best matching sections from a corpus of hundreds of texts?

Let’s say I have a list of 250 words, which may consist of unique entries throughout, or a bunch of words in all their grammatical forms, or all sorts of words in a particular grammatical form (e.g. ...
0
votes
0answers
37 views

Using Nodebox with Java

I want to create a program using Java that involves the conjugation of verbs. Wordnet is quite good, but it doesn't support verb conjugation to my knowledge. Nodebox Linguistics, however, does. Is ...
0
votes
0answers
28 views

Linguistic search on Windows Search Service

I write an application that searches files' (.doc, .pdf, etc.) contents using MSSQL Full-text Search feature. I have decided to move my code, Full-text search to Windows Search Service because the ...
0
votes
7answers
152 views

iOS localization: How to share and work with translators?

Often in our iOS projects we have multiple supported languages. They are stored in standard .string files that look something like: /* News section */ "news_title" = "News"; "ok_button_title" = "Ok"; ...
2
votes
1answer
101 views

Algorithm or API for finding suitable alternative, abbreviation, or shorthand for word

We would like to produce a suitable abbreviation or shorthand for a given word. For instance, if someone gave us "picture", we would produce "pix" or if someone gave "ticket", we would produce "tix". ...
1
vote
1answer
39 views

QLinguist cannot translate warning messages

In Qlinguist, I translated ui and some corresponding warning messages, generated qm file, and loaded it, but in the result it only can translate the ui, but not those warning messages. My code is like ...
0
votes
0answers
63 views

iOS Find Subject [closed]

I am programming an iOS app where when the user types in a sentence it will be able to determine the different elements. I have looked into apples NSLinguisticTagger Class but unfortunately it can not ...
0
votes
1answer
45 views

Searching a database not including plurals in javascript code

I have a program where I give it a noun and it checks in its database with a table of nouns, to see if that noun is there. That works find for singular nouns. eg. User types, 'What is a tree?' ...
1
vote
2answers
516 views

How to use Qt Linguist for Qt UI file?

I am using Qt linguist to translate a ui file. I obtained its ts file using lupdate, and translated those words and phrases. Now I want to add it to my code, but I found from its tutorial that seems ...
1
vote
2answers
80 views

Upper or lower case inside in abbreviation tags?

Since HTML5 does not support Microsoft's <acronym> tag, we're left with using the abbreviation element: <abbr title="Microsoft">MS</abbr> When it comes to capitalization, cases ...
7
votes
4answers
261 views

Implementing a rhyme finder

Was wondering if anyone had any tips or could point me in the right direction to finding/creating some sort of algorithm to find rhyming words. I specifically do not want to use an API, as creating ...
0
votes
0answers
97 views

Introduction to NLP Programming? [closed]

I've been trying to find a good introduction to programming with NLP. I don't really care which language; if I don't know it, I'll learn it. My problem is that the most popular books on the subject ...
1
vote
0answers
67 views

Language-independent keyboard: culturating neutral text in English -kbd without things such as umlauts?

I like to use US Dvorak International keyboard while programming -- every manual, every documentation and also program with it. I am driving my teachers crazy because every-now-and-then they require ...
2
votes
1answer
97 views

How to recognize if word has no meaning, maybe some impossible syllables?

Initially, I have m arrays of n characters, where each array contains unknown (for me) character of needed word (condition: word has meaning). For example, m = 4, n = 3: array0 = {'t', 'e', 'c'}, ...
0
votes
2answers
79 views

How to trim text to certain length, full sentences?

I'm looking for a solution for trimming an unknown text to certain length. Keeping only full sentences. So text like this "Were you born 1. 3. 1987 in Prague? Štěpán Jr. lives there for 3 years ...
3
votes
0answers
184 views

How can I generate parse trees of English sentences on iOS?

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 tree ...
0
votes
1answer
914 views

Is there an online application that automatically draws tree structures for phrases/sentences?

i.e., it takes any sentence/phrase as input and automatically figures out the tree diagram. I'm looking for a way to see the tree structures for sentences/phrases whose tree structures I'm unsure of ...
3
votes
1answer
156 views

Keyword extraction from short dutch texts

I would like to extract keywords from short dutch texts. Is there an API for this or some library which i could use. In case those are not available for dutch, any tips on how to extract them myself ...
1
vote
0answers
62 views

Qt linguist why I cant alter the default translation

I tried to open one of the default ts files from the linguist tool and figured that I am not able to edit the translations, If I have installed the binaries.but then I am able to do it if I have built ...
2
votes
2answers
71 views

English misspeling correction sequences

I am doing a bit of search engine. One of the features is an attempt to correct spelling in nothing is found. I replace the following phonetic sequences: ph<->f, ee <-> i, oo<->u, ou<->o ...
0
votes
4answers
211 views

Trie? Matching words with trailing characters in python

This is a little different from most trie problems on stackoverflow (yes, I've spent time searching and reading), so please bear with me. I have FILE A with words like: allow*, apolog*, etc. There ...
0
votes
2answers
99 views

Create a frequency table that captures popular substrings within strings of a certain length - Python

I'm trying to compute frequency analysis on a Swahili corpus which I'm compiling. At the moment, this is what I have: import os import sys from collections import Counter import re path = ...
0
votes
2answers
100 views

ERROR: invalid mode ('r') - Cannot conduct Cognate Analysis using LingPy in Python 2.7

I'm using the LingPy 1.0.1 library for Python 2.7, attempting to conduct Cognate Analysis on a single tab-delimited list of Spanish-English words I created. The list is named SE.lxs and looks like ...
3
votes
1answer
103 views

How to parse text too variable for formal grammars but too constrained for NLP?

I'm dealing with a corpus of text that is written informally, but generally conforms to a very standard format by convention (think something like Froyo Frozen Yogurt, Smucker's Peanut Butter) and ...
0
votes
1answer
92 views

Dataset for common words to construct basic sentences

So I am making a "fridge magnet" interactive and I was trying to figure out a valid dataset for words to have for the user to drag around. I am using this data set .. but it is not that great ...
2
votes
1answer
275 views

word to syllable converter

I am writing a piece of code in c++ where in i need a word to syllable converter is there any open source standard algorithm available or any other links which can help me build one. for a word like ...
1
vote
1answer
154 views

replacing values in a nested tuple with the whole tuple

Okay, I am working on a linguistic prover, and I have series of tuples that represent statements or expressions. Sometimes, I end up with an embedded "and" statement, and I am trying to "bubble" it ...
3
votes
2answers
275 views

Detect whether the word you is a subject or object pronoun based on sentence context.

Ideally using regex, in python. I'm making a simple chatbot, and it's currently having problems responding to phrases like "I love you" correctly (it'll throw back "You love I" out of the grammar ...
2
votes
1answer
98 views

Shorten string to just a product name

I need some help. I am trying to shorten a full product name from Amazon. For example: Samsung Galaxy S II Epic Touch 4G Android Phone (Sprint) Galaxy S II I want to do this programatically. Any ...
7
votes
2answers
305 views

Render linguistic syntax tree in browser

The input is either: (1) a bracketed representation of a tree with labeled internal nodes such as: (S (N John) (VP (V hit) (NP (D the) (N ball)))) with output: (Whether the lines are dashed and ...
11
votes
2answers
409 views

Find words and combinations of words that can be spoken the quickest

I'm a big fan of discovering sentences that can be rapped very quickly. For example, "gotta read a little bit of Wikipedia" or "don't wanna wind up in the gutter with a bottle of malt." (George ...
17
votes
1answer
2k views

How do I identify the part of speech of a word within a NSString?

The app I'm currently working on requires me to determine the part of speech of a word in NSString. So basically is there a library/database/class which you can access in Objective C which allows one ...
18
votes
3answers
563 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. ...
0
votes
1answer
383 views

API to find Nouns in Sentence and Nearest Adjective in Meaning in Ruby

I'm looking for an API or Ruby Gem that can do two things. The first is look up each word and see if it is a noun or not. The second thing I want to be able to do is look up adjectives (and maybe ...
2
votes
1answer
639 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
122 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 ...
3
votes
1answer
713 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 ...
4
votes
2answers
629 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 ...
2
votes
1answer
265 views

words usage database?

Is there any free database/place out there with commonality/usage ratios of English words? (British or U.S. English, doesn't matter) I don't care about the exact numbers, only relative to eachother. ...
2
votes
1answer
362 views

I am looking for dictionary source file format and related tools

I am looking for dictionary source file format which is convenient to edit in general purpose text editor (I use Emacs) and can be stored under version control (and allow easy merge). So I can share ...
2
votes
5answers
2k 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 ...
2
votes
1answer
84 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 ...
0
votes
0answers
477 views

English word classification

English word detection from string + classification I have a large database of urls and I want to extract the English word from this data and then classify the words contained in URL Eg apple.com -> ...
0
votes
1answer
364 views

How to fix error in Linguistics library in Rails 3.1 and Ruby 1.9.2

My application has had the following lines without any trouble in recent versions of rails: gem 'linguistics' # in Gemfile Linguistics::use(:en, :installProxy => :en) # In environment.rb ...
0
votes
0answers
269 views

SimpleNLG: How to write specific “What questions”?

I am trying to use simpleNLG for a project, and I am quite stuck with creating specific WH-questions. What I want to achieve is to create questions like: "What are examples of jobs?" "What is a ...
10
votes
3answers
2k 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 ...
0
votes
4answers
2k views

machine-learning, artificial-intelligence and computational-linguistics

I would love to talk to people who have experience in machine-learning, computational-linguistics or artificial-intelligence in general but by the following example: • Which existing software would ...

1 2 3