-
**Is your feature request related to a problem? Please describe.**
Can negspacy be used with already identified Entities and their spans through scispacy, by providing them somehow?
**Describe the…
-
Hi, how do we extract the patterns of the negations identified? Is there any standard methods of negex we can use?
Like if I want to know which negation pattern below was identified for the negated…
-
## How to reproduce the behaviour
Hi team. I have a set of annotations with the starting and ending index positions for each entity relative to a document. They take the form:
```python
{'entities'…
-
First of all, thanks for this awesome library.
**Describe the bug**
When running the example from the README with the version 1.0.0 I get the following error:
```
TypeError: __init__() missing…
-
Hi,
With negspacy 1.0.0 and spacy 3.0.1, I get the error for using termsets:
'negex -> neg_tersmset extra fields not permitted'
```
nlp = spacy.load("en_core_web_sm")
ts = termset("…
-
I am using the versions
spaCy 3.0.3
negspacy 1.0.0
scispacy 0.4.0
I think the current version of negspacy is not compatible with scispacy. I already read the [issue ](https://github.com/jenoj…
-
It would probably be a good idea to show not just which entities where negated, but what was the trigger for the negation. This should not be too much of a problem since the matcher returns the positi…
-
**Describe the bug**
When I run this example code:
```
import spacy
from negspacy.negation import Negex
nlp = spacy.load("en_core_web_sm")
negex = Negex(nlp, ent_types=["PERSON','ORG"])
nl…
-
**Describe the bug**
I am processing the medical texts written by nurses and doctors using spacy English() model and Negex to find the appropriate negations. The code works fine when i run it in sing…
-
Hi,
I am trying to find negations in a sentence using negspacy. But, it's printing first negation (no headache) as False which is supposed to be True and picking the second negation correctly. Shou…