2

Like using Jaccards over Dice. I want real examples, of when I would prefer to use Jaccards, Dice, Cosine or any other similarity coefficient.

cantyousee
  • 21
  • 3

1 Answers1

1
  • Jaccard - measures similarity of assymetric, binary attributes. For example, if you have insurance claims with binary attributes ("poor driving record", "premium paid in cash") you can compare claims with those attributes.
  • Cosine - measures similarity between vectors, like feature vectors. Could be used in a recommender system where a user asks to see items similar to some selected item.
  • Dice - equivalent to F1-score. Often used in image segmentation, comparing a model's output with reference masks.
Wes
  • 682
  • 4
  • 13