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.1.tar.gz (59.0 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.1-cp311-cp311-win_amd64.whl (560.4 kB view details)

Uploaded CPython 3.11Windows x86-64

spacy_experimental-0.6.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (688.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

spacy_experimental-0.6.1-cp311-cp311-macosx_10_9_x86_64.whl (720.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

spacy_experimental-0.6.1-cp310-cp310-win_amd64.whl (559.8 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

spacy_experimental-0.6.1-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.1-cp39-cp39-win_amd64.whl (570.3 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

spacy_experimental-0.6.1-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.1-cp38-cp38-win_amd64.whl (572.6 kB view details)

Uploaded CPython 3.8Windows x86-64

spacy_experimental-0.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (688.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

spacy_experimental-0.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (644.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

spacy_experimental-0.6.1-cp38-cp38-macosx_11_0_arm64.whl (689.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

spacy_experimental-0.6.1-cp38-cp38-macosx_10_9_x86_64.whl (719.5 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

spacy_experimental-0.6.1-cp37-cp37m-win_amd64.whl (559.5 kB view details)

Uploaded CPython 3.7mWindows x86-64

spacy_experimental-0.6.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (663.8 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

spacy_experimental-0.6.1-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.1-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.1-cp36-cp36m-win_amd64.whl (620.2 kB view details)

Uploaded CPython 3.6mWindows x86-64

spacy_experimental-0.6.1-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.1-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.1.tar.gz.

File metadata

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

File hashes

Hashes for spacy-experimental-0.6.1.tar.gz
Algorithm Hash digest
SHA256 921d68fe119086fb8fe0a3a8c1ab0cfd9aa28b2953a3ec836291971b80350c14
MD5 242178a9152b6f434f8d50decb044419
BLAKE2b-256 c28a1f46df8d3900946ae7ebab4b7a05e7f5cf66e1e961f194c3edaa3ab1a283

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5b9a11f9274f2b43b9834c70ec65aa3e901a0350683f6b74aef55f97d5075604
MD5 76bcfb7c49e816fd0cf5e3831e3d4ad5
BLAKE2b-256 c3d9ab474738bf926f22e64d48a91307bc256159451e24650c805084682911bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e37366be179da81efd45756dd7d00b8bbf6bf916f1d934fcedf0a4eda9dcec3
MD5 737d324aa5eb2598806f6853aac2dc56
BLAKE2b-256 12e0873da0a715a0d1672624e6bd80f2342911917d517db13ebc334a21edf34b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 df8fb7735b0fa18bde1805c349c6bc5e6534b31acf90ec91bb120d7e519e26d9
MD5 f9c9c881134a2f53d99b4bd13c8b3d4a
BLAKE2b-256 fe23af88ea0ad7b2902835009702e5e1e0322ee39597d83c61a017015f1034bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6aed847f8055f1c5b4c760ee36ef2bb3681a08e88ef00272a80ec3c8770b43ea
MD5 6a52a349038686bfbd22796f71a4f955
BLAKE2b-256 0ef7516ef141506534d0d264e0b87b64d99569d7e09a7c35c442c95fc6aa0a98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 46634f11549809bbf9cd5769512eb09396f47eb2c75a30a660b69cc7bb5fdddb
MD5 b5298e5bee4dc29f19cbf7f71c41b639
BLAKE2b-256 c0ce4c871b018056c1ce32b65b5a4acfc4b1f48d0d5979b88c22983fc444ba13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 daf741519343a42c3a940ba6cc9c2da17f019ea2cf664f7833cc863cad5d7198
MD5 b65b073e497466db72967bbf4a65ad95
BLAKE2b-256 735940a053d018ba060a7fc6e020fe18496c7d1f209165294d9dab84e9b1925d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 00583fdf762e664f606f8f5f80c04b1dbb672e7ccc8604a608ea4b7c371f02ee
MD5 ed3ac9e725c956e693604d179dc66c59
BLAKE2b-256 574638d26a76b3b96446ea470c8bb6cde3fa0615ad001d9e9a93157a5f095715

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d338d9e2bd84fec072f13e04ed5c1cc900e8cc66ce5529c9fd8b70e9405f432
MD5 1e1586c08d905be79282336ef7c102e8
BLAKE2b-256 41d23d7518e3621c28b227edb39416190cca5dba38a3d5e6809f788bd847927f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 021f0e992ff04d016c41b576e9420c870f75662c5bf0789ee1c93ee88a9b2352
MD5 2b391216fd2db6eb16907ae599198275
BLAKE2b-256 fc486c9d8c8dbf5d049e0e69d0d3322d0fb0d1159f58b6842957e49f44164c94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6946beef7e48bc9ad35dd9dd5c53cd34adf554fab43654e54f45807a19e895ad
MD5 83c89c16f3bf710f8e0cdad631319e7c
BLAKE2b-256 83a17380d2a93d5dafe146b044089fe2f550ed8468c841a3b0f585c651b87a78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6302ef33927374068b507fa9526bbdbcbb788895e98c638080cb137c72d0a4eb
MD5 13e88ac6595290e6f47b877b077b3cc5
BLAKE2b-256 f0654af8a02c3e64079cf603f6dc25e77e75edf85423bc1b0ead2b9a4f91dced

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a262b60ef0b062c9cc17a89b374c5738bfde8574bf400f2a773370793f9de279
MD5 876fd7f70f9e9dc1be79076f361bb34a
BLAKE2b-256 e9e695691017acb35f4d24a3820a7e838e70f9e6762017a985693e248737827e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dfc10f3bd0797c3b5097f54e1309605a9ff61d33f3c1a7eb3a1ad6440e6d0518
MD5 e9aa92cb5a653c053e20432cac9c9116
BLAKE2b-256 c750e835a1ef127cd55c05920267889c36eb7ba362f8a9f00ad6eb2d5a054f38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a092a802cfaa35dbdb2ba486cb0448ab8d1a3f1439871d3a6a7e49464198a3a
MD5 ebea4c8150b5af212ba7bd9c60c2c0b6
BLAKE2b-256 730746cbf02e73f78c4079d81d0d590904b2c9a194523a75f3b9e3eb24479ff7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d67a811cd96e8e6615c82240e83d943bca583d8f25af9f5531619c389f9942ae
MD5 de1f18fd04a369875ca0785d9d6a85c8
BLAKE2b-256 3710ef4311664ca529861bb59fd2695786e28173be6df3a885143ca4da74a3ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 842e6ad3ccadedd8249976d8caa1bf44c408ea1f2ead57e3158c2cb2d32ea621
MD5 aeed380f08a9d0d648166ce7efaf898e
BLAKE2b-256 3eb3453f7e6a4463c5184832f48e2a8f4fb84b1b938e4d58fea19595e7267fd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 855de51cd75b1aa05098369c84138331cdab9015fda8b23b5be65252432d6795
MD5 597baf5f5950b1582ba3959da73815a8
BLAKE2b-256 fedaab0252ab6f0316c00099f043f32036dc68d8c6bbb51d83258b7dc6176aeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cbcb71cd944f091d41af81220460919499c6aa6658d19a8dfceb983c5babbd90
MD5 eff159bd5f6aca67f3a5f240877a02e9
BLAKE2b-256 3b0016857885c3f85b1d5196522b2032d2c99e2f02fa0a2577f356d320fcc27d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 afe5da744dac12d4629a92aedba57b2c6af369277b9af3530b073080b3efc742
MD5 986b658a480d7af56521b19526d3046d
BLAKE2b-256 1c4b5a8d471f6eb8edb7cd1ca1e4c3d93d136e91fef8393781bedcaf438c4a43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bdccd1ca76f8af81df0fd65d1cd2f17b1194b4ee4e569c4c45b303fe43d3678d
MD5 a9013d41926750dd2e4e78cec9c1b516
BLAKE2b-256 4fa6d0219b92398d9b769a3bb01c35b2f3258b65f04d9519c3658957b7d2af7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 2a7b9123ee04ac4b03b1027a1dcd7ed4d73b6295a8532107bbaa05161a9d84f0
MD5 eef41ab14c4677e21b4a19f2b606a28d
BLAKE2b-256 804f88b5328b84785499f4cf1970fcb0b73f6908872d37c237f8617fa0bd4346

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 200ab38df025cc0cb2ef3d766241c04e12cc7efa7acb7e7e3b5df0af457507c5
MD5 a9fc25e68e3b218e0948c48de3a596ab
BLAKE2b-256 e91d51a6443d42da485733e3a463d48bd35f4970f8687bf89000710ff8590cf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 90a45d6e9b954c67937958040c14a9e3076e3bb7ca4c70e73a0d88be0bd4a4cd
MD5 88589aaf72f2c79499703d24bacdf2e4
BLAKE2b-256 3d6e7e956d90d03e2913970a768aea0195c0c4aa37191c6f06c6497aab7bfb60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7bd24b91282ffbafb558abd1f85c1f3badff1e99c4c7b84f880c8950b2e3e51f
MD5 ac59c4a5a717cbbb0b6c86dd1b612820
BLAKE2b-256 149fdb7b3fa9d6ba278828d7c8fe06116209413ab7416720b5c0b8f85984e709

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 e49fd37e4dfb4c95280feb45ba5557ce157d6de84436d280f8ef0a9827e36232
MD5 abd8445e39addf35555efda826001c8b
BLAKE2b-256 af2ead00665024ec99cf596d073569baf34204ecebbd0813111f9cd18969bd7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce1ed9e4e5d3a8f01a1d44c75d687acf1b9e2d3a1accdf8986de73f9f9dc1b19
MD5 ab1ff56a11c9e4a09d5e3a5ec31a62d6
BLAKE2b-256 560141007b12e111b29b617d3091e71316c0e676e0e51fab2a4ae92f50b6864a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ab6e74916e32ee91c1b8819bbba279389ca1ec96592248276c6c02e5e2831954
MD5 aec69b67aa75323cc72750554e7f1207
BLAKE2b-256 1ec42e0301e4d214607b7b6cb2fdaeae42f44c1448db5a5165722133c03a78e6

See more details on using hashes here.

Release history Release notifications | RSS feed

0.6.4

29 files

0.6.3

28 files

0.6.2

28 files

This release

0.6.1 This release

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