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
I was hoping you might advise me on how to incorporate transliteration into a text transformation pipeline.
Let's say I want to use a 3rd party library like from unidecode import unidecode.
I could create a bistring with new_bistr = bistr(text.modified, unidecode(text.modified))
but I would loose all the previous operations.
Is there a way to fold in a modified string that is calculated outside bistring's capabilities?
I was hoping you might advise me on how to incorporate transliteration into a text transformation pipeline.
Let's say I want to use a 3rd party library like
from unidecode import unidecode.I could create a bistring with
new_bistr = bistr(text.modified, unidecode(text.modified))but I would loose all the previous operations.
Is there a way to fold in a modified string that is calculated outside bistring's capabilities?