Skip to content

Instantly share code, notes, and snippets.

@adsieg
Created May 6, 2019 12:58
Show Gist options
  • Save adsieg/f33430c62adf0185cbb1a176e3a3820b to your computer and use it in GitHub Desktop.
Save adsieg/f33430c62adf0185cbb1a176e3a3820b to your computer and use it in GitHub Desktop.
Jaccard Similarity
def jaccard_similarity(query, document):
intersection = set(query).intersection(set(document))
union = set(query).union(set(document))
return len(intersection)/len(union)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment