Skip to content

Releases: jenojp/negspacy

Spacy 3.3 support

25 May 19:08
cf2ba06
Compare
Choose a tag to compare
Merge pull request #47 from jenojp/develop

Spacy 3.3 support

SpaCy 3.2 Support

20 Jan 13:12
0d63f1e
Compare
Choose a tag to compare
Merge pull request #43 from jenojp/develop

V 1.0.2 SpaCy 3.2 support

spaCy 3.1 Support

25 Oct 12:11
27a84ec
Compare
Choose a tag to compare
Merge pull request #40 from jenojp/develop

Increase spaCy version requirements to allow 3.1+

Spacy 3.0 support

22 Feb 17:10
Compare
Choose a tag to compare

Version 1.0 is a major version update providing support for spaCy 3.0's new interface for adding pipeline components. As a result, it is not backwards compatible with previous versions of negspacy.

If your project uses spaCy 2.3.5 or earlier, you will need to use version 0.1.9. See See archived readme.

Minor bug fix, improve chunk prefix functionality

18 Nov 15:54
02fae3f
Compare
Choose a tag to compare
Merge pull request #28 from jenojp/develop

prep for 0.1.9 release

v0.1.8 pattern modification enhancements, ability to use multiple negspacy instances in a pipeline

01 Oct 17:16
Compare
Choose a tag to compare
  • Big thanks to @lcreteig for pull request #20, which allows a user to update the extension name, thus being able to use multiple instances of negspacy in a pipeline:
negex = Negex(nlp, extension_name="myownname")
  • Small modifications to make it easier to users to add or remove patterns on the fly:
nlp = spacy.load("en_core_web_sm")
negex = Negex(nlp)
patterns = negex.get_patterns()
negex.add_patterns(
        pseudo_negations=["my favorite pattern"],
        termination=["these are", "great patterns"],
        preceding_negations=["wow a negation"],
        following_negations=["extra negation"],
    )
negex.remove_patterns(termination = "but", preceding_negations=["wow a negation"])

Pseudo negation bug fix, new termsets, spaCy 2.2.4 support

13 Mar 16:02
6826341
Compare
Choose a tag to compare
  • fixes issue #11
  • modify termsets to distinguish generic and clinical phrases, issue #10
  • confirm support for spaCy 2.2.4

Support for spacy 2.2.3

23 Nov 14:38
Compare
Choose a tag to compare
v0.1.6

update readme.md

release for Zenodo DOI generation only

10 Mar 12:58
Compare
Choose a tag to compare
Pre-release

Not publishing to pypi

Incremental update - enhancement for #8

16 Oct 15:28
Compare
Choose a tag to compare
Pre-release

Adds ability for user to consider first tokens of noun chunks as negation terms.