Ariel Cohen

Results 10 comments of Ariel Cohen

Could be, anyway it's a footer. And it is intercalated into the text. So we have the following structure: [TEXT] [FOOTER] [Continuation of preceding text]

@Thomzoy An additional case : if next token is `\n`

> Yes, at least 2 consecutive breaks should split the text into phrases I think, no ??

Hello, tu add/check also : ``` Ordonnances de sortie Prescription de sortie : Prescriptions médicamenteuse à l'UHCD Médicaments : Demandes et prescriptions externes Documents de sortie PRESCRIPTION(S) DE SORTIE :...

@percevalw @LucasDedieu any news about this issue ?

@percevalw @svittoz Another example that doesn't split into 2 sentences: ```python import edsnlp.pipes as eds import edsnlp nlp = edsnlp.blank("eds") nlp.add_pipe(eds.normalizer()) nlp.add_pipe(eds.sentences(check_capitalized=False, min_newline_count=1)) nlp( "Chimiothérapie par XXX (débutée en DATE...

Wiht python 3.9, the following dependencies should be installed before (it is not specified in the doc) : `sudo apt-get install gcc` `sudo apt-get install g++`

but i dont arrive to install edsnlp with py3.13

hi @fliot ! You will find your entities in doc.ents. If you want to add these entities to the spans, you should set a span_setter when defining the pipe (https://aphp.github.io/edsnlp/latest/pipes/core/matcher/)...