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
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 ifTrue
, 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. IfNone
, the basic projection will be returned. Also acceptsjaccard
,overlap
,dice
,cosine
orbinary_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:
- First we record the string's set of consonant in an order where most frequently mispelled consonants will be last.
- 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:
- The first letter of the string
- Unique consonants in order of appearance
- 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
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
Built Distribution
File details
Details for the file fog-0.10.3.tar.gz
.
File metadata
- Download URL: fog-0.10.3.tar.gz
- Upload date:
- Size: 86.3 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
Algorithm | Hash digest | |
---|---|---|
SHA256 | d5d6e01fe521f079ff9b61553eca37a72dcf612bd76c16560f7c94edfcf1ba2f |
|
MD5 | d663a55a54229ccdc0acc091abb1152a |
|
BLAKE2b-256 | 540fa3df84e318430e2cee74b7de624568efea92d188462d253626d7765ad1e6 |
File details
Details for the file fog-0.10.3-cp36-cp36m-macosx_10_15_x86_64.whl
.
File metadata
- Download URL: fog-0.10.3-cp36-cp36m-macosx_10_15_x86_64.whl
- Upload date:
- Size: 96.4 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
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5a741393c67df0edcaa85fdf6145455cbddc52fcc3214628d27317b414db85da |
|
MD5 | 5e9fc9202d8827236060ad3cc927e131 |
|
BLAKE2b-256 | 641af1472303327f5a56ec1aeb61c002700c7288c166bc597a691176c60b4319 |