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.0.tar.gz (58.7 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.0-cp310-cp310-win_amd64.whl (559.4 kB view details)

Uploaded CPython 3.10Windows x86-64

spacy_experimental-0.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (668.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

spacy_experimental-0.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (627.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

spacy_experimental-0.6.0-cp310-cp310-macosx_11_0_arm64.whl (702.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

spacy_experimental-0.6.0-cp310-cp310-macosx_10_9_x86_64.whl (738.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

spacy_experimental-0.6.0-cp39-cp39-win_amd64.whl (570.0 kB view details)

Uploaded CPython 3.9Windows x86-64

spacy_experimental-0.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (673.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

spacy_experimental-0.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (632.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

spacy_experimental-0.6.0-cp39-cp39-macosx_11_0_arm64.whl (704.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

spacy_experimental-0.6.0-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.0-cp38-cp38-win_amd64.whl (572.2 kB view details)

Uploaded CPython 3.8Windows x86-64

spacy_experimental-0.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (688.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

spacy_experimental-0.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (644.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

spacy_experimental-0.6.0-cp38-cp38-macosx_11_0_arm64.whl (689.2 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

spacy_experimental-0.6.0-cp38-cp38-macosx_10_9_x86_64.whl (719.1 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

spacy_experimental-0.6.0-cp37-cp37m-win_amd64.whl (559.2 kB view details)

Uploaded CPython 3.7mWindows x86-64

spacy_experimental-0.6.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (663.5 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

spacy_experimental-0.6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (627.5 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

spacy_experimental-0.6.0-cp37-cp37m-macosx_10_9_x86_64.whl (707.2 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

spacy_experimental-0.6.0-cp36-cp36m-win_amd64.whl (619.8 kB view details)

Uploaded CPython 3.6mWindows x86-64

spacy_experimental-0.6.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (663.1 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

spacy_experimental-0.6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (626.4 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: spacy-experimental-0.6.0.tar.gz
  • Upload date:
  • Size: 58.7 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.0.tar.gz
Algorithm Hash digest
SHA256 75f8d69b070c343a89a3803ffb8a367f746037308105292bbab8c837e7584f85
MD5 609fbe44cee30b7ce69fa50c42103ad4
BLAKE2b-256 f07587560ebfbcd48762e4ca1d767dad74b1294395e26255c56428c0d8e9f5b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 55cea8ddb8bb22e13804a6593dbebb45c5194295fc756ca0691eb82d4150b84c
MD5 63dfcd787a919db710a30fb7011e792c
BLAKE2b-256 bdec94b4a269952203d3fb2242ce746a81ce0e01b541fa14e3033caf425e3644

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d4a240a11772123270bb9eb969f5e3a389238617a96496d555a590c1020758aa
MD5 a113956f153230710ff775b07ff758b1
BLAKE2b-256 12b490095014b0e270ac9b23f6f3fb2aaffadec05bfad639e2f11e27f8470389

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5044eda4e68a3e9da1797248e5a6350424eb56effe1ec0192b52eeb98db712b8
MD5 393e7280df39ebe2d64e529f5fe449d5
BLAKE2b-256 4ac5ee59eaca37a8064b2788c855bb4f4def2e03c1df9bddd0cb17eb36055421

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0e0c650661029cd02697f8d42bc11c9b1c7b42cb214155cf1c4d89c8be33cd4
MD5 1112b53f3f9363277c31d5dd7cd78a86
BLAKE2b-256 ca5be566ed6da6eab1002fc3ec3792f68afb72a84aca5968331ca771b2d79e8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7bd13f7304bcdd958bbe6c0a74b7004874d1263e651a63d5da5f6c711746065b
MD5 9cc7a2c653e89996f7035e3942f066fa
BLAKE2b-256 3d3874134a4f2d26105060fe7d48863f252265689386557fb7193ea8f54a1742

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 17d9522ba690afd08abdc077ddaeac9f15802d4a169e357d2f02152557df4367
MD5 fe062a6679e5b6ab9537fe97699c217b
BLAKE2b-256 7740882597de402a600f6dea711e36812c00895a488bceba9d124b2ee39430d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 149e7023a2fd02126916580448e0a13dcdc172a8b8b511848f12ea774bc95fef
MD5 f4ccb48f95f2abc6e2f84f1efbc10d22
BLAKE2b-256 6ba567a5adc82a8180dd9077f52610fa9e3f5fc4d41275ddd96780433ddeac74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7ebf7051511988c9ee0ef8ace48d759b4b4b092f6d46f813bfe9fc2b3ea415f1
MD5 0517469fe223a71ddcb1bdb63d773ac7
BLAKE2b-256 33eceb34c12c4272a4a4e1c20063b893eceb8cc6de943cf2cc468fd88be3694e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce5da3256c1585eb3cdfb1060d6748d1061522b4caaff2118d1a489ec9c0ecda
MD5 74c9cd2692929c76cb4c04bf64395c2a
BLAKE2b-256 74865a91a98d840b5ab0d7933cd2d121a933a2082cdbcc410a6338d8c4873be9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 143e36e2e0f7dd5ca884ec57cdb7318b2d21ed6673ddfff77e546355b5e0f230
MD5 a66c70c35d1aeed0667ac68a28ddc80b
BLAKE2b-256 c05241db63cb4d2aff2fc37997dc4c3181c1d81592a7e9933b9c98b82db3455e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0ce81556138dadb92391a5ce594089a93c8ef56ae3e04a4bcd081b0bb387f6f3
MD5 f7a2bd90a19163305a07fe46add53c22
BLAKE2b-256 87fca9656b45be6d88d8c8a33d41e05181e628c8fd9a540b7ce080df5ac6fbb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cccab261169332b1c454755a4cfbe993ea14bca7d0c189d14813ae60398f7b61
MD5 ac6ab02ee455948e6160d8e05303f396
BLAKE2b-256 ead031c3d52c884b1c1d91c0157dd250cacfff9285185aab463fa17b5ebcf7ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 19768ebbe7540397acc1c8c7d79487697ee0da026faed36922b53060be3ab9c2
MD5 d40ffc6e2e6c51b83a9399ed711001e8
BLAKE2b-256 cc606bac526df096844684149e074ea11b5f9b9903031efa6f29bdd7cd5a6b83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac8b1372b180977838cfda82363626f7f6940192a4811be1a09273135b047e5d
MD5 055ea1ad5892ecb0ffd95c207b804e7b
BLAKE2b-256 c087aa3acebd8f94bfae103f524420d58d86d053adaaeaacf1f30e646252f918

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cb4d9b993dc98742d6508aaa823d37c039259aa7b7aba0d37208421ab6c0d191
MD5 93680fdfa5de5326f7b889064a0a652f
BLAKE2b-256 5b8f3a870ddf61f4bd1732d56992ba9e3894add315ec5fc44834655c2bdd6e8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 700b8dc53ee1240f1b2f9e0d9a8ecc246dae0bfb2f13f3cd7bc567bec0c828a9
MD5 35be976d795274fe7c0f46757cfce2c7
BLAKE2b-256 7047a94d4b5cd525a925fdeae7f68565b0d77107d2ddf76e735805326e85a94b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6491f7294e7bff89ea923d29f9014743e92b586b51067a4c5194445bba3f5c6
MD5 e83370e78d8298cd1dfd5cb7a7146264
BLAKE2b-256 99ae32470587e226371803f3a2aff7dbab3b94b1a8a6d69c00aac21d35da3ee3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 373d596e301d08447c3efa5a53095166c43c62ea9c9541011a8dbf289a02dc1c
MD5 1f18ff2f1fcec28b80068fc669a240f2
BLAKE2b-256 1578fad2d9e9808d628fd798070d5763fb16cbf52d3d9cff6804004e1195dea1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f29ede3f17f5f0dff285e6fe22281d778b4011fd9a8a0d27b7b2c5c87dd38dd5
MD5 2027b490dfc51d48107d08b5a13b233e
BLAKE2b-256 0e342222e9a4d3c308c591a809a5105aedafc922be6eb7b0fa06ed295d26a6b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 4ac311a4bb8d81705d647b319e333d4e7482f417b0d9a0eb10a78efff340ae64
MD5 5a02a87e123a540792aa08117921674a
BLAKE2b-256 4cffd667350ad46e02aae6d1428100bc9cd50c8341460ba1a281b3a43a353290

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7dc090a1ff7e8d26723f14f53b534a35e512d37710d7cae204fc1aa2d90ae0cd
MD5 6d942e0b2744527ff34ef66711df1020
BLAKE2b-256 68d7c1c984b74e71c1822477c7c9bc1f7cb59a791437882a72f60200c653ca72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spacy_experimental-0.6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c44e8195b3286b2ad665b7717fedd5881ff51974f20fc642b5431c189f3565db
MD5 18f680e8b61814d3d2e3bb96339e1002
BLAKE2b-256 9e3d817e2f485d96ee6d55e8fa76559b7b11f4e467602a507a4f52e9d6bab197

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

0.6.1

28 files

This release

0.6.0 This release

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