Skip to main content

spacy-experimental: Cutting-edge experimental spaCy components and features

This package includes experimental components and features for spaCy v3.x, for example model architectures, pipeline components and utilities.

tests pypi Version

Installation

Install with pip:

python -m pip install -U pip setuptools wheel
python -m pip install spacy-experimental

Using spacy-experimental

Components and features may be modified or removed in any release, so always specify the exact version as a package requirement if you're experimenting with a particular component, e.g.:

spacy-experimental==0.147.0

Then you can add the experimental components to your config or import from spacy_experimental:

[components.experimental_char_ner_tokenizer]
factory = "experimental_char_ner_tokenizer"

Components

Trainable character-based tokenizers

Two trainable tokenizers represent tokenization as a sequence tagging problem over individual characters and use the existing spaCy tagger and NER architectures to perform the tagging.

In the spaCy pipeline, a simple "pretokenizer" is applied as the pipeline tokenizer to split each doc into individual characters and the trainable tokenizer is a pipeline component that retokenizes the doc. The pretokenizer needs to be configured manually in the config or with spacy.blank():

nlp = spacy.blank(
    "en",
    config={
        "nlp": {
            "tokenizer": {"@tokenizers": "spacy-experimental.char_pretokenizer.v1"}
        }
    },
)

The two tokenizers currently reset any existing tag or entity annotation respectively in the process of retokenizing.

Character-based tagger tokenizer

In the tagger version experimental_char_tagger_tokenizer, the tagging problem is represented internally with character-level tags for token start (T), token internal (I), and outside a token (O). This representation comes from Elephant: Sequence Labeling for Word and Sentence Segmentation (Evang et al., 2013).

This is a sentence.
TIIIOTIOTOTIIIIIIIT

With the option annotate_sents, S replaces T for the first token in each sentence and the component predicts both token and sentence boundaries.

This is a sentence.
SIIIOTIOTOTIIIIIIIT

A config excerpt for experimental_char_tagger_tokenizer:

[nlp]
pipeline = ["experimental_char_tagger_tokenizer"]
tokenizer = {"@tokenizers":"spacy-experimental.char_pretokenizer.v1"}

[components]

[components.experimental_char_tagger_tokenizer]
factory = "experimental_char_tagger_tokenizer"
annotate_sents = true
scorer = {"@scorers":"spacy-experimental.tokenizer_senter_scorer.v1"}

[components.experimental_char_tagger_tokenizer.model]
@architectures = "spacy.Tagger.v1"
nO = null

[components.experimental_char_tagger_tokenizer.model.tok2vec]
@architectures = "spacy.Tok2Vec.v2"

[components.experimental_char_tagger_tokenizer.model.tok2vec.embed]
@architectures = "spacy.MultiHashEmbed.v2"
width = 128
attrs = ["ORTH","LOWER","IS_DIGIT","IS_ALPHA","IS_SPACE","IS_PUNCT"]
rows = [1000,500,50,50,50,50]
include_static_vectors = false

[components.experimental_char_tagger_tokenizer.model.tok2vec.encode]
@architectures = "spacy.MaxoutWindowEncoder.v2"
width = 128
depth = 4
window_size = 4
maxout_pieces = 2

Character-based NER tokenizer

In the NER version, each character in a token is part of an entity:

T	B-TOKEN
h	I-TOKEN
i	I-TOKEN
s	I-TOKEN
 	O
i	B-TOKEN
s	I-TOKEN
	O
a	B-TOKEN
 	O
s	B-TOKEN
e	I-TOKEN
n	I-TOKEN
t	I-TOKEN
e	I-TOKEN
n	I-TOKEN
c	I-TOKEN
e	I-TOKEN
.	B-TOKEN

A config excerpt for experimental_char_ner_tokenizer:

[nlp]
pipeline = ["experimental_char_ner_tokenizer"]
tokenizer = {"@tokenizers":"spacy-experimental.char_pretokenizer.v1"}

[components]

[components.experimental_char_ner_tokenizer]
factory = "experimental_char_ner_tokenizer"
scorer = {"@scorers":"spacy-experimental.tokenizer_scorer.v1"}

[components.experimental_char_ner_tokenizer.model]
@architectures = "spacy.TransitionBasedParser.v2"
state_type = "ner"
extra_state_tokens = false
hidden_width = 64
maxout_pieces = 2
use_upper = true
nO = null

[components.experimental_char_ner_tokenizer.model.tok2vec]
@architectures = "spacy.Tok2Vec.v2"

[components.experimental_char_ner_tokenizer.model.tok2vec.embed]
@architectures = "spacy.MultiHashEmbed.v2"
width = 128
attrs = ["ORTH","LOWER","IS_DIGIT","IS_ALPHA","IS_SPACE","IS_PUNCT"]
rows = [1000,500,50,50,50,50]
include_static_vectors = false

[components.experimental_char_ner_tokenizer.model.tok2vec.encode]
@architectures = "spacy.MaxoutWindowEncoder.v2"
width = 128
depth = 4
window_size = 4
maxout_pieces = 2

The NER version does not currently support sentence boundaries, but it would be easy to extend using a B-SENT entity type.

Biaffine parser

A biaffine dependency parser, similar to that proposed in [Deep Biaffine Attention for Neural Dependency Parsing](Deep Biaffine Attention for Neural Dependency Parsing) (Dozat & Manning, 2016). The parser consists of two parts: an edge predicter and an edge labeler. For example:

[components.experimental_arc_predicter]
factory = "experimental_arc_predicter"

[components.experimental_arc_labeler]
factory = "experimental_arc_labeler"

The arc predicter requires that a previous component (such as senter) sets sentence boundaries during training. Therefore, such a component must be added to annotating_components:

[training]
annotating_components = ["senter"]

The biaffine parser sample project provides an example biaffine parser pipeline.

Span Finder

The SpanFinder is a new experimental component that identifies span boundaries by tagging potential start and end tokens. It's an ML approach to suggest candidate spans with higher precision.

SpanFinder uses the following parameters:

  • threshold: Probability threshold for predicted spans.
  • predicted_key: Name of the SpanGroup the predicted spans are saved to.
  • training_key: Name of the SpanGroup the training spans are read from.
  • max_length: Max length of the predicted spans. No limit when set to 0. Defaults to 0.
  • min_length: Min length of the predicted spans. No limit when set to 0. Defaults to 0.

Here is a config excerpt for the SpanFinder together with a SpanCategorizer:

[nlp]
lang = "en"
pipeline = ["tok2vec","span_finder","spancat"]
batch_size = 128
disabled = []
before_creation = null
after_creation = null
after_pipeline_creation = null
tokenizer = {"@tokenizers":"spacy.Tokenizer.v1"}

[components]

[components.tok2vec]
factory = "tok2vec"

[components.tok2vec.model]
@architectures = "spacy.Tok2Vec.v1"

[components.tok2vec.model.embed]
@architectures = "spacy.MultiHashEmbed.v2"
width = ${components.tok2vec.model.encode.width}
attrs = ["ORTH", "SHAPE"]
rows = [5000, 2500]
include_static_vectors = false

[components.tok2vec.model.encode]
@architectures = "spacy.MaxoutWindowEncoder.v2"
width = 96
depth = 4
window_size = 1
maxout_pieces = 3

[components.span_finder]
factory = "experimental_span_finder"
threshold = 0.35
predicted_key = "span_candidates"
training_key = ${vars.spans_key}
min_length = 0
max_length = 0

[components.span_finder.scorer]
@scorers = "spacy-experimental.span_finder_scorer.v1"
predicted_key = ${components.span_finder.predicted_key}
training_key = ${vars.spans_key}

[components.span_finder.model]
@architectures = "spacy-experimental.SpanFinder.v1"

[components.span_finder.model.scorer]
@layers = "spacy.LinearLogistic.v1"
nO=2

[components.span_finder.model.tok2vec]
@architectures = "spacy.Tok2VecListener.v1"
width = ${components.tok2vec.model.encode.width}

[components.spancat]
factory = "spancat"
max_positive = null
spans_key = ${vars.spans_key}
threshold = 0.5

[components.spancat.model]
@architectures = "spacy.SpanCategorizer.v1"

[components.spancat.model.reducer]
@layers = "spacy.mean_max_reducer.v1"
hidden_size = 128

[components.spancat.model.scorer]
@layers = "spacy.LinearLogistic.v1"
nO = null
nI = null

[components.spancat.model.tok2vec]
@architectures = "spacy.Tok2VecListener.v1"
width = ${components.tok2vec.model.encode.width}

