spacy-transformers


Namespacy-transformers JSON
Version 1.3.5 PyPI version JSON
download
home_pagehttps://spacy.io
SummaryspaCy pipelines for pre-trained BERT and other transformers
upload_time2024-04-25 12:54:31
maintainerNone
docs_urlNone
authorExplosion
requires_python>=3.7
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <a href="https://explosion.ai"><img src="https://explosion.ai/assets/img/logo.svg" width="125" height="125" align="right" /></a>

# spacy-transformers: Use pretrained transformers like BERT, XLNet and GPT-2 in spaCy

This package provides [spaCy](https://github.com/explosion/spaCy) components and
architectures to use transformer models via
[Hugging Face's `transformers`](https://github.com/huggingface/transformers) in
spaCy. The result is convenient access to state-of-the-art transformer
architectures, such as BERT, GPT-2, XLNet, etc.

> **This release requires [spaCy v3](https://spacy.io/usage/v3).** For the
> previous version of this library, see the
> [`v0.6.x` branch](https://github.com/explosion/spacy-transformers/tree/v0.6.x).

[![tests](https://github.com/explosion/spacy-transformers/actions/workflows/tests.yml/badge.svg)](https://github.com/explosion/spacy-transformers/actions/workflows/tests.yml)
[![PyPi](https://img.shields.io/pypi/v/spacy-transformers.svg?style=flat-square&logo=pypi&logoColor=white)](https://pypi.python.org/pypi/spacy-transformers)
[![GitHub](https://img.shields.io/github/release/explosion/spacy-transformers/all.svg?style=flat-square&logo=github)](https://github.com/explosion/spacy-transformers/releases)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg?style=flat-square)](https://github.com/ambv/black)

## Features

- Use pretrained transformer models like **BERT**, **RoBERTa** and **XLNet** to
  power your spaCy pipeline.
- Easy **multi-task learning**: backprop to one transformer model from several
  pipeline components.
- Train using spaCy v3's powerful and extensible config system.
- Automatic alignment of transformer output to spaCy's tokenization.
- Easily customize what transformer data is saved in the `Doc` object.
- Easily customize how long documents are processed.
- Out-of-the-box serialization and model packaging.

## 🚀 Installation

Installing the package from pip will automatically install all dependencies,
including PyTorch and spaCy. Make sure you install this package **before** you
install the models. Also note that this package requires **Python 3.6+**,
**PyTorch v1.5+** and **spaCy v3.0+**.

```bash
pip install 'spacy[transformers]'
```

For GPU installation, find your CUDA version using `nvcc --version` and add the
[version in brackets](https://spacy.io/usage/#gpu), e.g.
`spacy[transformers,cuda92]` for CUDA9.2 or `spacy[transformers,cuda100]` for
CUDA10.0.

If you are having trouble installing PyTorch, follow the
[instructions](https://pytorch.org/get-started/locally/) on the official website
for your specific operating system and requirements.

## 📖 Documentation

> ⚠️ **Important note:** This package has been extensively refactored to take
> advantage of [spaCy v3.0](https://spacy.io). Previous versions that were built
> for [spaCy v2.x](https://v2.spacy.io) worked considerably differently. Please
> see previous tagged versions of this README for documentation on prior
> versions.

- 📘
  [Embeddings, Transformers and Transfer Learning](https://spacy.io/usage/embeddings-transformers):
  How to use transformers in spaCy
- 📘 [Training Pipelines and Models](https://spacy.io/usage/training): Train and
  update components on your own data and integrate custom models
- 📘
  [Layers and Model Architectures](https://spacy.io/usage/layers-architectures):
  Power spaCy components with custom neural networks
- 📗 [`Transformer`](https://spacy.io/api/transformer): Pipeline component API
  reference
- 📗
  [Transformer architectures](https://spacy.io/api/architectures#transformers):
  Architectures and registered functions

## Applying pretrained text and token classification models

Note that the `transformer` component from `spacy-transformers` does not support
task-specific heads like token or text classification. A task-specific
transformer model can be used as a source of features to train spaCy components
like `ner` or `textcat`, but the `transformer` component does not provide access
to task-specific heads for training or inference.

Alternatively, if you only want use to the **predictions** from an existing
Hugging Face text or token classification model, you can use the wrappers from
[`spacy-huggingface-pipelines`](https://github.com/explosion/spacy-huggingface-pipelines)
to incorporate task-specific transformer models into your spaCy pipelines.

## Bug reports and other issues

Please use [spaCy's issue tracker](https://github.com/explosion/spaCy/issues) to
report a bug, or open a new thread on the
[discussion board](https://github.com/explosion/spaCy/discussions) for any other
issue.

            

Raw data

            {
    "_id": null,
    "home_page": "https://spacy.io",
    "name": "spacy-transformers",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": null,
    "author": "Explosion",
    "author_email": "contact@explosion.ai",
    "download_url": "https://files.pythonhosted.org/packages/3f/63/5c76fdfa6bc4905c41031ab7ef2a5da221e438141e629ddf3f2729fd778c/spacy_transformers-1.3.5.tar.gz",
    "platform": null,
    "description": "<a href=\"https://explosion.ai\"><img src=\"https://explosion.ai/assets/img/logo.svg\" width=\"125\" height=\"125\" align=\"right\" /></a>\n\n# spacy-transformers: Use pretrained transformers like BERT, XLNet and GPT-2 in spaCy\n\nThis package provides [spaCy](https://github.com/explosion/spaCy) components and\narchitectures to use transformer models via\n[Hugging Face's `transformers`](https://github.com/huggingface/transformers) in\nspaCy. The result is convenient access to state-of-the-art transformer\narchitectures, such as BERT, GPT-2, XLNet, etc.\n\n> **This release requires [spaCy v3](https://spacy.io/usage/v3).** For the\n> previous version of this library, see the\n> [`v0.6.x` branch](https://github.com/explosion/spacy-transformers/tree/v0.6.x).\n\n[![tests](https://github.com/explosion/spacy-transformers/actions/workflows/tests.yml/badge.svg)](https://github.com/explosion/spacy-transformers/actions/workflows/tests.yml)\n[![PyPi](https://img.shields.io/pypi/v/spacy-transformers.svg?style=flat-square&logo=pypi&logoColor=white)](https://pypi.python.org/pypi/spacy-transformers)\n[![GitHub](https://img.shields.io/github/release/explosion/spacy-transformers/all.svg?style=flat-square&logo=github)](https://github.com/explosion/spacy-transformers/releases)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg?style=flat-square)](https://github.com/ambv/black)\n\n## Features\n\n- Use pretrained transformer models like **BERT**, **RoBERTa** and **XLNet** to\n  power your spaCy pipeline.\n- Easy **multi-task learning**: backprop to one transformer model from several\n  pipeline components.\n- Train using spaCy v3's powerful and extensible config system.\n- Automatic alignment of transformer output to spaCy's tokenization.\n- Easily customize what transformer data is saved in the `Doc` object.\n- Easily customize how long documents are processed.\n- Out-of-the-box serialization and model packaging.\n\n## \ud83d\ude80 Installation\n\nInstalling the package from pip will automatically install all dependencies,\nincluding PyTorch and spaCy. Make sure you install this package **before** you\ninstall the models. Also note that this package requires **Python 3.6+**,\n**PyTorch v1.5+** and **spaCy v3.0+**.\n\n```bash\npip install 'spacy[transformers]'\n```\n\nFor GPU installation, find your CUDA version using `nvcc --version` and add the\n[version in brackets](https://spacy.io/usage/#gpu), e.g.\n`spacy[transformers,cuda92]` for CUDA9.2 or `spacy[transformers,cuda100]` for\nCUDA10.0.\n\nIf you are having trouble installing PyTorch, follow the\n[instructions](https://pytorch.org/get-started/locally/) on the official website\nfor your specific operating system and requirements.\n\n## \ud83d\udcd6 Documentation\n\n> \u26a0\ufe0f **Important note:** This package has been extensively refactored to take\n> advantage of [spaCy v3.0](https://spacy.io). Previous versions that were built\n> for [spaCy v2.x](https://v2.spacy.io) worked considerably differently. Please\n> see previous tagged versions of this README for documentation on prior\n> versions.\n\n- \ud83d\udcd8\n  [Embeddings, Transformers and Transfer Learning](https://spacy.io/usage/embeddings-transformers):\n  How to use transformers in spaCy\n- \ud83d\udcd8 [Training Pipelines and Models](https://spacy.io/usage/training): Train and\n  update components on your own data and integrate custom models\n- \ud83d\udcd8\n  [Layers and Model Architectures](https://spacy.io/usage/layers-architectures):\n  Power spaCy components with custom neural networks\n- \ud83d\udcd7 [`Transformer`](https://spacy.io/api/transformer): Pipeline component API\n  reference\n- \ud83d\udcd7\n  [Transformer architectures](https://spacy.io/api/architectures#transformers):\n  Architectures and registered functions\n\n## Applying pretrained text and token classification models\n\nNote that the `transformer` component from `spacy-transformers` does not support\ntask-specific heads like token or text classification. A task-specific\ntransformer model can be used as a source of features to train spaCy components\nlike `ner` or `textcat`, but the `transformer` component does not provide access\nto task-specific heads for training or inference.\n\nAlternatively, if you only want use to the **predictions** from an existing\nHugging Face text or token classification model, you can use the wrappers from\n[`spacy-huggingface-pipelines`](https://github.com/explosion/spacy-huggingface-pipelines)\nto incorporate task-specific transformer models into your spaCy pipelines.\n\n## Bug reports and other issues\n\nPlease use [spaCy's issue tracker](https://github.com/explosion/spaCy/issues) to\nreport a bug, or open a new thread on the\n[discussion board](https://github.com/explosion/spaCy/discussions) for any other\nissue.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "spaCy pipelines for pre-trained BERT and other transformers",
    "version": "1.3.5",
    "project_urls": {
        "Homepage": "https://spacy.io"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f749db11bd26aa6f2e3db29cc341e58e8f037be375fb5a25b8592ea0090f2ef2",
                "md5": "b3a4ecc1983b30e9edba5a3935d55c24",
                "sha256": "7f74f47a1d8b86d50c8ad6bba8334852cf19001e776b0c4a1f580bc0387d2f43"
            },
            "downloads": -1,
            "filename": "spacy_transformers-1.3.5-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b3a4ecc1983b30e9edba5a3935d55c24",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 181497,
            "upload_time": "2024-04-25T12:53:43",
            "upload_time_iso_8601": "2024-04-25T12:53:43.448779Z",
            "url": "https://files.pythonhosted.org/packages/f7/49/db11bd26aa6f2e3db29cc341e58e8f037be375fb5a25b8592ea0090f2ef2/spacy_transformers-1.3.5-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "695a5025a810f3930e2329f2e14ce6ae79bed357521850b5aebe04c1368e5ed6",
                "md5": "a3973f917f9ea81717ef11fd0aa5f1d9",
                "sha256": "75de3cb416e8fae2195b7d88178133fd9a350aa266a24995e826b4304fb2d105"
            },
            "downloads": -1,
            "filename": "spacy_transformers-1.3.5-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a3973f917f9ea81717ef11fd0aa5f1d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 174858,
            "upload_time": "2024-04-25T12:53:45",
            "upload_time_iso_8601": "2024-04-25T12:53:45.875424Z",
            "url": "https://files.pythonhosted.org/packages/69/5a/5025a810f3930e2329f2e14ce6ae79bed357521850b5aebe04c1368e5ed6/spacy_transformers-1.3.5-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4b5b6a7703f5ef42fb455a6863d3ad00ef9036a37025bda9ed96025564dd3d33",
                "md5": "3531c5070c41158e6f49b5cdc07e7a66",
                "sha256": "1e1a5fcf3d486111c46ee4c6e767e32e1ddda4f3f0c06feac0a987687bf6594f"
            },
            "downloads": -1,
            "filename": "spacy_transformers-1.3.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3531c5070c41158e6f49b5cdc07e7a66",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 191114,
            "upload_time": "2024-04-25T12:53:47",
            "upload_time_iso_8601": "2024-04-25T12:53:47.636463Z",
            "url": "https://files.pythonhosted.org/packages/4b/5b/6a7703f5ef42fb455a6863d3ad00ef9036a37025bda9ed96025564dd3d33/spacy_transformers-1.3.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b8f53d1f121fa7de31c65a3078c687b8ffdb2bb34aebcb20fc862f285af81546",
                "md5": "f26c77582fe58e8fb676856d2a9140ab",
                "sha256": "6db43ea2a79b8dfcb7742d935af125d8f8daea2c4b5d33e933f246e348688cf0"
            },
            "downloads": -1,
            "filename": "spacy_transformers-1.3.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f26c77582fe58e8fb676856d2a9140ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 197795,
            "upload_time": "2024-04-25T12:53:49",
            "upload_time_iso_8601": "2024-04-25T12:53:49.829677Z",
            "url": "https://files.pythonhosted.org/packages/b8/f5/3d1f121fa7de31c65a3078c687b8ffdb2bb34aebcb20fc862f285af81546/spacy_transformers-1.3.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "add77b26ff27198096b7249bd3ff94234d2b2cb5dc908700984d1c40e3a0b607",
                "md5": "0971e0e159c3d4d39a1833f8efe5dd3a",
                "sha256": "961a631cbf724847db280822df972dd5d05d39a70c21310da3e431fea4164dff"
            },
            "downloads": -1,
            "filename": "spacy_transformers-1.3.5-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0971e0e159c3d4d39a1833f8efe5dd3a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 343154,
            "upload_time": "2024-04-25T12:53:51",
            "upload_time_iso_8601": "2024-04-25T12:53:51.583034Z",
            "url": "https://files.pythonhosted.org/packages/ad/d7/7b26ff27198096b7249bd3ff94234d2b2cb5dc908700984d1c40e3a0b607/spacy_transformers-1.3.5-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f10bd89c4370f5f2c62242fa4a7fa4c23ccc7f7d6385df1abf77b2d0d32a34ef",
                "md5": "aef673b84f53baf05922545d08cd8c57",
                "sha256": "6a0de2c301864ece1eb84b5249ff1b0a7a01900cc26bb67f72eea00146d06b9f"
            },
            "downloads": -1,
            "filename": "spacy_transformers-1.3.5-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aef673b84f53baf05922545d08cd8c57",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 181295,
            "upload_time": "2024-04-25T12:53:53",
            "upload_time_iso_8601": "2024-04-25T12:53:53.459742Z",
            "url": "https://files.pythonhosted.org/packages/f1/0b/d89c4370f5f2c62242fa4a7fa4c23ccc7f7d6385df1abf77b2d0d32a34ef/spacy_transformers-1.3.5-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9e2ebf101506a2af14bf13f64c1914a25ef8723c7648b402014dc624d90ce8b7",
                "md5": "73cad1168c25b38305f5a4c4252da59f",
                "sha256": "c0aa0a2cc401414d48a5cfc6c13bbedabb07dc672c384f5594ec5d578ff9e6a5"
            },
            "downloads": -1,
            "filename": "spacy_transformers-1.3.5-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "73cad1168c25b38305f5a4c4252da59f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 174959,
            "upload_time": "2024-04-25T12:53:55",
            "upload_time_iso_8601": "2024-04-25T12:53:55.081306Z",
            "url": "https://files.pythonhosted.org/packages/9e/2e/bf101506a2af14bf13f64c1914a25ef8723c7648b402014dc624d90ce8b7/spacy_transformers-1.3.5-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3cfd2160d60dbf0645d8a19b338bf82d6076dcd7bb16f62d1ca0bbb5d0899129",
                "md5": "a521ecfa0412bcf057744d470e9bbf62",
                "sha256": "c39e546f5f44a6838a290b986e7f6f8aa7d2613962cf753dc16e18da932be0ae"
            },
            "downloads": -1,
            "filename": "spacy_transformers-1.3.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a521ecfa0412bcf057744d470e9bbf62",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 190935,
            "upload_time": "2024-04-25T12:53:56",
            "upload_time_iso_8601": "2024-04-25T12:53:56.972191Z",
            "url": "https://files.pythonhosted.org/packages/3c/fd/2160d60dbf0645d8a19b338bf82d6076dcd7bb16f62d1ca0bbb5d0899129/spacy_transformers-1.3.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be6cbe84e5fd8ea01dfded24e176007db067f2c988ae2be89fe092f3b780d986",
                "md5": "de1549e8fefe7500c08b79d763421d78",
                "sha256": "47f72d35f5aa4f88e0f3b9ff62a29985bff6ba940d13ba20ca165d61241b8410"
            },
            "downloads": -1,
            "filename": "spacy_transformers-1.3.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "de1549e8fefe7500c08b79d763421d78",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 197675,
            "upload_time": "2024-04-25T12:53:58",
            "upload_time_iso_8601": "2024-04-25T12:53:58.935679Z",
            "url": "https://files.pythonhosted.org/packages/be/6c/be84e5fd8ea01dfded24e176007db067f2c988ae2be89fe092f3b780d986/spacy_transformers-1.3.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "18fa3ec6da0467330fc1e6ad235115a34d03ec75288aa351be28afd886ef5634",
                "md5": "ac2fc63bc4cdfffc5e0db46f8600961a",
                "sha256": "2b6c1152e19d0f8dfb79febcf6792f43e31acb76b836b3b57fa2cc7dd9c11c28"
            },
            "downloads": -1,
            "filename": "spacy_transformers-1.3.5-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ac2fc63bc4cdfffc5e0db46f8600961a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 343612,
            "upload_time": "2024-04-25T12:54:00",
            "upload_time_iso_8601": "2024-04-25T12:54:00.559690Z",
            "url": "https://files.pythonhosted.org/packages/18/fa/3ec6da0467330fc1e6ad235115a34d03ec75288aa351be28afd886ef5634/spacy_transformers-1.3.5-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "beb59fc76fc89f2f018e97c5ff6710b8cda02015f1432a2ef8af13856ec4a6fd",
                "md5": "984704b4e449621150ef9f33d97064b9",
                "sha256": "0aa12d703c58a3423ad913c99f5056b71963d000126336406262ba4d6474f22f"
            },
            "downloads": -1,
            "filename": "spacy_transformers-1.3.5-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "984704b4e449621150ef9f33d97064b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 180354,
            "upload_time": "2024-04-25T12:54:02",
            "upload_time_iso_8601": "2024-04-25T12:54:02.349020Z",
            "url": "https://files.pythonhosted.org/packages/be/b5/9fc76fc89f2f018e97c5ff6710b8cda02015f1432a2ef8af13856ec4a6fd/spacy_transformers-1.3.5-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c5d42dddcd71e285c91d6ff16da2f964d66aadc90dadb51bc69c3e0684d391d",
                "md5": "dfda1975660c7fc3f17ec2c0bb5ac7ad",
                "sha256": "8e7fdb8b1b12d4a07a4bf5af98ab7035830030594c8900b681644b4cfdffddf2"
            },
            "downloads": -1,
            "filename": "spacy_transformers-1.3.5-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "dfda1975660c7fc3f17ec2c0bb5ac7ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 172946,
            "upload_time": "2024-04-25T12:54:04",
            "upload_time_iso_8601": "2024-04-25T12:54:04.174635Z",
            "url": "https://files.pythonhosted.org/packages/7c/5d/42dddcd71e285c91d6ff16da2f964d66aadc90dadb51bc69c3e0684d391d/spacy_transformers-1.3.5-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "095e6ea1cbe7b42f5f3d8acadca4493d9b7543ebef02a5e459cb9d15f760330d",
                "md5": "06ba09f1460d886f1d781065a26f0d74",
                "sha256": "29dbde65d88cd9f14f05c3428558f5cb981e7b5c9374aac9f83fb786d5c6bf2c"
            },
            "downloads": -1,
            "filename": "spacy_transformers-1.3.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "06ba09f1460d886f1d781065a26f0d74",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 198150,
            "upload_time": "2024-04-25T12:54:06",
            "upload_time_iso_8601": "2024-04-25T12:54:06.437660Z",
            "url": "https://files.pythonhosted.org/packages/09/5e/6ea1cbe7b42f5f3d8acadca4493d9b7543ebef02a5e459cb9d15f760330d/spacy_transformers-1.3.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "881668e937c6b78c67209c8fa521ef5ec020c57bd5539a3e1ea422dc0819e89e",
                "md5": "19412c01028accb086c0aa4b87ea7db2",
                "sha256": "ab5b79775f1a9b12370f86a4b282a5d9889fdb067305203e81fc4ec990cbc737"
            },
            "downloads": -1,
            "filename": "spacy_transformers-1.3.5-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "19412c01028accb086c0aa4b87ea7db2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 342325,
            "upload_time": "2024-04-25T12:54:07",
            "upload_time_iso_8601": "2024-04-25T12:54:07.866172Z",
            "url": "https://files.pythonhosted.org/packages/88/16/68e937c6b78c67209c8fa521ef5ec020c57bd5539a3e1ea422dc0819e89e/spacy_transformers-1.3.5-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "47bf606fc0bada6cc6787661c272b757a4c9d05a3fefcc7bc80f45c6abeb6d55",
                "md5": "ae02f09ad0964412ec7c97c83304a91f",
                "sha256": "474db46a6a12f5fba37f52adafed6b8a83b488d4bc4b532fd5f70489c5d7d232"
            },
            "downloads": -1,
            "filename": "spacy_transformers-1.3.5-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ae02f09ad0964412ec7c97c83304a91f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 178648,
            "upload_time": "2024-04-25T12:54:09",
            "upload_time_iso_8601": "2024-04-25T12:54:09.441213Z",
            "url": "https://files.pythonhosted.org/packages/47/bf/606fc0bada6cc6787661c272b757a4c9d05a3fefcc7bc80f45c6abeb6d55/spacy_transformers-1.3.5-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7395cb3ea01c505839f4774d5bc1ca267139cc4080c04a04f5a448ab61fca7b",
                "md5": "250807ff05053328f8425e76396a8f66",
                "sha256": "b69f60113ecf7465aeb008ec8aad93ad9ef0c4472709c339cd80f9973f878af9"
            },
            "downloads": -1,
            "filename": "spacy_transformers-1.3.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "250807ff05053328f8425e76396a8f66",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 188587,
            "upload_time": "2024-04-25T12:54:11",
            "upload_time_iso_8601": "2024-04-25T12:54:11.545359Z",
            "url": "https://files.pythonhosted.org/packages/a7/39/5cb3ea01c505839f4774d5bc1ca267139cc4080c04a04f5a448ab61fca7b/spacy_transformers-1.3.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0d1f256ce7dfbc6ee341987dc4cb233956c4deb11ee723cfdfb843b660e3130a",
                "md5": "096137f24ac69d255da5ba3526c0d314",
                "sha256": "9668bdc13dbd9f586d13f4e1e58ec6dba6108d08150ca2387c92a08caeedd184"
            },
            "downloads": -1,
            "filename": "spacy_transformers-1.3.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "096137f24ac69d255da5ba3526c0d314",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 194085,
            "upload_time": "2024-04-25T12:54:13",
            "upload_time_iso_8601": "2024-04-25T12:54:13.072679Z",
            "url": "https://files.pythonhosted.org/packages/0d/1f/256ce7dfbc6ee341987dc4cb233956c4deb11ee723cfdfb843b660e3130a/spacy_transformers-1.3.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bdb728a3062e18cd593a895b097e4acfb80dc75faad6278e147b3750c1bbda90",
                "md5": "58249b546e974624d49eb5be01501244",
                "sha256": "e81aaab478f9bffe4c3aba22ab5afb2809c737ac23bbea553ceb0802538cf918"
            },
            "downloads": -1,
            "filename": "spacy_transformers-1.3.5-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "58249b546e974624d49eb5be01501244",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 341323,
            "upload_time": "2024-04-25T12:54:15",
            "upload_time_iso_8601": "2024-04-25T12:54:15.160114Z",
            "url": "https://files.pythonhosted.org/packages/bd/b7/28a3062e18cd593a895b097e4acfb80dc75faad6278e147b3750c1bbda90/spacy_transformers-1.3.5-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "558538ee066a77a4f700acfbabdeeab8392ffcde912bf0e582b5e1efc809637f",
                "md5": "93b0c3d52d654b655a0a57a7fadfaa64",
                "sha256": "43a4f1da7dc05236cd9dbe9260dddfca7a4307805aecde0346cbc809ecf45892"
            },
            "downloads": -1,
            "filename": "spacy_transformers-1.3.5-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "93b0c3d52d654b655a0a57a7fadfaa64",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 180688,
            "upload_time": "2024-04-25T12:54:16",
            "upload_time_iso_8601": "2024-04-25T12:54:16.562941Z",
            "url": "https://files.pythonhosted.org/packages/55/85/38ee066a77a4f700acfbabdeeab8392ffcde912bf0e582b5e1efc809637f/spacy_transformers-1.3.5-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a1828d8b1e9af9069069da92d69d029dd140c0e97cb71b6fa3b87fddf0f08358",
                "md5": "999c79795ce0ab78c7cebf19b73f3354",
                "sha256": "6ee966fdc83d1b5b3258cc19e40719a18380e99f286207216588fb0e7247745f"
            },
            "downloads": -1,
            "filename": "spacy_transformers-1.3.5-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "999c79795ce0ab78c7cebf19b73f3354",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 174322,
            "upload_time": "2024-04-25T12:54:17",
            "upload_time_iso_8601": "2024-04-25T12:54:17.980762Z",
            "url": "https://files.pythonhosted.org/packages/a1/82/8d8b1e9af9069069da92d69d029dd140c0e97cb71b6fa3b87fddf0f08358/spacy_transformers-1.3.5-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "866405eb2ee7634f82d0df4deda07573d60bc495d2a3063fd4621a3520030e7c",
                "md5": "130b2c8ff90ac35187d23bca0dffbedd",
                "sha256": "ef54d2e00e5f1934ae7d2a09bc0fece79d628ebaf0ce733dd852fbce49e25773"
            },
            "downloads": -1,
            "filename": "spacy_transformers-1.3.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "130b2c8ff90ac35187d23bca0dffbedd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 192453,
            "upload_time": "2024-04-25T12:54:19",
            "upload_time_iso_8601": "2024-04-25T12:54:19.563331Z",
            "url": "https://files.pythonhosted.org/packages/86/64/05eb2ee7634f82d0df4deda07573d60bc495d2a3063fd4621a3520030e7c/spacy_transformers-1.3.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fc9de10e69d1f7779aa8fd0bb6de6b6d6623e172f1b37b38edc85a6c0815a3a5",
                "md5": "ef5698c06f4112518551c388a7ad7e5f",
                "sha256": "6b610d757e0617088e400e38d8118f0f911324b62eb63d2ff813caf6477181b8"
            },
            "downloads": -1,
            "filename": "spacy_transformers-1.3.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ef5698c06f4112518551c388a7ad7e5f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 199822,
            "upload_time": "2024-04-25T12:54:20",
            "upload_time_iso_8601": "2024-04-25T12:54:20.902462Z",
            "url": "https://files.pythonhosted.org/packages/fc/9d/e10e69d1f7779aa8fd0bb6de6b6d6623e172f1b37b38edc85a6c0815a3a5/spacy_transformers-1.3.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "69a072c2416d2659d0bb63a0b562f3f8a02a648d021a1db3acd571b5ab51fee3",
                "md5": "47a501bcb81ebb6917cfa637f12becf9",
                "sha256": "e02ee6e029fc6c9250ef6083743446c64007b4baee1de7d29c994c0103756aa9"
            },
            "downloads": -1,
            "filename": "spacy_transformers-1.3.5-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "47a501bcb81ebb6917cfa637f12becf9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 343362,
            "upload_time": "2024-04-25T12:54:22",
            "upload_time_iso_8601": "2024-04-25T12:54:22.374294Z",
            "url": "https://files.pythonhosted.org/packages/69/a0/72c2416d2659d0bb63a0b562f3f8a02a648d021a1db3acd571b5ab51fee3/spacy_transformers-1.3.5-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "416f6790034340e4318f3ec1ed89f133ea5ea0a094f44a9ccedde51294e18a78",
                "md5": "1d5566c5dab47c839e037569ff252223",
                "sha256": "75fa1ff1b511ddb81c7a3b69a731635abb9a0b360413db77f788e81b4b06719f"
            },
            "downloads": -1,
            "filename": "spacy_transformers-1.3.5-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1d5566c5dab47c839e037569ff252223",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 181582,
            "upload_time": "2024-04-25T12:54:23",
            "upload_time_iso_8601": "2024-04-25T12:54:23.665269Z",
            "url": "https://files.pythonhosted.org/packages/41/6f/6790034340e4318f3ec1ed89f133ea5ea0a094f44a9ccedde51294e18a78/spacy_transformers-1.3.5-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b2f5fb468100ede9ae5533c384af6565b1a65b987de56b85b8c18f69c5d2aaa6",
                "md5": "e86e92615ff281ab4459813ebd32a30e",
                "sha256": "5f184c117d427227266d623ffc456b2221a487616b3dd7e6262ba60bd34e604f"
            },
            "downloads": -1,
            "filename": "spacy_transformers-1.3.5-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e86e92615ff281ab4459813ebd32a30e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 175109,
            "upload_time": "2024-04-25T12:54:24",
            "upload_time_iso_8601": "2024-04-25T12:54:24.953379Z",
            "url": "https://files.pythonhosted.org/packages/b2/f5/fb468100ede9ae5533c384af6565b1a65b987de56b85b8c18f69c5d2aaa6/spacy_transformers-1.3.5-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e9c7310ca91b12d3549dd1db2dd7e4ba17ef31c8eb1b64b4d41f6e3663f9ddae",
                "md5": "55c25ba5224fbd8ca9fc7e1bad69f429",
                "sha256": "9ae85cf563a771f060520de6b360ebec87a7344ae44b36429b75db0038ba55c6"
            },
            "downloads": -1,
            "filename": "spacy_transformers-1.3.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "55c25ba5224fbd8ca9fc7e1bad69f429",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 191204,
            "upload_time": "2024-04-25T12:54:26",
            "upload_time_iso_8601": "2024-04-25T12:54:26.936921Z",
            "url": "https://files.pythonhosted.org/packages/e9/c7/310ca91b12d3549dd1db2dd7e4ba17ef31c8eb1b64b4d41f6e3663f9ddae/spacy_transformers-1.3.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "28bb0b9bbdc436a095e2d6eec9ce87146ae346ac3e3b3fc1fc4ba2d21e899330",
                "md5": "99075acbbeeb3faa46aeeea7dc71797f",
                "sha256": "0284256371ec1e15f1e1a6b541efd9d5462c6484e9d447f2da1bc76aee5ffa1e"
            },
            "downloads": -1,
            "filename": "spacy_transformers-1.3.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "99075acbbeeb3faa46aeeea7dc71797f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 198023,
            "upload_time": "2024-04-25T12:54:28",
            "upload_time_iso_8601": "2024-04-25T12:54:28.945376Z",
            "url": "https://files.pythonhosted.org/packages/28/bb/0b9bbdc436a095e2d6eec9ce87146ae346ac3e3b3fc1fc4ba2d21e899330/spacy_transformers-1.3.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a0773829e79e5cf19d0408c07d3bc5a1f118248423e248d74d869660fe6cf21d",
                "md5": "62e16787ee2eed54fbd7cdc81090c7e1",
                "sha256": "44392a83189e52faf5adc3ae8daff17e9eae543c81ab7f3cb8265670acc8c82a"
            },
            "downloads": -1,
            "filename": "spacy_transformers-1.3.5-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "62e16787ee2eed54fbd7cdc81090c7e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 343180,
            "upload_time": "2024-04-25T12:54:30",
            "upload_time_iso_8601": "2024-04-25T12:54:30.444160Z",
            "url": "https://files.pythonhosted.org/packages/a0/77/3829e79e5cf19d0408c07d3bc5a1f118248423e248d74d869660fe6cf21d/spacy_transformers-1.3.5-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3f635c76fdfa6bc4905c41031ab7ef2a5da221e438141e629ddf3f2729fd778c",
                "md5": "91553a72c9a277590d03e349f532b0b9",
                "sha256": "accdfe44a26517714c6990ec6bae88796eb348286fea7ba20ba2736f70c83fa1"
            },
            "downloads": -1,
            "filename": "spacy_transformers-1.3.5.tar.gz",
            "has_sig": false,
            "md5_digest": "91553a72c9a277590d03e349f532b0b9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 49136,
            "upload_time": "2024-04-25T12:54:31",
            "upload_time_iso_8601": "2024-04-25T12:54:31.762995Z",
            "url": "https://files.pythonhosted.org/packages/3f/63/5c76fdfa6bc4905c41031ab7ef2a5da221e438141e629ddf3f2729fd778c/spacy_transformers-1.3.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-25 12:54:31",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "spacy-transformers"
}
        
Elapsed time: 0.24013s