3
votes
7answers
150 views
find some sentences
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?
As requested by Jeremy Stein - the …
0
votes
4answers
89 views
How to make words into a category. (NLP)
I love to eat chicken.
Today I went running, swimming and played basketball.
My objective is to return FOOD and SPORTS just by analyzing these two sentences. How can you do that …
1
vote
4answers
91 views
Does WordNet have “levels”? (NLP)
For example...
Chicken is an animal.
Burrito is a food.
WordNet allows you to do "is-a"...the hiearchy feature.
However, how do I know when to stop travelling up the tree? I wan …
0
votes
1answer
60 views
chunking/text parsing using NLTK
I am trying to parse some text and diagram it, like you would a sentence. I am new to NLTK and am trying to find something in NLTK that will help me accomplish this. So far, I have …
3
votes
4answers
65 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 …
0
votes
2answers
43 views
What is the default chunker for NLTK toolkit in Python?
I am using their default POS tagging and default tokenization..and it seems sufficient. I'd like their default chunker too.
I am reading the NLTK toolkit book, but it does not se …
0
votes
1answer
45 views
Extracting pure content / text from HTML Pages by excluding navigation and chrome content
Hi,
I am crawling news websites and want to extract News Title, News Abstract (First Paragraph), etc
I plugged into the webkit parser code to easily navigate webpage as a tree. T …
3
votes
6answers
188 views
Algorithms to detect phrases and keywords from text
I have around 100 megabytes of text, without any markup, divided to approximately 10,000 entries. I would like to automatically generate a 'tag' list. The problem is that there are …
0
votes
1answer
45 views
LinkPipe or NLTK for extracting names and places
I'm looking to extract names and places from very short bursts of text example
"cardinals vs jays in toronto"
" Daniel Nestor and Nenad Zimonjic play Jonas Bjorkman w/ Kevin Ul …
1
vote
2answers
60 views
NLTK tagging in German
I am using NLTK to extract nouns from a text-string starting with the following command:
tagged_text = nltk.pos_tag(nltk.Text(nltk.word_tokenize(some_string)))
It works fine i …
1
vote
2answers
70 views
In Natural language processing, what is the purpose of chunking?
Does anyone know? Is this a place to ask Computer science questions or just programming?
3
votes
4answers
175 views
Correlation clustering in r
I'd like to use correlation clustering and I figure R is a good place to start.
I can present the data to R as a set of large, sparse vectors or as a table with a pre-computed diss …
1
vote
2answers
99 views
Natural language command language
I'm interested in developing a natural language command language for a domain with existing rules. I was very impressed when Terry Winograd's SHRDLU showed the way (the conversatio …
1
vote
2answers
128 views
Natural Language Processing in C++
I'm working on a project that already has a C++ base. I would like to have a plug-in for some natural language processing. I really like GATE but I'm not sure if it's worth launc …
4
votes
10answers
185 views
How to automatically excerpt user generated content?
I run a website that allows users to write blog-post, I would really like to summarize the written content and use it to fill the <meta name="description".../>-tag for exampl …
