My program uses clustering to produce subsets of similar items and then uses the cosine similarity measure as a method of determining how similar the clusters are. For instance if user 1 has 3 clusters and user 2 has 3 clusters then every cluster is compared against each other, 9 results using the cosine similarity measure will be produced, e.g. [0.3, 0.1, 0.4, 0.12, 0.0, 0.6, 0.8, 1.0, 0.22]
My problem is, based on these results how can I turn these values into a tangible result to show how similar these two users are?
A simple method I produced was to just divide all the values by the number of comparisons and add them together to get 1 value but this is quite a simple approach.
Thanks,
AS
The basic description of what I am trying to achieve is whether it is possible to determine how similar two users, from the social bookmarking webservice Delicious.com, from their bookmarks and tags.
Thus far I have created clusters from the tags of a users bookmarks and the co-occurrences of each tag, for instance one cluster could be:
fruit: (apple, 15), (orange, 9), (kiwi, 2)
and another user may have a similar cluster produced from their tags:
fruit: (apple, 12), (strawberry, 7), (orange, 3)
The number represents how many times the tag co-occurred, in a saved bookmark, with the tag, "fruit" in this example.
I have used the cosine similarity measure to compare these clusters to determine how similar they are, and from my initial question, with many cluster comparison results (comparing every users clusters against another users clusters) I am unsure how to aggregate the results to producing a meaningful result.
It's very possible that I have been using the cosine similarity improperly,