A fuzzy matching & clustering library for python.
Go to file
Yomguithereal 3396936b36 Better 2018-06-21 11:08:35 +02:00
data Bench 2018-06-06 17:26:07 +02:00
experiments Refining 2018-06-20 12:57:43 +02:00
fog Better 2018-06-21 11:08:35 +02:00
test Implementing SuperMinHash 2018-06-20 18:07:23 +02:00
.gitignore Updating phylactery 2018-06-07 11:11:41 +02:00
.travis.yml Dropping py33 from CI 2018-04-27 14:21:05 +02:00
LICENSE.txt Fixing 2018-05-18 15:59:00 +02:00
Makefile Updating phylactery 2018-06-07 11:11:41 +02:00
README.md hr 2018-06-01 19:59:24 +02:00
requirements.txt Improvements 2018-06-11 17:00:59 +02:00
setup.py Bump 2018-06-20 16:27:30 +02:00

README.md

Build Status

Fog

A fuzzy matching/clustering library for Python.

Installation

You can install fog with pip with the following command:

pip install fog

Usage

Metrics

sparse_cosine_similarity

Computes the cosine similarity of two sparse weighted sets. Those sets have to be represented as counters.

from fog.metrics import sparse_cosine_similarity

# Basic
sparse_cosine_similarity({'apple': 34, 'pear': 3}, {'pear': 1, 'orange': 1})
>>> ~0.062

Arguments

  • A Counter: first weighted set. Must be a dictionary mapping keys to weights.
  • B Counter: second weighted set. Muset be a dictionary mapping keys to weights.

jaccard_similarity

Computes the Jaccard similarity of two arbitrary iterables.

from fog.metrics import jaccard_similarity

# Basic
jaccard_similarity('context', 'contact')
>>> ~0.571

Arguments

  • A iterable: first sequence to compare.
  • B iterable: second sequence to compare.

weighted_jaccard_similarity

Computes the weighted Jaccard similarity of two weighted sets. Those sets have to be represented as counters.

from fog.metrics import weighted_jaccard_similarity

# Basic
weighted_jaccard_similarity({'apple': 34, 'pear': 3}, {'pear': 1, 'orange': 1})
>>> ~0.026

Arguments

  • A Counter: first weighted set. Must be a dictionary mapping keys to weights.
  • B Counter: second weighted set. Muset be a dictionary mapping keys to weights.