A fuzzy matching & clustering library for python.
Project description
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.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
fog-0.5.3.tar.gz
(64.5 kB
view details)
Built Distribution
File details
Details for the file fog-0.5.3.tar.gz
.
File metadata
- Download URL: fog-0.5.3.tar.gz
- Upload date:
- Size: 64.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 01b71552ba2cb048342294eaa536dc2b77adf56056564480386d02a84900b97e |
|
MD5 | 056bc39020e156c243d35cc804ed34c3 |
|
BLAKE2b-256 | 1c8e1f129b0da97c3dbf982caa8f0a2bf8cd5b5d8f3ae310dcd8b137e70da91d |
File details
Details for the file fog-0.5.3-cp37-cp37m-macosx_10_13_x86_64.whl
.
File metadata
- Download URL: fog-0.5.3-cp37-cp37m-macosx_10_13_x86_64.whl
- Upload date:
- Size: 72.5 kB
- Tags: CPython 3.7m, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 085929e152134ee5e952b4f46017ad8c314883e566af485dcf7e454bf87fb436 |
|
MD5 | f2441be27baef853b73d13512ae96131 |
|
BLAKE2b-256 | 930543fc125f17810209ccec4e9a8a8417dbbe1bbc5cb7903b1ed33bb5d1a3bf |