Tagged Questions
The language-processing tag has no wiki summary.
16
votes
1answer
129 views
How to know if two words have the same base?
I want to know, in several languages, if two words are:
either the same word,
or the grammatical variants of the same word.
For example:
had and has has the same base: in both cases, it's the ...
8
votes
6answers
2k views
“stop words” list for english?
I'm generating some statistics for some english-language text and I would like to skip uninteresting words such as "a" and "the".
Where can I find some lists of these uninteresting words?
Is a list ...
4
votes
1answer
148 views
Python Arabic NLP
I'm in the process of assessing the capabilities of the NLTK in processing Arabic text in a research to analyze and extract sentiments.
Question is as follows:
Is the NTLK capable of handling and ...
3
votes
2answers
86 views
How to programmatically determine what language the content of a website is written in
I would like to programmatically determine language that content of a website is written in.
The only thing that comes into my mind is to compare content of the website with some set of words that ...
3
votes
1answer
127 views
Text Game Commands Parsing?
I'm interested in writing a parsing engine such as the ones in Inform, which is very robust.
I've tried a couple of different approach:
regex. For regex, I can only match {verb} {noun1 ...
2
votes
7answers
615 views
artificial intelligence - Creative Writing
I am trying to find information (and hopefully c# source code) about trying to create a basic AI tool that can understand english words, grammar and context.
The Idea is to train the AI by using as ...
1
vote
3answers
132 views
Can NLTK's XMLCorpusReader be used on a multi-file corpus?
I'm trying to use NLTK to do some work on the New York Times Annotated Corpus which contains an XML file for each article (in the News Industry Text Format NITF).
I can parse individual documents ...
1
vote
3answers
137 views
Search many expressions in many documents using Python
I often have to search many words (1000+) in many documents (million+). I need position of matched word (if matched).
So slow pseudo version of code is
for text in documents:
for word in words:
...
0
votes
3answers
45 views
searching for language recognition library in Python or web service
Is there any tool that provides language recognition functionality?
Like if I input a sentence of English, it will suggest that the string may be English.
I think I need one of the following stuff.
...
0
votes
2answers
162 views
String chunking algorithm with natural language context
I have a arbitrarily large string of text from the user that needs to be split into 10k chunks (potentially adjustable value) and sent off to another system for processing.
Chunks cannot be longer ...