Given a query I have a cosine score for a document. I also have the documents pagerank. Is there a standard good way of combining the two?
I was thinking of multiply them
Total_Score = cosine-score * pagerank
Because if you get to low on either pagerank or the cosine-score, the document is not interesting.
Or is it preferable to have a weighted sum?
Total_Score = weight1 * cosine-score + weight2 * pagerank
Is this better? Then you might have zero cosine score, but a high pagerank, and the page will show up among the results.