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.8.0.tar.gz
(70.8 kB
view details)
Built Distribution
File details
Details for the file fog-0.8.0.tar.gz
.
File metadata
- Download URL: fog-0.8.0.tar.gz
- Upload date:
- Size: 70.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.6.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e90824832d729f6409440f97a426ca92062bfb5275bd9edeb311fd15f39e3b37 |
|
MD5 | b81a4ed0c6d7c67bc70bf4f21ec5e24d |
|
BLAKE2b-256 | a3a2ec18d7639d97cf6e3740765be81d8f758972243869c97f06443a4de80db4 |
File details
Details for the file fog-0.8.0-cp36-cp36m-macosx_10_13_x86_64.whl
.
File metadata
- Download URL: fog-0.8.0-cp36-cp36m-macosx_10_13_x86_64.whl
- Upload date:
- Size: 81.1 kB
- Tags: CPython 3.6m, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.6.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1e8b48d85bc0c3887cf490f3b84f36f9a626adae125c8b515a176f84855acf76 |
|
MD5 | 1ae5e20b93a93bd447378e163991d79b |
|
BLAKE2b-256 | 0cc858359d0d2da75fb97cc86e765d52ac6c8b0e5200c2ef092295f751abf0d5 |