You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While calculating edit distance of two strings, could you possibly extend the library to keep track of the insertions, deletions, and replacements required to turn one string into another?
Eg.
'abcde' -> 'aacdde'
we acquire something like
{'insertions': {4:'d'}, 'replacements': {1:'a'}}
or something similar?
This would be a great way to do error analysis of character error rates and similar metrics.
The text was updated successfully, but these errors were encountered:
While calculating edit distance of two strings, could you possibly extend the library to keep track of the insertions, deletions, and replacements required to turn one string into another?
Eg.
'abcde' -> 'aacdde'
we acquire something like
or something similar?
This would be a great way to do error analysis of character error rates and similar metrics.
The text was updated successfully, but these errors were encountered: