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
When the text contains several measures in a row with their respective values, without units, in sequence :
import spacy nlp = spacy.blank("eds") nlp.add_pipe("eds.measurements") text_1 = "Poids (Kg) Taille (m) IMC\n57,0 1,70 22" text_2 = "poids / IMC : 57imc22 taille : 170" text_3 = "poids / IMC : 57/22 taille : 170" doc_1 = nlp(text_1) doc_2 = nlp(text_2) doc_3 = nlp(text_3) print(doc_1.spans) print(doc_2.spans) print(doc_3.spans)
The text was updated successfully, but these errors were encountered:
another issue linked to this topic ; take text_4 = "Madame xxx yyy, âgée de xx ans, née le 06/12/1996, 97 kg, 175 cm"
Sorry, something went wrong.
No branches or pull requests
Description
When the text contains several measures in a row with their respective values, without units, in sequence :
How to reproduce the bug
Your Environment
The text was updated successfully, but these errors were encountered: