Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Computer Science taxonomy

I am developing web application where users have collection of tags. I need to create a suggestion list for users based on the similarity of their tags.
For example, when a user logs in to the system, system gets his tags and search these tags in the DB of users and showing users who have similar tags. For instance if User 1 has following tags [Linux, Apache, MySQL, PHP] and User 2 has [Windows, IIS, PHP, MySQL] it says that User 2 matchs User 1 with a weight of 50%, because he has 2 similar tags(PHP and MySQL).
But imagine the situation where User 1 has [ASP, IIS, MS Access] and User 2 has [PHP, Apache, MySQL]. In this situation my system doesn't suggest User 2 as a "friend" to User 1 or vice versa. But we know that these two users has similarity on the field of work, both works on Web Technology (or Web Programming, etc).
So, that is why I need kind of taxonomy of computer science (right now, but probably I would need taxonomy of other fields also, like medicine, physics, mathematics, etc.) where these concepts are categorized and so that when I search for similarity of ASP and PHP, for example, it can say that they have similarity and belong into one group(or category).
I hope I described my problem clearly, but if something wrong explained would be happy for your corrections.
Thanks

like image 905
Bakhtiyor Avatar asked Jan 21 '23 23:01

Bakhtiyor


2 Answers

I don't think you actually need a taxonomy. With enough data, you should be able to do cluster analysis on the fields and infer the relationships between the tags. See this paper on automated tag clustering for some details. If you don't think that tag clustering and analysis based on tags can get you as far as you want, look at Flickr.

Alternatively, if you do think a taxonomy is required, consider using SKOS. If you can map your tags to SKOS, then you can perform this kind of analysis on them. Two sources of SKOS data you may find particularly useful are Library of Congress Subject Headings and DbPedia. If you have more questions about using SKOS, try SemanticOverflow.

like image 150
Tom Morris Avatar answered Jan 24 '23 13:01

Tom Morris


If these terms appear in forum or something like that, you can use Latent Semantic Analysis to construct clusters of terms.

like image 33
vartec Avatar answered Jan 24 '23 13:01

vartec