My requirement is to parse through a HTML document ( which will be an article) and come up with a few keywords which describe what the document is about.
For example, if a professor writes an essay about say, information security; i want to parse this HTML document and come up with keywords say, information security, secure data storage etc.
Are there any tools available for such parsing? Are there any algorithms employed to parse and come up with keywords??
VJ.
2
Contributors
5
Replies
3 Days
Discussion Span
1 Year Ago
Last Updated
6
Views
Related Article:XSL parsing of xml:text
is a XML, XSLT and XPATH discussion thread by gaboo that has 1 reply and was last updated 2 years ago.
I read both of them. One tool parses the entire document and lists the word density. I can opt for this tool if I work under the assumption that the article is about the word that occurs most number of times. But this might not hold true always. So, if there are any other tools that might be useful, please help me.
This will yield, say, 10 keywords. Then I have to check if the keywords returned by the scanner are semantically related to the ones that the user has explicitly tagged. If they are, then they are included in a separate field in the database.
*I will have a **semantic library containing the keywords related to the keywords tagged by the user.
** I think "WordNet" will be sufficient. But most of the posts in my website will be computer science oriented. So, if there are any semantic libraries meant for computer science, please let me know.
Also, I want to know if I can achieve my requirement using "protege". If not, are there any other tools/platform with which i can do the above??