[components.spancat.suggester]
@misc = "spacy-experimental.span_finder_suggester.v1"
predicted_key = ${components.span_finder.predicted_key}

This package includes a spaCy project which shows how to train and use the SpanFinder together with SpanCategorizer.

Coreference Components

The CoreferenceResolver and SpanResolver are designed to be used together to build a corerefence pipeline, which allows you to identify which spans in a document refer to the same thing. Each component also includes an architecture and scorer. For more details, see their pages in the main spaCy docs.

For an example of how to build a pipeline with the components, see the example coref project.

Architectures

None currently.

Other

Tokenizers

  • spacy-experimental.char_pretokenizer.v1: Tokenize a text into individual characters.

Scorers

  • spacy-experimental.tokenizer_scorer.v1: Score tokenization.
  • spacy-experimental.tokenizer_senter_scorer.v1: Score tokenization and sentence segmentation.

Misc

Suggester functions for spancat:

Subtree suggester: Uses dependency annotation to suggest tokens with their syntactic descendants.

  • spacy-experimental.subtree_suggester.v1
  • spacy-experimental.ngram_subtree_suggester.v1

Chunk suggester: Suggests noun chunks using the noun chunk iterator, which requires POS and dependency annotation.

  • spacy-experimental.chunk_suggester.v1
  • spacy-experimental.ngram_chunk_suggester.v1

Sentence suggester: Uses sentence boundaries to suggest sentence spans.

  • spacy-experimental.sentence_suggester.v1
  • spacy-experimental.ngram_sentence_suggester.v1

The package also contains a merge_suggesters function which can be used to combine suggestions from multiple suggesters.

Here are two config excerpts for using the subtree suggester with and without the ngram functionality:

[components.spancat.suggester]
@misc = "spacy-experimental.subtree_suggester.v1"
[components.spancat.suggester]
@misc = "spacy-experimental.ngram_subtree_suggester.v1"
sizes = [1, 2, 3]

Note that all the suggester functions are registered in @misc.

Bug reports and issues

Please report bugs in the spaCy issue tracker or open a new thread on the discussion board for other issues.

Older documentation

See the READMEs in earlier tagged versions for details about components in earlier releases.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

spacy-experimental-0.6.3.tar.gz (59.2 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

spacy_experimental-0.6.3-cp311-cp311-win_amd64.whl (562.0 kB view details)

Uploaded CPython 3.11Windows x86-64

spacy_experimental-0.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (667.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

spacy_experimental-0.6.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (625.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

spacy_experimental-0.6.3-cp311-cp311-macosx_11_0_arm64.whl (688.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

spacy_experimental-0.6.3-cp311-cp311-macosx_10_9_x86_64.whl (720.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

spacy_experimental-0.6.3-cp310-cp310-win_amd64.whl (561.3 kB view details)

Uploaded CPython 3.10Windows x86-64

spacy_experimental-0.6.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (669.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

spacy_experimental-0.6.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (627.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

spacy_experimental-0.6.3-cp310-cp310-macosx_11_0_arm64.whl (703.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

spacy_experimental-0.6.3-cp310-cp310-macosx_10_9_x86_64.whl (738.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

spacy_experimental-0.6.3-cp39-cp39-win_amd64.whl (572.4 kB view details)

Uploaded CPython 3.9Windows x86-64

spacy_experimental-0.6.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (674.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

spacy_experimental-0.6.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (633.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

spacy_experimental-0.6.3-cp39-cp39-macosx_11_0_arm64.whl (705.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

spacy_experimental-0.6.3-cp39-cp39-macosx_10_9_x86_64.whl (740.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

spacy_experimental-0.6.3-cp38-cp38-win_amd64.whl (574.3 kB view details)

Uploaded CPython 3.8Windows x86-64

spacy_experimental-0.6.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (689.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

spacy_experimental-0.6.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (645.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

spacy_experimental-0.6.3-cp38-cp38-macosx_11_0_arm64.whl (689.8 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

spacy_experimental-0.6.3-cp38-cp38-macosx_10_9_x86_64.whl (719.0 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

spacy_experimental-0.6.3-cp37-cp37m-win_amd64.whl (561.9 kB view details)

Uploaded CPython 3.7mWindows x86-64

spacy_experimental-0.6.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (663.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

spacy_experimental-0.6.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (628.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

spacy_experimental-0.6.3-cp37-cp37m-macosx_10_9_x86_64.whl (706.8 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

spacy_experimental-0.6.3-cp36-cp36m-win_amd64.whl (620.5 kB view details)

Uploaded CPython 3.6mWindows x86-64

spacy_experimental-0.6.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (663.4 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

spacy_experimental-0.6.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (626.9 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

File details

Details for the file spacy-experimental-0.6.3.tar.gz.

File metadata

  • Download URL: spacy-experimental-0.6.3.tar.gz
  • Upload date:
  • Size: 59.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.7.9

File hashes

Hashes for spacy-experimental-0.6.3.tar.gz
Algorithm Hash digest
SHA256 7df7c477f421efa40f6168d2dde0ccfae3a5d4ea894b3db626efb819a6485cf8
MD5 0d48f1de6557329835598904e8663639
BLAKE2b-256 a6180a2fe53f84d34157e7001d16c757da72387633e7ae676ccfb121ef7e7745

See more details on using hashes here.

File details

Details for the file spacy_experimental-0.6.3-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for spacy_experimental-0.6.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ee382e9a00e36d98aff47e23fecd961f478eea69e187c238b19ef0eaeb4464ce
MD5 d7c1c726dcb44bec2f5f39e65fc2cf9d
BLAKE2b-256 bc862666961f5058114ff53e4435f4aa2112c0e48f5d2560997d092465aeb0be

See more details on using hashes here.

File details

Details for the file spacy_experimental-0.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for spacy_experimental-0.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 371012f0d77a68800aba3d756ef7ed35dbccc584874ad088a6fa4564f47c0da0
MD5 681a8266a39e5d6bfb4f5535606c1cdb
BLAKE2b-256 b331d161a250b5e34a80acd187ef3b04f8447153eebdeaee5083b48e303f4c9f

See more details on using hashes here.

File details

Details for the file spacy_experimental-0.6.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spacy_experimental-0.6.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0e160ecd22f7f822e27ff406ed379067f6748715707465782ff8bf70073aa90b
MD5 17b5e960a02a62ff01c83c4bfb437cb9
BLAKE2b-256 bbc03589fa12ca3b2d0c8c0d0a3e7dffebd0142f739fd243287aa2a7152a6e80

See more details on using hashes here.

File details

Details for the file spacy_experimental-0.6.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for spacy_experimental-0.6.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 854a6392ad50dbeab8bbb02c24019ab00f5af7a132ddb015b9ddc3c14c7a9432
MD5 96d5d9d789d9d04298c28ad6ef60446b
BLAKE2b-256 fbb29d10d74fc1b63fdf9092aa5a5af0503722cbb2d1efbaa567eadab2bfabbb

See more details on using hashes here.

File details

Details for the file spacy_experimental-0.6.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for spacy_experimental-0.6.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e1dd219101513d2608ea2d308ec90faa02efe5dd6986db8be64e3673f2c2f3e4
MD5 1c83dc3cf7265c4a85d2eb56ffd79da3
BLAKE2b-256 93c45447d432e0a4932fbff66c671041c559f38c3d3d35da7f4eefd86a9dfab1

See more details on using hashes here.

File details

Details for the file spacy_experimental-0.6.3-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for spacy_experimental-0.6.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1c95de7465372744faf3eb999a20268c19ac4456d54520355a7ad9becab2b122
MD5 6a826c2b392ba527a44fde76cfacfdbd
BLAKE2b-256 78994bab8e9dc4f47a2764ed714c6aea0c51a5aace0610213f9ea24ff9872164

See more details on using hashes here.

File details

Details for the file spacy_experimental-0.6.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for spacy_experimental-0.6.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b6c705f176a794d3ed35b89521debcd987dc95b276431e13af4231d932c8741
MD5 b9dbea3f5edf4505b86b24d57a442a21
BLAKE2b-256 0fb872a989e07b2fbf45e9b6e88da766975f9bc8e64292c4b52cb5baf2fa3d21

See more details on using hashes here.

File details

Details for the file spacy_experimental-0.6.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spacy_experimental-0.6.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a188047db9604d566d8e379ef6f9451d3470a877d1c7d42e428476ae30c40ae
MD5 a14a79ef5738043077541b0f106f20af
BLAKE2b-256 1e841a5581e1a25064f0220d40829faf8bd364707e688e680b050717ae6bdda0

See more details on using hashes here.

File details

Details for the file spacy_experimental-0.6.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for spacy_experimental-0.6.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2cdfb6bf2c252332a6330e111b9bda37514237337d8b09dc9ffa0c022b43dec2
MD5 6c6c3ee416e12129ae9d3df6e90d9581
BLAKE2b-256 db9bf816a99ac15dc059098be9039f4352fce505487422750e241b63b0da0b35

See more details on using hashes here.

File details

Details for the file spacy_experimental-0.6.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for spacy_experimental-0.6.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ed15a9eefdef3ef3b1e9f48c782dd582d33850d97fd7cdd709ab8b2bff320fc8
MD5 cd6a717d7dd3ec661b24c54a50837e2c
BLAKE2b-256 8571e05d3ea1f6a548b3f991f9cff8f6cf5d21d211294d597c0d2626078ac0ac

See more details on using hashes here.

File details

Details for the file spacy_experimental-0.6.3-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for spacy_experimental-0.6.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e2d46dc20680d2dc1b03e5331bd5c8f4e74baad3cdb17d29ffed6caba2779465
MD5 3c0be22000b19444bbd11a5077964e42
BLAKE2b-256 9bf8d0ab6a8b92e13577bb3311d5a65bc9ee1eeb03c0b72b0a911eda313455ed

See more details on using hashes here.

File details

Details for the file spacy_experimental-0.6.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for spacy_experimental-0.6.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4d29ae8d22b1969c68af61135456a58fccf52d33dc810ed1e07da8b4f8890e91
MD5 a68af960d9f381e4ca0f5b44f58c4d4f
BLAKE2b-256 6e4778017597944c22ade3ea565b2977cb1423876a98cf39bdd7b4a86804e8f8

See more details on using hashes here.

File details

Details for the file spacy_experimental-0.6.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spacy_experimental-0.6.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 599920900bd5b73a39c7f87c2e00e2230fa79d87170eee7961574cea3b5f37bd
MD5 7c50bdfdeeb068fcae280f5ba5b4800b
BLAKE2b-256 85fcee5c0b2520fb6670d5089847e0795df2098b0641005e5fe9f3ce712f9bd8

See more details on using hashes here.

File details

Details for the file spacy_experimental-0.6.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for spacy_experimental-0.6.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 daba45e87d695ca1b145e5c0b9d9f969e9221571e7f1ba6c1c6bab1c47314b99
MD5 8cc42c7ca01b6e3c347ec10dabd97d33
BLAKE2b-256 546991b141901ce712179dbbce58cae8f667ebe09054cf81bbb74877ca106700

See more details on using hashes here.

File details

Details for the file spacy_experimental-0.6.3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for spacy_experimental-0.6.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a45c3c667791406db59b10ddb62acf71944647eafb62d219aa0957cf8405f4c0
MD5 9601e05955cd98b21c90918f9c248b1d
BLAKE2b-256 f082435285fa78990ff2cd0f2ada9781cfdc9347fbee58639ea14e43a02b3a33

See more details on using hashes here.

File details

Details for the file spacy_experimental-0.6.3-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for spacy_experimental-0.6.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 45d6342b08225e24f52bcadc5a6094f20f741cd371434f83a9190a5f0340416b
MD5 ea2fd2e45144dc52f2786916cdd76bca
BLAKE2b-256 117103a81318ae0e85e42459274e53befb947105b6d86aa3903aca72d27c68d4

See more details on using hashes here.

File details

Details for the file spacy_experimental-0.6.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for spacy_experimental-0.6.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c87a9101f35068cefa5aaf8a846c6b7299344cc38f3830cac5930ca85f52886
MD5 f7b1949fc69a89e77a3915eadf83ce01
BLAKE2b-256 8657fa48bd8902d0061f761f7d77a62761f7f182abdc091a0c2ee98d886d272e

See more details on using hashes here.

File details

Details for the file spacy_experimental-0.6.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spacy_experimental-0.6.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f752ed5b62bf0d801dd51f735d53876d7e7a31aeebf93544512123ef8f0b362a
MD5 c6aec746dfc38ab3349e004a1a6d992b
BLAKE2b-256 a3dd3c3b75dc7d9e79770c56fb75740febca19b9e35005f91d8955759ecc1a66

See more details on using hashes here.

File details

Details for the file spacy_experimental-0.6.3-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for spacy_experimental-0.6.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d338cfb3bc312198a314a728c507f93cfa83453a417fb1f81457ca911ad0d3b
MD5 0a9614bcdb79995c29bfa0566e854465
BLAKE2b-256 f12861aa25ad624fd98cfc24bb3ec225a5a9f2999e0e146b9b51fdd679e6a2e5

See more details on using hashes here.

File details

Details for the file spacy_experimental-0.6.3-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for spacy_experimental-0.6.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 47fd92f1c64bba636d65f5ad5e4859e420e9b16a02d319dc3a5c72a4e6348628
MD5 6a25a35133c3f9a3b0f10c4db6d3e85c
BLAKE2b-256 6e73641966335f041eb099e7588563e9eadc3ae1f9951343c94135cf69ac32f9

See more details on using hashes here.

File details

Details for the file spacy_experimental-0.6.3-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for spacy_experimental-0.6.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 7f276d9d5bf7ff18a26fef3088baa474feda72a587ac110d1fa22d96e27cd266
MD5 c29e8baad1b2b5686f11d4be168bd133
BLAKE2b-256 9b95e4883c24fd59890dafef74d353e7edbfa5c53a93a1b4e45e8a14463dbbfb

See more details on using hashes here.

File details

Details for the file spacy_experimental-0.6.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for spacy_experimental-0.6.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d79c6fe6694dbc5df3e255a1cc45c60043234b5929cc31b9ee7f95aaa0f6fe2
MD5 d7ffb121ea8d2a92e059c804187cca8e
BLAKE2b-256 2100ca4ac50c14db968145006f86cb3555afe24456df3452b62bfb82363dec10

See more details on using hashes here.

File details

Details for the file spacy_experimental-0.6.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spacy_experimental-0.6.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a499ca956008e8c3d9f591611cc1468647ab3ef473aca630afd6e800026e8502
MD5 896502ddf18e0e140237921fbcb4c13e
BLAKE2b-256 40e4afec43c7b222537a00c975907119d5146ee3ab127f2c8732715bdf7dde15

See more details on using hashes here.

File details

Details for the file spacy_experimental-0.6.3-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for spacy_experimental-0.6.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4488955fab0bf59e99e2bc47b547a8dfa7935b2dc92c094782014399a216dd3c
MD5 e268ad0d4f6c0ee5f3c927e16f87ebc5
BLAKE2b-256 e9d91f9d7e9d485104a3c4c6c961c2b62657a71a860c147e3b5df51d7d6890a9

See more details on using hashes here.

File details

Details for the file spacy_experimental-0.6.3-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for spacy_experimental-0.6.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 5db0978960fd6a59d7f2cf731d2fd95e6c8efeeae377f89b63cab148faf9cb0f
MD5 b3f20ebdb30a65fa05461bbca319773c
BLAKE2b-256 bda3e0e28d4d285cf3467371ab3d8a7c51f5791807ce312a07fe5ff269b30166

See more details on using hashes here.

File details

Details for the file spacy_experimental-0.6.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for spacy_experimental-0.6.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 26e372363048ca427a82bbbf9f3cef9ea4f5c80437fac509cb6a24de671bb67e
MD5 8679ebc899ac302087e5e973b42cdc37
BLAKE2b-256 9b449db16793d8c01be059a4285cfefe766e04d2a024303d1636944808c39439

See more details on using hashes here.

File details

Details for the file spacy_experimental-0.6.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for spacy_experimental-0.6.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aa132b447b0a727e9d466310e96de6b195b5def3555291d0a86ca440cfd9e879
MD5 9ae7b389ea27d86490d45cbb02492e2c
BLAKE2b-256 29e0d6b24d07dcbe947aeff5badcd4d1bf1442d23750013d58cad13dfef81458

See more details on using hashes here.

Release history Release notifications | RSS feed

0.6.4

29 files

This release

0.6.3 This release

28 files

0.6.2

28 files

0.6.1

28 files

0.6.0

23 files

0.5.0

24 files

0.4.0

19 files

0.2.0

16 files

0.1.0

16 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page