Skip to main content

A fuzzy matching & clustering library for python.

Project description

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

Evaluation

best_matching

Efficient implementation of the "best matching F1" evaluation metric for clusters.

Arguments

  • truth iterable: the truth clusters.
  • predicted iterable: the predicted clusters.
  • allow_additional_items ?bool [False]: Whether to allow additional items that don't exist in truth clusters to be found in predicted ones. Those additional items will then be ignored when computing the metrics instead of raising an error when found.

Graph

floatsam_sparsification

Function using an iterative algorithm to try and find the best weight threshold to apply to trim the given graph's edges while keeping the underlying community structures.

It works by iteratively increasing the threshold and stopping as soon as a significant connected component starts to drift away from the principal one.

This is basically a very naive gradient descent with a very naive cost function but it works decently for typical cases.

Arguments

  • graph nx.Graph: Graph to sparsify.
  • starting_treshold ?float [0.0]: Starting similarity threshold.
  • learning_rate ?float [0.05]: How much to increase the threshold at each step of the algorithm.
  • max_drifter_size ?int: Max size of component to detach itself from the principal one before stopping the algorithm. If not provided it will default to the logarithm of the graph's total number of nodes.
  • weight ?str [weight wrt networkx conventions]: Name of the weight attribute.
  • remove_edges ?bool [False]: Whether to remove edges from the graph having a weight less than found threshold or not. Note that if True, this will mutate the given graph.

monopartite_projection

Function computing a monopartite projection of the given bipartite graph. This projection can be basic and create a weighted edge each time two nodes in target partition share a common neighbor. Or it can be weighted and filtered using a similarity metric such as Jaccard or cosine similarity, for instance.

Arguments

  • bipartite nx.Graph: Target bipartite graph.
  • project str: Name of the partition to project.
  • part ?str [bipartite]: Name of the node attribute on which the graph partition is built e.g. "color" or "type" etc.
  • weight ?str [weight]: Name of the weight edge attribute.
  • metric ?str [None]: Metric to use. If None, the basic projection will be returned. Also accepts jaccard, overlap, dice, cosine or binary_cosine.
  • threshold ?float [None]: Optional similarity threshold under which edges won't be added to the monopartite projection.
  • use_topology ?bool: Whether to use the bipartite graph's topology to attempt a subquadratic time projection. Intuitively, this works by not computing similarities of all pairs of nodes but only of pairs of nodes that share at least a common neighbor. It generally works better than the quadratic approach but can sometimes hurt your performance by losing time on graph traversals when your graph is very dense.
  • bipartition_check ?bool: This function will start by checking whether your graph is bipartite because it can get stuck in an infinite loop if given graph is not truly bipartite. Be sure to disable this kwarg if you know beforehand that your graph is bipartite and for better performance.

Keyers

omission_key

Function returning a string's omission key which is constructed thusly:

  1. First we record the string's set of consonant in an order where most frequently mispelled consonants will be last.
  2. Then we record the string's set of vowels in the order of first appearance.

This key is very useful when searching for mispelled strings because if sorted using this key, similar strings will be next to each other.

Arguments

  • string str: The string to encode.

skeleton_key

Function returning a string's skeleton key which is constructed thusly:

  1. The first letter of the string
  2. Unique consonants in order of appearance
  3. Unique vowels in order of appearance

This key is very useful when searching for mispelled strings because if sorted using this key, similar strings will be next to each other.

Arguments

  • string str: The string to encode.

Metrics

cosine_similarity

Function computing the cosine similarity of the given sequences. Runs in O(n), n being the sum of A & B's sizes.

Arguments

  • A iterable: First sequence.
  • B iterable: Second sequence.

sparse_cosine_similarity

Function computing cosine similarity on sparse weighted sets represented as python dicts.

Runs in O(n), n being the sum of A & B's sizes.

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.
  • B Counter: Second weighted set.

sparse_dot_product

Function used to compute the dotproduct of sparse weighted sets represented by python dicts.

Runs in O(n), n being the size of the smallest set.

Arguments

  • A Counter: First weighted set.
  • B Counter: Second weighted set.

binary_cosine_similarity

Function computing the binary cosine similarity of the given sequences. Runs in O(n), n being the size of the smallest set.

Arguments

  • A iterable: First sequence.
  • B iterable: Second sequence.

sparse_binary_cosine_similarity

Function computing binary cosine similarity on sparse vectors represented as python sets.

Runs in O(n), n being the size of the smaller set.

Arguments

  • A Counter: First set.
  • B Counter: Second set.

dice_coefficient

Function computing the Dice coefficient. That is to say twice the size of the intersection of both sets divided by the sum of both their sizes.

Runs in O(n), n being the size of the smallest set.

from fog.metrics import dice_coefficient

# Basic
dice_coefficient('context', 'contact')
>>> ~0.727

Arguments

  • A iterable: First sequence.
  • B iterable: Second sequence.

jaccard_similarity

Function computing the Jaccard similarity. That is to say the intersection of input sets divided by their union.

Runs in O(n), n being the size of the smallest set.

from fog.metrics import jaccard_similarity

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

Arguments

  • A iterable: First sequence.
  • B iterable: Second sequence.

weighted_jaccard_similarity

Function computing the weighted Jaccard similarity. Runs in O(n), n being the sum of A & B's sizes.

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.
  • B Counter: Second weighted set.

overlap_coefficient

Function computing the overlap coefficient of the given sets, i.e. the size of their intersection divided by the size of the smallest set.

Runs in O(n), n being the size of the smallest set.

Arguments

  • A iterable: First sequence.
  • B iterable: Second sequence.

Project details


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.10.2.tar.gz (85.6 kB view details)

Uploaded Source

Built Distribution

fog-0.10.2-cp36-cp36m-macosx_10_15_x86_64.whl (95.6 kB view details)

Uploaded CPython 3.6m macOS 10.15+ x86-64

File details

Details for the file fog-0.10.2.tar.gz.

File metadata

  • Download URL: fog-0.10.2.tar.gz
  • Upload date:
  • Size: 85.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.7.0 requests/2.25.1 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.56.1 CPython/3.6.10

File hashes

Hashes for fog-0.10.2.tar.gz
Algorithm Hash digest
SHA256 e9c5cac2a19610d164bf783914a22cab1e7df931e4fd7978283637b6be7739ac
MD5 9815c425689a9c9757b5a5a38ad541ef
BLAKE2b-256 744c375dd82b90ca4bc66a2043d496c87d2b4132a5b00015e37e2499edfb6677

See more details on using hashes here.

File details

Details for the file fog-0.10.2-cp36-cp36m-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: fog-0.10.2-cp36-cp36m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 95.6 kB
  • Tags: CPython 3.6m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.7.0 requests/2.25.1 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.56.1 CPython/3.6.10

File hashes

Hashes for fog-0.10.2-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f297bd3bad8f4d694283163d8bebd5fcf0b0cdf8331a0a67febf54ebf890cf43
MD5 64a4ec7bbf4bcf9a8ef13fb7f36321a8
BLAKE2b-256 5ab81abd542609cbf4f418c001dd20683d96a506f43897aa7de7c931fa04f895

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page