Releases: explosion/spacy-experimental
v0.6.4: Extend to spaCy 3.7
v0.6.3: Typing fixes, extend to spaCy v3.6
v0.6.2: Coref Fix, 3.11 Build Constraints
v0.6.1: Coref and biaffine parser bug fixes
- Coref:
Doc
s of one or fewer tokens resulted in an error (#28). - Coref: resolved spans could not include the final token in a
Doc
(#27). - Biaffine parser: place tensors on the right device (#25).
This release includes an updated trained pipeline for demonstration purposes. You can install it like this:
pip install https://github.com/explosion/spacy-experimental/releases/download/v0.6.1/en_coreference_web_trf-3.4.0a2-py3-none-any.whl
v0.6.0: New coreference components
- new coreference components (#17)
This release includes an experimental English coref pipeline. You can install the pipeline by downloading it from the assets in this release page, or install it directly with the following command:
Update 2022-11-07: Some issues in the coref implementation have been fixed in the v0.6.1 release of this package. While the pipeline below can still be installed and will be left up for posterity, note that it should only be used with 0.6.0, but by default will pull in the newer version. If you want to use the below package (which is not recommended), be sure to pip install spacy-experimental==0.6.0
.
pip install https://github.com/explosion/spacy-experimental/releases/download/v0.6.0/en_coreference_web_trf-3.4.0a0-py3-none-any.whl
For further information about the coref components, see the example project or the API documentation. We'll also be providing more detailed explanations in an upcoming blog post, video, and elsewhere.
v0.5.0: New experimental span suggesters
v0.4.0: Biaffine dependency parser and bug fixes
- Add biaffine parser
- Fix pickling for edit tree lemmatizer