simstring icon indicating copy to clipboard operation
simstring copied to clipboard

A Python implementation of the SimString, a simple and efficient algorithm for approximate string matching.

Results 5 simstring issues
Sort by recently updated
recently updated
newest added

One obstacle to implementing Overlap measure is the fact that the original implementation gives max size for that measure as [`INT_MAX`](https://github.com/chokkan/simstring/blob/6209ea86d84f7043f8e19029d83299f458665ec5/include/simstring/measure.h#L137). To solve this, one can only [restrict this](https://github.com/chokkan/simstring/blob/6209ea86d84f7043f8e19029d83299f458665ec5/include/simstring/simstring.h#L650) at...

Hi, this module appears to not have had any changes to it in a while. Are you still actively maintaining it?

Hi, I don't really know whether it's a bug or not. When replacing the ``CosineMeasure`` by ``JaccardMeasure`` in the MWE and using 1-chargrams, I got matches with scores below the...

First of all, thanks for this awesome Python port of SimString. It has helped solve some very big problems for me that no other module can. There is another similarity...

Adds support to 3.13 buildss