Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
4answers
4k views

How to extract common / significant phrases from a series of text entries

I have a series of text items- raw HTML from a MYSQL database. I want to find the most common phrases in these entries (not the single most common phrase, and ideally, not enforcing word-for-word ...
8
votes
5answers
3k views

NLP: Qualitatively “positive” vs “negative” sentence

I need your help in determining the best approach for analyzing industry-specific sentences (i.e. movie reviews) for "positive" vs "negative". I've seen libraries such as OpenNLP before, but it's too ...
7
votes
2answers
1k views

How to find common phrases in a large body of text

I'm working on a project at the moment where I need to pick out the most common phrases in a huge body of text. For example say we have three sentences like the following: The dog jumped over the ...
6
votes
2answers
73 views

Efficient Lemmatizer that avoids dictionary lookup

I want to convert string like 'eat' to 'eating', 'eats'. I searched and found the lemmatization as the solution, but all the lemmatizer tools that I have come across uses wordlist or ...
6
votes
1answer
449 views

tag generation from a small text content (such as tweets)

I have already asked a similar question earlier but I have notcied that I have big constrain: I am working on small text sets suchs as user Tweets to generate tags(keywords). And it seems like the ...
4
votes
3answers
222 views

Training data for sentiment analysis

Where can I get a corpus of documents that have already been classified as positive/negative for sentiment in the corporate domain? I want a large corpus of documents that provide reviews for ...
4
votes
5answers
105 views

Check if a string is a possible abbrevation for a name

I'm trying to develop a python algorithm to check if a string could be an abbrevation for another word. For example fck is a match for fc kopenhavn because it matches the first characters of the ...
3
votes
3answers
59 views

Prioritizing text based on content

If you have a list of texts and a person interested in certain topics what are the algorithms dealing with choosing the most relevant text for a given person? I believe that this is quite a complex ...
3
votes
3answers
1k views

Java text analysis libraries

I'm looking for a java driven solution to a requirement for analysing sentences to log whether a key word was used positively or negatively. Ie The key word might be 'cabbages' and the sentence:- ...
3
votes
3answers
247 views

term clustering library?

Does anybody know an open-source\free library that does term clustering? Thanks, yaniv
2
votes
1answer
74 views

How to create templates from html page automatically?

I have a use case in which I need to render an unformatted text in the format of a given web page programmatically in Java. i.e. The text should automatically be formatted like the web page with ...
2
votes
1answer
254 views

How to identify tags (key words) automatically from a given text?

It should behave like Delicious toolbar for Firefox does; it lists possible tags to click. The effect is shown as below: The code should be able to find key words for the text. Any good algorithm ...
2
votes
2answers
118 views

Algorithm choice for gaining intelligence from messages

What I'm trying to do is find an algorithm that can I can implement to generate 'intelligent' suggestions to people, by comparing messages they send to messages sent by their peers. For example, ...
2
votes
3answers
3k views

Any tutorial or code for Tf Idf in java

I am looking for a simple java class that can compute tf-idf calculation. I want to do similarity test on 2 documents. I found so many BIG API who used tf-idf class. I do not want to use a big jar ...
1
vote
3answers
43 views

Get important words in title java library [closed]

Is there any java library that with given text (title) gets collection of important words in it. EDITED: By important I mean the one that has define the main idea of the sentence. Thank You.
1
vote
0answers
33 views

How does Microsoft Language Detection compare to LingPipe?

How does Microsoft Language Detection ( MSDN reference ) compare to LingPipe ( Language ID ) and other widely used tools for language identification?
1
vote
1answer
85 views

Simple keyword / key phrase analysis in Ruby

I would like to create a simple list of popular keywords or phrases within tweets containing a specific hashtag. For example, for all tweets with the '#justinbieber' hashtag, I would like to obtain ...
1
vote
2answers
53 views

Can extract generic entities using Lingpipe other than People, Org and Loc?

I have read through Lingpipe for NLP and found that we have a capability there to identify mentions of names of people, locations and organizations. My questions is that if I have a training set of ...
1
vote
1answer
257 views

How to compile java file which calls MeCab - Japanese part-of-speech & morphological analyzer?

I'm trying to use MeCab (http://mecab.sourceforge.net/#download) to do the word segmentation of Japanese sentences as well to tag every word by part of speech. I installed MeCab by following these ...
1
vote
2answers
313 views

Text analysis for a passage in PHP / Javascript

I do not understand how to implement a natural language processing system by using PHP + JavaScript + MySQL. In my case, I would like to develop a text analysis and visualization technique for ...
1
vote
1answer
333 views

Efficient keyword detection / extraction. Predefined set of keywords

How can I efficiently extract keywords with relevance from a string? My list of keywords are predefined. For example, in an article about Michelle Obama that also mentions Barack Obama, I want to ...
1
vote
2answers
118 views

Splitting string on probable English word boundaries

I recently used Adobe Acrobat Pro's OCR feature to process a Japanese kanji dictionary. The overall quality of the output is generally quite a bit better than I'd hoped, but word boundaries in the ...
0
votes
1answer
44 views

Exact phrase search using lucene without increasing number of fields

For a phrase search, we want to bring up results only if there's an exact match (without ignoring stopwords). If it's a non-phrase search, we are fine displaying results even if the root form of the ...
0
votes
1answer
75 views

textalyser functionality using Python

Which Python based library is out that gives the text-analysis functionality similar to the http://textalyser.net/
0
votes
1answer
26 views

find key words when keys are pressed

I am looking for a .net implementation of a text analyzer. The text analyzing should happen after each character is entered. the analyzer should be able to store several key phrases and fire an event ...
0
votes
0answers
233 views

How to implement Word Tree in Java for PHP

I am new to natural language processing in computer engineering. I want to develop a searching function for my website runs by PHP. I have found interesting on Word Tree from Many Eyes website. This ...
0
votes
1answer
129 views

Get words corresponding to a match from SpanNearQuery in Lucene

I would need to retrieve the words in my text that correspond to a match of Spans returned by SpanNearQuery.getSpans(). For instance, if my text is [a b c d e f] and I use SpanNearQueries with queries ...
0
votes
2answers
126 views

Keyword Analyser [closed]

I want to know any algorithms or php code for working out keyword competition. The keyword can be used multiple sites per website and on multiple websites. I want to know how its ranking can be worked ...
0
votes
2answers
58 views

How to wrap words or words sequences which have not been already wrapped?

I'm trying to wrap words and words sequence from a given list with preg_replace. It almost works, but there are some use cases it doesn't and I can't figure it how. For instance I do this: // ...
0
votes
2answers
140 views

Algorithm to suggest a list of tags to users

Given a free text, I need to analyse this this text and suggest a list of tags from a pre existing list. What algorithms are out there in the market? Can they handle a case where, for example, the ...
0
votes
2answers
354 views

Word lists for a lot of articles - document-term matrix

I have nearly 150k articles in Turkish. I will use articles for natural language processing research. I want to store words and frequency of them per article after processing articles. I'm storing ...