Showing posts with label r-precision. Show all posts
Showing posts with label r-precision. Show all posts

Wednesday, January 23, 2008

R-precision as consistency

Last post, I mentioned r-precision as a way to measure the accuracy of a recommendation algorithm. I thought it may be pertinent to analyze in more detail the r-precision results of the certain bag-of-frames approach I'm working with.
For completeness, the results here are from using the uspop2002 dataset (105 artists, 10 tracks per artist, 20 MFCC's per 66.67 ms frame) modeled with 32 component GMM's and using the KL-divergence-based earth-mover's distance (KL-EMD) as the similarity metric. This is a standard introduced years ago, and one I'm inclined to stick with for comparison's sake.
Below are listed the top ranking artists by r-precision along with their average r-precision values. This means that their songs are more closely connected to each other in the similarity network than other artists'. Again, I'm only modeling timbre, so artists with a highly consistent "sound" will have high average r-precision.
  1. westlife - 0.711
  2. korn - 0.589
  3. mya - 0.456
  4. goo goo dolls - 0.422
  5. lionel richie - 0.411
  6. deftones - 0.378
  7. craig david - 0.378
  8. ricky martin - 0.367
  9. staind - 0.367
  10. savage garden - 0.356
We see Westlife, a Irish boy-band, at the top of the list. While I'd like to chalk this up to the homogeneous sound of teen pop music, I think some of these files are only fragments of songs, perhaps making the models particularly distant from others. But Korn and the Goo Goo Dolls don't have this excuse.
Looking at the bottom of the list:
  1. chemical brothers - 0.0
  2. depeche mode - 0.0111
  3. radiohead - 0.0222
  4. fatboy slim - 0.0222
  5. daft punk - 0.0222
  6. coldplay - 0.0222
  7. sting - 0.0333
  8. portishead - 0.0333
  9. pet shop boys - 0.0333
  10. oasis - 0.0333
So, it appears that artists we would naturally associate with being charmingly inconsistent are indeed at the bottom of the r-precision list. Furthermore, the collection actually uses song from multiple albums for several of these artists (3 + a single for Chemical Bros., 3 + a singles collection for Depeche Mode, and 5 for Radiohead), compared to the top artists (1 each except for Craig David's 2 + a single).
This shows that my content-based recommendation engine just may be doing what it's suppose to. A track from The Bends would not be the most appropriate result for a query seeded from a Kid A track, something I wouldn't expect a collaborative-filtering-based engine to necessarily deal with. This agnostic power is what appeals to me most about this approach. A machine trained to analyze, and dare I say "understand", music recommends based on the music as it is encoded as audio (which, after all, is how humans perceive it), not by any tags or hype that may be attached to it.

Homogenization by distance

An easy way to remove these distant components seen in anti-hubs is to simply ignore them. So, using several empirically determined thresholds, I simply removed components greater than the threshold away from the GMM centroid. I did this iteratively: removing the farthest (see footnote) from the centroid and recomputing the centroid, until all components are inside the distance requirement. This was too remove the effect of the distant components on the original centroid. The thresholds I ran were 30, 25, 20, 15 (this is Euclidean distance in 20-dimensional MFCC space). This is similar to what JJ does his thesis, but he used prior probabilities to homogenize, which do not have a strong correlation with their parent model's hubness. This, in itself, is sort of non-intuitive, since one would think priors show the "importance" of a component, but one must remember that with mixture models components are often highly overlapped. In this way, a particular component's prior could be relatively low, but its neighboring components together could be quite large or "important".
First a sanity check: the idea is that hubs are modeled appropriately, and anti-hubs have components modeling timbrally distant song sections, in turn making the models inaccurately distant from others. By this logic, homogenization should affect anti-hubs more than hubs. To verify this, I looked at the difference in the number of components in the homogenized models to the originals (which had 32 components) in relation to the hubness of each song. Below are scatter plots for each homogenization run.
We can see that with slight homogenization (e.g. 30 or 25) most strong hubs are unaffected (i.e. difference = 0) but with increased homogenization, songs across the board are seeing reduced components. So, I'd say this is reasonable.
The end results turn out to be mixed. The overall hubness of the set seems to improve (ie decrease). Below is the histogram for each homogenization run.
As the models are homogenized, we see the middle of the histogram "fatten" as the number of strong hubs and anti-hubs both decrease. Using the 100-occurances measure, the number of hubs (h greater than 200) is 157, 150, 146, and 151 for no homogenization, a thresholding of 30, 25, 20, and 15, respectively. The number of anti-hubs (h less than 5) are 124, 113, 102, 91, and 78, respectively. This is promising but may simply be another sanity check since I based the homogenization on the observation that there was a strong correlation between hubness and distant components. The real question is whether the recommendations are better. Since there is no really ground truth with this kind of work (although some have sought it), one simple measure to look at is r-precision. This is the proportion of songs in by the same artist are returned in the top-9 recommendations (9 because there are 10 songs per artist in the uspop2002 collection). If an artist is highly consistent, in that each of his songs is closer to the his other songs than any other artist's songs, r-precision will be high. This is of course problematic since an artist's sound can vary significantly from song to song, not mention albums. But since it's easy and relatively reasonable, I'll use it anyway.
It turns out that homogenization actually hurts r-precision. Over the same runs as above, the average r-precisions over all songs are 0.16169, 0.15989, 0.1564, 0.1472, and 0.12275. This means that the distant components did have some discriminative power, at least in the problem of artist classification.
So, homogenization, believe it or not, may not be the holy grail to improving this approach.

Footnote: A professor of mine once pointed out that the definitions of farther and further, which are distinct only in their literal or figurative usage (e.g. farther down the road, further into debt), tend to gradually exchange meanings back and forth over time, usually with a period of only about a few decades. So, if you're reading this blog in twenty years, know that at the time of this post, farther indeed refers to a physical distance.