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
{{ message }}
This repository has been archived by the owner on Nov 16, 2021. It is now read-only.
The fastPunct.punct() function takes a correct boolean argument, which is supposed to trigger text correction. However, the model corrects text even when correct is set to False. Steps to reproduce:
The
fastPunct.punct()
function takes acorrect
boolean argument, which is supposed to trigger text correction. However, the model corrects text even whencorrect
is set to False. Steps to reproduce:model = FastPunct('english', checkpoint_local_path=str(models.get_unzip('zenai-models/punct/FastPunct_2_0_2_en.zip')))
model.punct('effortless', correct=True) --> 'Easy, easy.'
model.punct('effortless', correct=False) --> 'Easy, easy.'
The text was updated successfully, but these errors were encountered: