abbadon420@lemm.ee
on 11 Sep 2024 07:53
nextcollapse
I like being std free
Deebster@programming.dev
on 11 Sep 2024 11:42
collapse
Token-based string distances looks like exactly what I need for my current side project - I’m using Levenshtein but I should be comparing based on words, not characters.
I just need to figure out which (if any) of these does what I need.
threaded - newest
I like being std free
Token-based string distances looks like exactly what I need for my current side project - I’m using Levenshtein but I should be comparing based on words, not characters.
I just need to figure out which (if any) of these does what I need.
Edit: looks like the Python version has that information: github.com/life4/textdistance?tab=readme-ov-file#…
In Python version, pass the list of words directly into the algorithm, and it will compare words. In Rust version, use Algorithm.for_words:
docs.rs/textdistance/…/trait.Algorithm.html#metho…