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.

Azure Pipelines 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.2.tar.gz (59.1 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.2-cp311-cp311-win_amd64.whl (562.1 kB view details)

Uploaded CPython 3.11Windows x86-64

spacy_experimental-0.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (667.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

spacy_experimental-0.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (625.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

spacy_experimental-0.6.2-cp311-cp311-macosx_11_0_arm64.whl (688.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

spacy_experimental-0.6.2-cp311-cp311-macosx_10_9_x86_64.whl (720.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

spacy_experimental-0.6.2-cp310-cp310-win_amd64.whl (561.4 kB view details)

Uploaded CPython 3.10Windows x86-64

spacy_experimental-0.6.2-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.2-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.2-cp310-cp310-macosx_11_0_arm64.whl (702.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

spacy_experimental-0.6.2-cp310-cp310-macosx_10_9_x86_64.whl (739.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

spacy_experimental-0.6.2-cp39-cp39-win_amd64.whl (572.1 kB view details)

Uploaded CPython 3.9Windows x86-64

spacy_experimental-0.6.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (673.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

spacy_experimental-0.6.2-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.2-cp39-cp39-macosx_11_0_arm64.whl (705.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

spacy_experimental-0.6.2-cp39-cp39-macosx_10_9_x86_64.whl (741.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

spacy_experimental-0.6.2-cp38-cp38-win_amd64.whl (574.6 kB view details)

Uploaded CPython 3.8Windows x86-64

spacy_experimental-0.6.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (688.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

spacy_experimental-0.6.2-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.2-cp38-cp38-macosx_11_0_arm64.whl (689.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

spacy_experimental-0.6.2-cp38-cp38-macosx_10_9_x86_64.whl (719.7 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

spacy_experimental-0.6.2-cp37-cp37m-win_amd64.whl (561.8 kB view details)

Uploaded CPython 3.7mWindows x86-64

spacy_experimental-0.6.2-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.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (627.8 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

spacy_experimental-0.6.2-cp37-cp37m-macosx_10_9_x86_64.whl (707.5 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

spacy_experimental-0.6.2-cp36-cp36m-win_amd64.whl (622.6 kB view details)

Uploaded CPython 3.6mWindows x86-64

spacy_experimental-0.6.2-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.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (626.7 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: spacy-experimental-0.6.2.tar.gz
  • Upload date:
  • Size: 59.1 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.2.tar.gz
Algorithm Hash digest
SHA256 b187a291f422c4bea7c026b17ca27a4dec3bfb04cf831f42550969fb77f29365
MD5 46aaa58c5aa4ceced2d55432d6eec33e
BLAKE2b-256 208cb02147635d4d398e7a0b70be847bacac57123f52e74366e7105846caf67b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2794f5ecb087ce18348da4409933116683780836f9b429a2a89e36f588034ba4
MD5 e3f744b70e3695a5506a405534242958
BLAKE2b-256 53e06fc5763cd27b125214e6ef6545c80ec21f7d9cd70f7f1d33b19d5a9f9718

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 016562baac4409b7a01c3a2a5ff3be7a5aca6a44f5cc5f9141f0c2431a3ba509
MD5 25710c7d65cc544500b1621d66822167
BLAKE2b-256 e29d76308a0af5a3694abb92fd135d6c38554850f2ca9a30526ec889f3b5d66c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a643777bf9c7ea040127692ebd74b9dd6fcd538230b4d92d5a8a87bc0c8f036e
MD5 45c088e87f644ca4badaa17fcb82d5a7
BLAKE2b-256 e06f2a28c0064f4ad0ccca7d10c0c08a90a48ec5b4e0ad2c71a726f7a04cd86b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d6d90359077f1b14ce8fca1ac34885dd42b24a0e3b64ea0aafe5695abd012a2
MD5 9bd5879476f9d60af839ea4cbdf87826
BLAKE2b-256 0baa42ceb1b91f3b62d089c8f4d2091898f9169d1664cf52bb623409d7179674

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bf1e7d1c8a8b22d95c1458c1403fc33870e18980421dbb9296fc09631aa0aa1e
MD5 a3b1cd8da635cdbf19703e5342743e45
BLAKE2b-256 a1a710ae1ea7aba5e2fb58ebc27b71df7c53aa6dbdb774dad92a25d7a98253f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bdccb5b1dceb295d1a6bb92df31b59ef466494684f5d5b239f0253f1d1fb1ec5
MD5 00587d143ce67764e5966e900adb2473
BLAKE2b-256 dd8bd3571b03c06d37ebb6a22cfa90da137ceb235a8968ffb7325e488bf0c820

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b2191e59ce44a0d9795c2185d7b4fd33e2c5c7c59545c902e5a0376c41bd70e
MD5 b8e0e31c713f468e74ceea8c71db657a
BLAKE2b-256 0f5d0cdf2a4c0e84c1f56af6865e94982d875b5149a0b0858386f5345dda5c75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 962e1810fa6994499122d21a430a4999ebf7bf4a76f50b48c146079f79a0228a
MD5 0b198664ba74cf49c29f929749101c59
BLAKE2b-256 3d25d01b839f0fb5cd1f96c5ff271c1387185a8b4972cf1fd412c1845a733d5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b501af705f7ee22a6321703822f75c62232747b79191b54dce48993f095ae22
MD5 a53f15091ce75824c22f72525e722f7c
BLAKE2b-256 b2fc06ddf5c337dd6526a848ed1d355146f4d3eb724d1bcb6b237f7143d83b04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8bdd2fc7a373e556d2c2048f4de0c3a89905a15f2bdfdd72da89f356583e4f2f
MD5 dc125f4a28ea92f92f220cb9f2ece680
BLAKE2b-256 34c071a7d73342be36718a87ee55453a3e01f7b7cdf13e42dada615bb79774dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 dc76682b63fd380e9b678b8c42fc3b588e7908577660cb6f605f8c00e7525022
MD5 9cc830f3d148bdb6fc8a2f9756b61a2f
BLAKE2b-256 9e425f934ed1abda4d2e64fc194b5722cca2c561dd1ffdaed9fef94ea058b175

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e5966a1121b88f5d360444f9c9e65e29181826d435fa6645fe687ce9d75d6200
MD5 1c85f3bae1e106798fc3f662bd9ca2bf
BLAKE2b-256 769659d1e50b0693b3c810424ab869a52244cde1c0111504e94b29dfa46331e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 026f44839595c3c68798328ebe5c5a4637e5aa468eed6ef3e672ed7314d4b0db
MD5 e19b18e3319deab53d4e7fab176b7705
BLAKE2b-256 bad4b7325ce6d0daa0869b7484decdd00e1d6434f11328e16a097804e1538b2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 04d9a9c7d664f64ca8663f8ea71e98f3d5ca8681c24355e9204e42422b68f49d
MD5 e760f210a469551d0414c18de9793766
BLAKE2b-256 ccfb782b4d407b09314c7beeee37afe369b288fcbe22b270fc05117977772a80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c7d15f048c22171238f0c0c4a8d1efaa502eb5026e4746f294d197f346abcb1a
MD5 2e795520923d89f308cdf61b0c936887
BLAKE2b-256 455726232abffdceac5fd7636dda9cdfbb9b717656ac0fe7d5b1d495f948ea6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6e6cd9636100bde63ff5032129b8588938c0d62abfb9e0141b310328ddcc640b
MD5 c0976a91270ce9851b06c8963ae7cfb1
BLAKE2b-256 df379c3eacf36b41cbefbe28a04fc1f59183966cddb6fac2f04b0f21b155847f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de3a083e72201e6d113843f37ddfcabd66788d6f478dd281d612af5765941fc1
MD5 cfbf481fa2061736a825415328e8a787
BLAKE2b-256 6a1955aceacde6d23818a977300f44ed86b1f4a84d5e67322a9da8196338cfd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ea7ebe53edaa86029b1dd3c781c54538c36bee1f2e466b34a897632664b0c424
MD5 83648e30d68a25974903ad9be552ac5a
BLAKE2b-256 a6d5cc98f097c10e2349bd5914f2e0712500f92dc6d42135db425030c15ee752

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f945a914161a56f362b24e0e0b5d6afdf127876ced2ca4e6fd8dbb44c813fab
MD5 f2587f02803ecf7170ada40a6a357a55
BLAKE2b-256 a21c5ad23c218d3e9012f911ae4abb33dcfb9c6003f18815dc341a2008ba6134

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 382155439fee9cd0b566996bb737d4478542cb8068d4ecdaf2ed290eb59ef404
MD5 ecfe723098547f58807bfd9d0559245b
BLAKE2b-256 9953f63b4cb97d260beb8548224b32825ffaed5e71f70978f32da147cd140acf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 63e2b000ac4f425ec27bbe15135f843e8bc147e247901f9ea4aad2a75b439ef8
MD5 d83aa8b6bae3e86d35cc25645b5f76a4
BLAKE2b-256 7ef1e87f0525dd728f86a2102c0816356b058a0f7a9b9dc8ba0254ab54118fe4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0cfd086f00107d16351e4b05512d36d33c9d1c0f3325417648bdc324c74aaf0b
MD5 d3cd1cc6462e81e3b5b19a0d1774efb5
BLAKE2b-256 530974bb049c4f95836bbfb9a0f8e33d57096715ecdc60467bd8a1d237c7e9c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a084d0542815a9c11b7f06aded5b5d68a41327ec4d3ed100f3b81bc50e7bd42
MD5 372af3278ccd346454d3070c45fcc6c6
BLAKE2b-256 c1c57d5138500455d96131ada4b3b97c050cb1e76ce36aaae7d36a9def9b0257

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7636c3bc3eb4f9dd1c5a3321f95c190cbed78263069fc51e5de07ef9197e4104
MD5 7a9bab94088531faa64648e936493f99
BLAKE2b-256 5fdfcad18164fe2ab07dd8115dd9ea2a4e48d3236f86e60a2e01aceada6a502b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 1a952fb9e3f7658c4afc70a3603c4dd9921c91de148f73b7779f9373d5df099c
MD5 673e84ffc992fc4e9be89c3cba01f9e6
BLAKE2b-256 8b19cecb2a149ff05b7ca6c1b9cd629ef8f50e6ab0a1892daf170c54f8ca019e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 94622a0cb1a4f119b69c6b1fb6f92f102ffcaf5ab13125b5a08759a0009734d7
MD5 fb8dd672138cf8e706b8cdc10ba1008d
BLAKE2b-256 e1e96e126fb422bbebdc2550c5728bab2394b489c1de607d3d3fa52284386846

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1442006d0e78d5705eaaee33a72d31ea293e02ec258683b47660cd042d2d01d1
MD5 cf08fd593c0ec56a5b0e10a7b3576c08
BLAKE2b-256 a6ce136add3d3f2cc1f61d367587a188eab51f887ff222db7c6f6fa30dcf9c3f

See more details on using hashes here.

Release history Release notifications | RSS feed

0.6.4

29 files

0.6.3

28 files

This release

0.6.2 This release

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