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
Cc @paul-bssr, thank you for reporting this. Full hours are not correctly matched (time is not part of the matched span)
import edsnlp nlp = edsnlp.blank('eds') nlp.add_pipe('eds.normalizer') nlp.add_pipe('eds.sentences') nlp.add_pipe('eds.dates') assert str(nlp("17/10/2023 18:37").spans['dates'][0]) == "17/10/2023 18:37" assert str(nlp("17/10/2023 18:00").spans['dates'][0]) == "17/10/2023 18:00" # Fails here
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Cc @paul-bssr, thank you for reporting this.
Full hours are not correctly matched (time is not part of the matched span)
How to reproduce the bug
The text was updated successfully, but these errors were encountered: