I want to create tags for my content automatically. There would be a constant tag list and the bot should create tags regarding to it. How can I do that? Do you know a class for that? Any suggestions would be appreciated!
Thank you!
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
How good do you need the tags to be? You could simply count n-gram word frequencies. With some tweaking this can create perfectly valid tags to use with blog posts, for example. If you're looking for something more advanced, and you have a corpus of documents, you could use TF*IDF (Term frequency, Inverse Document Frequency). This will show meaningful keywords mentioned in 1 document, based on their improbability of appearing in other documents. It will give you good results providing your corpus is large enough. A shortcut approach might be to identify a relevant section of the content (title? category? source?) and use something like this instead. Also Yahoo has a term extraction API which you might find interesting. |
|||
|
|