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
The tokenizer of the Evaluator class, will be set to TokenizerEN when languages from ['nl', 'fr'] are chosen.
Evaluator
TokenizerEN
['nl', 'fr']
See the following code:
deidentify/deidentify/evaluation/evaluator.py
Lines 45 to 56 in 0e455d3
Change the if statements to elif and it will work as intended.
if
elif
Nice project btw :)
The text was updated successfully, but these errors were encountered:
Great catch! The fix should be simple: replace second and third if with elif. Do you mind submitting a PR?
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
The tokenizer of the
Evaluator
class, will be set toTokenizerEN
when languages from['nl', 'fr']
are chosen.See the following code:
deidentify/deidentify/evaluation/evaluator.py
Lines 45 to 56 in 0e455d3
Change the
if
statements toelif
and it will work as intended.Nice project btw :)
The text was updated successfully, but these errors were encountered: