I want to choose a category of text(article)(ex. sport,economic), string, and I want to know whether the best way to do with function similar_text() or otherwise. I need to compare the texts. One article is a description which should be assigned to categories. The second text is actually text with all the key words that describe the category. Comparing the two texts given the percentage of similarity. Text that has the most similarities with the particular category is in fact and that category. Should I do this cryptographic similar_text() or otherwise? (soory for my english)

link|improve this question

70% accept rate
code example? really have no idea what you are asking. – Dagon Oct 29 '11 at 20:22
ex. I need to write an algortam to automaticly get category for some text. example. is a text about sport. I need to get percentace of similarity. I compare this text about sport with other texts. Other texts is a key word which describe that category. When I compare all text category with my text about sport where I get biggest percentace of similarity that is the category for my text about sport and sport text will get sport category. – JO JOJO Oct 29 '11 at 20:28
How to do that- Can I do this with similar_text() or not. – JO JOJO Oct 29 '11 at 20:29
example is google news... google automaticly get category for text(atricle-news) – JO JOJO Oct 29 '11 at 20:29
feedback

1 Answer

up vote 1 down vote accepted

I would use a Bayesian classifier to determine the degree of similarity.

link|improve this answer
not good idea to do with funcyion similar_text() ? – JO JOJO Oct 29 '11 at 20:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.