-
If I attempt:
```
alceu@yggdrasil:~/Docker$ cpan Bundle::CPAN::Reporter::Smoker::Tests
CPAN: CPAN::SQLite loaded ok (v0.211)
Database was generated on Sun, 03 Jul 2016 16:09:13 GMT
Could not expand …
-
e.g.:
* 0-1 Normalized SNPs
* [Euclidean Distance](https://en.wikipedia.org/wiki/Euclidean_distance)
* Levenshtein Distance
* Damerau-Levenshtein Distance
* Hamming Distance
See [Wikipedia: Mo…
-
Currently, the fuzzy string matching is done by combining the similarity estimates from the Damerau-Levenshtein and Ratcliff-Obershelp algorithms in quadrature. This turns out to be far too slow in si…
-
I tried to reproduce the benchmarks in your readme. However my results running the same benchmark are greatly different from the results you achieved. Note I scaled the benchmarks down from `500000` t…
-
As far as I can tell, this does not support lookup of sentences?
```
from sympound import sympound
from pyxdameraulevenshtein import damerau_levenshtein_distance
distancefun = damerau_levenshtein_…
-
I believe the two strings "CA" and "ABC" technically only require two changes under Damerau-Levenshtein distance: Transposition + Insertion.
CA -> AC -> ABC
This library returns "3" as the n…
-
The Smith-Waterman algorithm is essentially a paiwise sequence alignment algorithm typically used in bioinformatics to optimally align two (e.g. DNA) sequences.
The Smith-Waterman algorithm can be s…
-
I just tried to run a simple example with weighted-levenshtein on Linux (Fedora 36) with Python3.9 and Python3.10, but I did run into a segmentation fault.
I installed the library using:
```
pip in…
-
Just wanted to signal that the distance `DamerauLevenshtein` defined in the `StringDistances` actually corresponds to the Optimal String Alignement distance.
In StringDistances 0.11, `DamerauLeven…
-
I'm not sure if SymSpell already has support for weighted edit distance. If so, please tell me how to use it.
Otherwise, I suggest to add this as another possible distance metric, in addition to Le…