StringPairFinder is a Python package designed to simplify the process of finding similarities between strings.
Evaluation on a dataset of 1000 observations (see notebooks/1_evaluation.ipynb
) :
- FuzzyWuzzy algorithm : 85.2 % of success rate
- StringPairFinder algorithm : 94.0 % of success rate
pip install stringpairfinder
import stringpairfinder as spf
spf.get_similarity("Munich", "Munchen")
>> 0.23809523809523808
spf.get_nearest_string(
string="Naples",
string_list=["Munchen", "Napoli", "Warszawa"]
)
>> 'Napoli'
spf.match_strings(
source_strings=["Naples", "Munich", "Warsaw"],
target_strings=["Munchen", "Napoli", "Warszawa"]
)
>> {'Naples': 'Napoli',
'Munich': 'Munchen',
'Warsaw': 'Warszawa'}
The similarity search between two strings consists of a matrix comparison of each character in those strings. Let"s assume we want to compare the strings "Munich" and "Bayern Munich".
- The first step is to construct a table
$T$ containing the first string in the column and the second in the row. The value of a cell is 1 if the character in the row is the same as the one in the column, and 0 otherwise.
- The second step aims at highlighting the fact that several characters correspond consecutively. Thus, for each row
$i$ and column$j$ , if cell$T[i-1, j-1] > 0$ , then$T[i, j]$ is twice the value of$T[i-1, j-1]$ .
- The third step is simply to calculate the similarity score, equal to the sum of all the cells in the
$T$ divided by the size of the table.
In this example, we obtain a similarity score of 64.
To connect the peers two by two, StringPairFinder calculates the similarity score of all (list1, list2) combinations and returns the association between each character string in list 1 with the character string in list 2 with the highest similarity score.