We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NoTransform
what would you think about adding a "NoTransform" placeholder class ?
This would be used, if user wishes to do all the transforms himself, example here: KarelVesely84@1c5f29d#diff-aae25c8b196777e4abeb01845ca517591f65580977ee7d1f639b5bbf16e26d9d (plus a registration is necessary in transforms.py header to __all__ variable)
transforms.py
__all__
Or can there be something similar already in the code ?
Thank you & best regards Karel
Originally posted by @KarelVesely84 in #108 (comment)
The text was updated successfully, but these errors were encountered:
This behavior can currently be done with:
import jiwer ref = [['already', 'transformed']] hyp = "needs to be transformed" jiwer.process_words(ref, hyp, reference_transform=jiwer.Compose([]))
Can you specify why the default transformation is problematic in your case? It is quite minimal.
wer_default = tr.Compose( [ tr.RemoveMultipleSpaces(), tr.Strip(), tr.ReduceToListOfListOfWords(), ] )
Sorry, something went wrong.
Aha, I see, you are right. (Maybe I am just a little "obsessed" by doing things on my own)
Thank you for the suggestion. K.
No branches or pull requests
what would you think about adding a "NoTransform" placeholder class ?
This would be used, if user wishes to do all the transforms himself, example here:
KarelVesely84@1c5f29d#diff-aae25c8b196777e4abeb01845ca517591f65580977ee7d1f639b5bbf16e26d9d
(plus a registration is necessary in
transforms.py
header to__all__
variable)Or can there be something similar already in the code ?
Thank you & best regards
Karel
Originally posted by @KarelVesely84 in #108 (comment)
The text was updated successfully, but these errors were encountered: