Replies: 1 comment 1 reply
-
I do not think I will add something like this in, but if it's important to you you can absolutely write an extension doing something like this. The large question is whether you need it from a performance perspective: for a in list_a:
for b in list_b:
partial_ratio_alignment(a, b) is too slow, hwile: process.cdist(list_a, list_b, scorer=partial_ratio) is fast enough. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want to get "partial_ratio_alignment" between string lists.
If I run "cdist(list_a, list_b, scorer=partial_ratio)", I get only scores. I want to get at least the "dest_start" values.
I think I need to make the return value as float or int. Is it possible to implement "scorer=patial_ratio_alingment.dest_start" ?
RapidFuzz is very useful. Thank you maxbachmann!
This is my first time asking a question on github. I hope this is not a misguided question.
Beta Was this translation helpful? Give feedback.
All reactions