torchtext


Nametorchtext JSON
Version 0.18.0 PyPI version JSON
download
home_pagehttps://github.com/pytorch/text
SummaryText utilities, models, transforms, and datasets for PyTorch.
upload_time2024-04-24 15:49:45
maintainerNone
docs_urlNone
authorPyTorch Text Team
requires_python>=3.8
licenseBSD
keywords
VCS
bugtrack_url
requirements tqdm requests nltk spacy sacremoses None Sphinx pytest expecttest parameterized pytest-pythonpath pytest-cov codecov defusedxml
Travis-CI No Travis.
coveralls test coverage No coveralls.
            .. image:: docs/source/_static/img/torchtext_logo.png

.. image:: https://circleci.com/gh/pytorch/text.svg?style=svg
    :target: https://circleci.com/gh/pytorch/text

.. image:: https://codecov.io/gh/pytorch/text/branch/main/graph/badge.svg
    :target: https://codecov.io/gh/pytorch/text

.. image:: https://img.shields.io/badge/dynamic/json.svg?label=docs&url=https%3A%2F%2Fpypi.org%2Fpypi%2Ftorchtext%2Fjson&query=%24.info.version&colorB=brightgreen&prefix=v
    :target: https://pytorch.org/text/

torchtext
+++++++++

CAUTION: As of September 2023 we have paused active development of TorchText because our focus has shifted away from building out this library offering.
We will continue to release new versions but do not anticipate any new feature development as we figure out future investments in this space.

This repository consists of:

* `torchtext.datasets <https://github.com/pytorch/text/tree/main/torchtext/datasets>`_: The raw text iterators for common NLP datasets
* `torchtext.data <https://github.com/pytorch/text/tree/main/torchtext/data>`_: Some basic NLP building blocks
* `torchtext.transforms <https://github.com/pytorch/text/tree/main/torchtext/transforms.py>`_: Basic text-processing transformations
* `torchtext.models <https://github.com/pytorch/text/tree/main/torchtext/models>`_: Pre-trained models
* `torchtext.vocab <https://github.com/pytorch/text/tree/main/torchtext/vocab>`_: Vocab and Vectors related classes and factory functions
* `examples <https://github.com/pytorch/text/tree/main/examples>`_: Example NLP workflows with PyTorch and torchtext library.


Installation
============

We recommend Anaconda as a Python package management system. Please refer to `pytorch.org <https://pytorch.org/>`_ for the details of PyTorch installation. The following are the corresponding ``torchtext`` versions and supported Python versions.

.. csv-table:: Version Compatibility
   :header: "PyTorch version", "torchtext version", "Supported Python version"
   :widths: 10, 10, 10

   nightly build, main, ">=3.8, <=3.11"
   2.2.0, 0.17.0, ">=3.8, <=3.11"
   2.1.0, 0.16.0, ">=3.8, <=3.11"
   2.0.0, 0.15.0, ">=3.8, <=3.11"
   1.13.0, 0.14.0, ">=3.7, <=3.10"
   1.12.0, 0.13.0, ">=3.7, <=3.10"
   1.11.0, 0.12.0, ">=3.6, <=3.9"
   1.10.0, 0.11.0, ">=3.6, <=3.9"
   1.9.1, 0.10.1, ">=3.6, <=3.9"
   1.9, 0.10, ">=3.6, <=3.9"
   1.8.1, 0.9.1, ">=3.6, <=3.9"
   1.8, 0.9, ">=3.6, <=3.9"
   1.7.1, 0.8.1, ">=3.6, <=3.9"
   1.7, 0.8, ">=3.6, <=3.8"
   1.6, 0.7, ">=3.6, <=3.8"
   1.5, 0.6, ">=3.5, <=3.8"
   1.4, 0.5, "2.7, >=3.5, <=3.8"
   0.4 and below, 0.2.3, "2.7, >=3.5, <=3.8"

Using conda::

    conda install -c pytorch torchtext

Using pip::

    pip install torchtext

Optional requirements
---------------------

If you want to use English tokenizer from `SpaCy <http://spacy.io/>`_, you need to install SpaCy and download its English model::

    pip install spacy
    python -m spacy download en_core_web_sm

Alternatively, you might want to use the `Moses <http://www.statmt.org/moses/>`_ tokenizer port in `SacreMoses <https://github.com/alvations/sacremoses>`_ (split from `NLTK <http://nltk.org/>`_). You have to install SacreMoses::

    pip install sacremoses

For torchtext 0.5 and below, ``sentencepiece``::

    conda install -c powerai sentencepiece

Building from source
--------------------

To build torchtext from source, you need ``git``, ``CMake`` and C++11 compiler such as ``g++``.::

    git clone https://github.com/pytorch/text torchtext
    cd torchtext
    git submodule update --init --recursive

    # Linux
    python setup.py clean install

    # OSX
    CC=clang CXX=clang++ python setup.py clean install

    # or ``python setup.py develop`` if you are making modifications.

**Note**

When building from source, make sure that you have the same C++ compiler as the one used to build PyTorch. A simple way is to build PyTorch from source and use the same environment to build torchtext.
If you are using the nightly build of PyTorch, checkout the environment it was built with `conda (here) <https://github.com/pytorch/builder/tree/main/conda>`_ and `pip (here) <https://github.com/pytorch/builder/tree/main/manywheel>`_.

Additionally, datasets in torchtext are implemented using the torchdata library. Please take a look at the
`installation instructions <https://github.com/pytorch/data#installation>`_ to download the latest nightlies or install from source.

Documentation
=============

Find the documentation `here <https://pytorch.org/text/>`_.

Datasets
========

The datasets module currently contains:

* Language modeling: WikiText2, WikiText103, PennTreebank, EnWik9
* Machine translation: IWSLT2016, IWSLT2017, Multi30k
* Sequence tagging (e.g. POS/NER): UDPOS, CoNLL2000Chunking
* Question answering: SQuAD1, SQuAD2
* Text classification: SST2, AG_NEWS, SogouNews, DBpedia, YelpReviewPolarity, YelpReviewFull, YahooAnswers, AmazonReviewPolarity, AmazonReviewFull, IMDB
* Model pre-training: CC-100

Models
======

The library currently consist of following pre-trained models:

* RoBERTa: `Base and Large Architecture <https://github.com/pytorch/fairseq/tree/main/examples/roberta#pre-trained-models>`_
* `DistilRoBERTa <https://github.com/huggingface/transformers/blob/main/examples/research_projects/distillation/README.md>`_
* XLM-RoBERTa: `Base and Large Architure <https://github.com/pytorch/fairseq/tree/main/examples/xlmr#pre-trained-models>`_
* T5: `Small, Base, Large, 3B, and 11B Architecture <https://github.com/google-research/text-to-text-transfer-transformer>`_
* Flan-T5: `Base, Large, XL, and XXL Architecture <https://github.com/google-research/t5x>`_

Tokenizers
==========

The transforms module currently support following scriptable tokenizers:

* `SentencePiece <https://github.com/google/sentencepiece>`_
* `GPT-2 BPE <https://github.com/openai/gpt-2/blob/master/src/encoder.py>`_
* `CLIP <https://github.com/openai/CLIP/blob/main/clip/simple_tokenizer.py>`_
* `RE2 <https://github.com/google/re2>`_
* `BERT <https://arxiv.org/pdf/1810.04805.pdf>`_

Tutorials
=========

To get started with torchtext, users may refer to the following tutorial available on PyTorch website.

* `SST-2 binary text classification using XLM-R pre-trained model <https://pytorch.org/text/stable/tutorials/sst2_classification_non_distributed.html>`_
* `Text classification with AG_NEWS dataset <https://pytorch.org/tutorials/beginner/text_sentiment_ngrams_tutorial.html>`_
* `Translation trained with Multi30k dataset using transformers and torchtext <https://pytorch.org/tutorials/beginner/translation_transformer.html>`_
* `Language modeling using transforms and torchtext <https://pytorch.org/tutorials/beginner/transformer_tutorial.html>`_


Disclaimer on Datasets
======================

This is a utility library that downloads and prepares public datasets. We do not host or distribute these datasets, vouch for their quality or fairness, or claim that you have license to use the dataset. It is your responsibility to determine whether you have permission to use the dataset under the dataset's license.

If you're a dataset owner and wish to update any part of it (description, citation, etc.), or do not want your dataset to be included in this library, please get in touch through a GitHub issue. Thanks for your contribution to the ML community!

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/pytorch/text",
    "name": "torchtext",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": "PyTorch Text Team",
    "author_email": "packages@pytorch.org",
    "download_url": null,
    "platform": null,
    "description": ".. image:: docs/source/_static/img/torchtext_logo.png\n\n.. image:: https://circleci.com/gh/pytorch/text.svg?style=svg\n    :target: https://circleci.com/gh/pytorch/text\n\n.. image:: https://codecov.io/gh/pytorch/text/branch/main/graph/badge.svg\n    :target: https://codecov.io/gh/pytorch/text\n\n.. image:: https://img.shields.io/badge/dynamic/json.svg?label=docs&url=https%3A%2F%2Fpypi.org%2Fpypi%2Ftorchtext%2Fjson&query=%24.info.version&colorB=brightgreen&prefix=v\n    :target: https://pytorch.org/text/\n\ntorchtext\n+++++++++\n\nCAUTION: As of September 2023 we have paused active development of TorchText because our focus has shifted away from building out this library offering.\nWe will continue to release new versions but do not anticipate any new feature development as we figure out future investments in this space.\n\nThis repository consists of:\n\n* `torchtext.datasets <https://github.com/pytorch/text/tree/main/torchtext/datasets>`_: The raw text iterators for common NLP datasets\n* `torchtext.data <https://github.com/pytorch/text/tree/main/torchtext/data>`_: Some basic NLP building blocks\n* `torchtext.transforms <https://github.com/pytorch/text/tree/main/torchtext/transforms.py>`_: Basic text-processing transformations\n* `torchtext.models <https://github.com/pytorch/text/tree/main/torchtext/models>`_: Pre-trained models\n* `torchtext.vocab <https://github.com/pytorch/text/tree/main/torchtext/vocab>`_: Vocab and Vectors related classes and factory functions\n* `examples <https://github.com/pytorch/text/tree/main/examples>`_: Example NLP workflows with PyTorch and torchtext library.\n\n\nInstallation\n============\n\nWe recommend Anaconda as a Python package management system. Please refer to `pytorch.org <https://pytorch.org/>`_ for the details of PyTorch installation. The following are the corresponding ``torchtext`` versions and supported Python versions.\n\n.. csv-table:: Version Compatibility\n   :header: \"PyTorch version\", \"torchtext version\", \"Supported Python version\"\n   :widths: 10, 10, 10\n\n   nightly build, main, \">=3.8, <=3.11\"\n   2.2.0, 0.17.0, \">=3.8, <=3.11\"\n   2.1.0, 0.16.0, \">=3.8, <=3.11\"\n   2.0.0, 0.15.0, \">=3.8, <=3.11\"\n   1.13.0, 0.14.0, \">=3.7, <=3.10\"\n   1.12.0, 0.13.0, \">=3.7, <=3.10\"\n   1.11.0, 0.12.0, \">=3.6, <=3.9\"\n   1.10.0, 0.11.0, \">=3.6, <=3.9\"\n   1.9.1, 0.10.1, \">=3.6, <=3.9\"\n   1.9, 0.10, \">=3.6, <=3.9\"\n   1.8.1, 0.9.1, \">=3.6, <=3.9\"\n   1.8, 0.9, \">=3.6, <=3.9\"\n   1.7.1, 0.8.1, \">=3.6, <=3.9\"\n   1.7, 0.8, \">=3.6, <=3.8\"\n   1.6, 0.7, \">=3.6, <=3.8\"\n   1.5, 0.6, \">=3.5, <=3.8\"\n   1.4, 0.5, \"2.7, >=3.5, <=3.8\"\n   0.4 and below, 0.2.3, \"2.7, >=3.5, <=3.8\"\n\nUsing conda::\n\n    conda install -c pytorch torchtext\n\nUsing pip::\n\n    pip install torchtext\n\nOptional requirements\n---------------------\n\nIf you want to use English tokenizer from `SpaCy <http://spacy.io/>`_, you need to install SpaCy and download its English model::\n\n    pip install spacy\n    python -m spacy download en_core_web_sm\n\nAlternatively, you might want to use the `Moses <http://www.statmt.org/moses/>`_ tokenizer port in `SacreMoses <https://github.com/alvations/sacremoses>`_ (split from `NLTK <http://nltk.org/>`_). You have to install SacreMoses::\n\n    pip install sacremoses\n\nFor torchtext 0.5 and below, ``sentencepiece``::\n\n    conda install -c powerai sentencepiece\n\nBuilding from source\n--------------------\n\nTo build torchtext from source, you need ``git``, ``CMake`` and C++11 compiler such as ``g++``.::\n\n    git clone https://github.com/pytorch/text torchtext\n    cd torchtext\n    git submodule update --init --recursive\n\n    # Linux\n    python setup.py clean install\n\n    # OSX\n    CC=clang CXX=clang++ python setup.py clean install\n\n    # or ``python setup.py develop`` if you are making modifications.\n\n**Note**\n\nWhen building from source, make sure that you have the same C++ compiler as the one used to build PyTorch. A simple way is to build PyTorch from source and use the same environment to build torchtext.\nIf you are using the nightly build of PyTorch, checkout the environment it was built with `conda (here) <https://github.com/pytorch/builder/tree/main/conda>`_ and `pip (here) <https://github.com/pytorch/builder/tree/main/manywheel>`_.\n\nAdditionally, datasets in torchtext are implemented using the torchdata library. Please take a look at the\n`installation instructions <https://github.com/pytorch/data#installation>`_ to download the latest nightlies or install from source.\n\nDocumentation\n=============\n\nFind the documentation `here <https://pytorch.org/text/>`_.\n\nDatasets\n========\n\nThe datasets module currently contains:\n\n* Language modeling: WikiText2, WikiText103, PennTreebank, EnWik9\n* Machine translation: IWSLT2016, IWSLT2017, Multi30k\n* Sequence tagging (e.g. POS/NER): UDPOS, CoNLL2000Chunking\n* Question answering: SQuAD1, SQuAD2\n* Text classification: SST2, AG_NEWS, SogouNews, DBpedia, YelpReviewPolarity, YelpReviewFull, YahooAnswers, AmazonReviewPolarity, AmazonReviewFull, IMDB\n* Model pre-training: CC-100\n\nModels\n======\n\nThe library currently consist of following pre-trained models:\n\n* RoBERTa: `Base and Large Architecture <https://github.com/pytorch/fairseq/tree/main/examples/roberta#pre-trained-models>`_\n* `DistilRoBERTa <https://github.com/huggingface/transformers/blob/main/examples/research_projects/distillation/README.md>`_\n* XLM-RoBERTa: `Base and Large Architure <https://github.com/pytorch/fairseq/tree/main/examples/xlmr#pre-trained-models>`_\n* T5: `Small, Base, Large, 3B, and 11B Architecture <https://github.com/google-research/text-to-text-transfer-transformer>`_\n* Flan-T5: `Base, Large, XL, and XXL Architecture <https://github.com/google-research/t5x>`_\n\nTokenizers\n==========\n\nThe transforms module currently support following scriptable tokenizers:\n\n* `SentencePiece <https://github.com/google/sentencepiece>`_\n* `GPT-2 BPE <https://github.com/openai/gpt-2/blob/master/src/encoder.py>`_\n* `CLIP <https://github.com/openai/CLIP/blob/main/clip/simple_tokenizer.py>`_\n* `RE2 <https://github.com/google/re2>`_\n* `BERT <https://arxiv.org/pdf/1810.04805.pdf>`_\n\nTutorials\n=========\n\nTo get started with torchtext, users may refer to the following tutorial available on PyTorch website.\n\n* `SST-2 binary text classification using XLM-R pre-trained model <https://pytorch.org/text/stable/tutorials/sst2_classification_non_distributed.html>`_\n* `Text classification with AG_NEWS dataset <https://pytorch.org/tutorials/beginner/text_sentiment_ngrams_tutorial.html>`_\n* `Translation trained with Multi30k dataset using transformers and torchtext <https://pytorch.org/tutorials/beginner/translation_transformer.html>`_\n* `Language modeling using transforms and torchtext <https://pytorch.org/tutorials/beginner/transformer_tutorial.html>`_\n\n\nDisclaimer on Datasets\n======================\n\nThis is a utility library that downloads and prepares public datasets. We do not host or distribute these datasets, vouch for their quality or fairness, or claim that you have license to use the dataset. It is your responsibility to determine whether you have permission to use the dataset under the dataset's license.\n\nIf you're a dataset owner and wish to update any part of it (description, citation, etc.), or do not want your dataset to be included in this library, please get in touch through a GitHub issue. Thanks for your contribution to the ML community!\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Text utilities, models, transforms, and datasets for PyTorch.",
    "version": "0.18.0",
    "project_urls": {
        "Homepage": "https://github.com/pytorch/text"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cc941e805ef3ec6541de75e8a86c32e00be471d98cdcef5035ad26457bc388cf",
                "md5": "c546b66425ac236ff6899b6d85ff2815",
                "sha256": "5826d5bbfe84a3c533e7e97659f72dbff73e1614c00c06709607d17c8446e09c"
            },
            "downloads": -1,
            "filename": "torchtext-0.18.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c546b66425ac236ff6899b6d85ff2815",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2137942,
            "upload_time": "2024-04-24T15:49:45",
            "upload_time_iso_8601": "2024-04-24T15:49:45.385465Z",
            "url": "https://files.pythonhosted.org/packages/cc/94/1e805ef3ec6541de75e8a86c32e00be471d98cdcef5035ad26457bc388cf/torchtext-0.18.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d74f9953b4d4b79917e03c393484ea8ce8f46a4cc1745f272cc371550fb7fc05",
                "md5": "86546fa30dac1f2da3e291960d3cc282",
                "sha256": "3dc446f74aaa9aebab045fbefd102752675258e72ba447982c65e010e1cfd29a"
            },
            "downloads": -1,
            "filename": "torchtext-0.18.0-cp310-cp310-manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "86546fa30dac1f2da3e291960d3cc282",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2021446,
            "upload_time": "2024-04-24T15:49:43",
            "upload_time_iso_8601": "2024-04-24T15:49:43.271928Z",
            "url": "https://files.pythonhosted.org/packages/d7/4f/9953b4d4b79917e03c393484ea8ce8f46a4cc1745f272cc371550fb7fc05/torchtext-0.18.0-cp310-cp310-manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b23d6f18d551b00bf8babaa3a569d5fd62cba2bd7bbdeaf82167a959352ba56b",
                "md5": "73e31e1008464a63c8bde02f23f49d58",
                "sha256": "d4bfe9cb7b08cf7ff3473309d9f24ed243c3a847bfbb2c932925551bf7a05892"
            },
            "downloads": -1,
            "filename": "torchtext-0.18.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "73e31e1008464a63c8bde02f23f49d58",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1949005,
            "upload_time": "2024-04-24T15:49:30",
            "upload_time_iso_8601": "2024-04-24T15:49:30.715567Z",
            "url": "https://files.pythonhosted.org/packages/b2/3d/6f18d551b00bf8babaa3a569d5fd62cba2bd7bbdeaf82167a959352ba56b/torchtext-0.18.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "612238bba8f6255f3e58b7f9d66cc988e044ee8cfb4edf0c57f4a7918e7c4aa6",
                "md5": "56e789c5824491b82aa3c53ee6e28f9c",
                "sha256": "0f3855b2ada84f02298e72ad19c1a86f940df2f4ce62d89098955f3ae575d174"
            },
            "downloads": -1,
            "filename": "torchtext-0.18.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "56e789c5824491b82aa3c53ee6e28f9c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2139004,
            "upload_time": "2024-04-24T15:49:37",
            "upload_time_iso_8601": "2024-04-24T15:49:37.052061Z",
            "url": "https://files.pythonhosted.org/packages/61/22/38bba8f6255f3e58b7f9d66cc988e044ee8cfb4edf0c57f4a7918e7c4aa6/torchtext-0.18.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "130a0d1e5426dbab2171551fe1b53e3ed80f42dbcadf7c28cc3676f0e311dc2f",
                "md5": "17c48f6e53275e8fe643fb38f5dd8297",
                "sha256": "7ac7a392ae42d8b7675bdb31f1764bec77d4dec3a44bca5a2644c2cee3484453"
            },
            "downloads": -1,
            "filename": "torchtext-0.18.0-cp311-cp311-manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "17c48f6e53275e8fe643fb38f5dd8297",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2021969,
            "upload_time": "2024-04-24T15:49:39",
            "upload_time_iso_8601": "2024-04-24T15:49:39.909912Z",
            "url": "https://files.pythonhosted.org/packages/13/0a/0d1e5426dbab2171551fe1b53e3ed80f42dbcadf7c28cc3676f0e311dc2f/torchtext-0.18.0-cp311-cp311-manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "04be03b76f21b87db03101e3dc8055b7e490c2f9cf26b01dabedc15aed15da61",
                "md5": "cfdaf8f3aa774d272532159d598e0acb",
                "sha256": "1e00475dbf629ba529d27903f2dd6b53c4a559f1483539b8c2a821d393bd24cf"
            },
            "downloads": -1,
            "filename": "torchtext-0.18.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cfdaf8f3aa774d272532159d598e0acb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1949281,
            "upload_time": "2024-04-24T15:49:34",
            "upload_time_iso_8601": "2024-04-24T15:49:34.051467Z",
            "url": "https://files.pythonhosted.org/packages/04/be/03b76f21b87db03101e3dc8055b7e490c2f9cf26b01dabedc15aed15da61/torchtext-0.18.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8b80c78f88844e576c21580e64bd93de9df9bca223fef3e8195345680eb6f87f",
                "md5": "73b6a5ef5c5c8377916c3d1aa8b40605",
                "sha256": "fec43696fb6fa7573e740a8175fd69681106574fd1fc840211182d941b88a2ba"
            },
            "downloads": -1,
            "filename": "torchtext-0.18.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "73b6a5ef5c5c8377916c3d1aa8b40605",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2138969,
            "upload_time": "2024-04-24T15:49:35",
            "upload_time_iso_8601": "2024-04-24T15:49:35.652207Z",
            "url": "https://files.pythonhosted.org/packages/8b/80/c78f88844e576c21580e64bd93de9df9bca223fef3e8195345680eb6f87f/torchtext-0.18.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "651326c37c5433658d3f1eb30be07a4b42b29893bc42ff7cb7261ef6e474fc3c",
                "md5": "8766a7d2600522fe9af7b5c825b4f5a2",
                "sha256": "eeebf2ec950c9f9d3b276faf6948e763836c215747354f0340746b32512d11f6"
            },
            "downloads": -1,
            "filename": "torchtext-0.18.0-cp312-cp312-manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8766a7d2600522fe9af7b5c825b4f5a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2021221,
            "upload_time": "2024-04-24T15:49:41",
            "upload_time_iso_8601": "2024-04-24T15:49:41.942159Z",
            "url": "https://files.pythonhosted.org/packages/65/13/26c37c5433658d3f1eb30be07a4b42b29893bc42ff7cb7261ef6e474fc3c/torchtext-0.18.0-cp312-cp312-manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fde3cbdeadc9f32ae807569c6e3f9e61e12e869c243405375bcdd2fb337b65a5",
                "md5": "4a44583f05a25aaf47c5ff620f3fb2dc",
                "sha256": "99b5148f77aa5d94adb8d4d5b684181d87673b90ba266d858b1dd8812b418b95"
            },
            "downloads": -1,
            "filename": "torchtext-0.18.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4a44583f05a25aaf47c5ff620f3fb2dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1950427,
            "upload_time": "2024-04-24T15:49:38",
            "upload_time_iso_8601": "2024-04-24T15:49:38.479585Z",
            "url": "https://files.pythonhosted.org/packages/fd/e3/cbdeadc9f32ae807569c6e3f9e61e12e869c243405375bcdd2fb337b65a5/torchtext-0.18.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "677a97421e05c4e6f6e03fbb41a68398c72ebecfdf53910dea91a4f0dcb8813d",
                "md5": "02a6d5ad90e72c00cc49bf3a6f5f3a4c",
                "sha256": "6694b823cb409706a0efe4d6b0ccf6b5be5af695fad29aa062f1f63bd296e77b"
            },
            "downloads": -1,
            "filename": "torchtext-0.18.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "02a6d5ad90e72c00cc49bf3a6f5f3a4c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2137966,
            "upload_time": "2024-04-24T15:49:32",
            "upload_time_iso_8601": "2024-04-24T15:49:32.519617Z",
            "url": "https://files.pythonhosted.org/packages/67/7a/97421e05c4e6f6e03fbb41a68398c72ebecfdf53910dea91a4f0dcb8813d/torchtext-0.18.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4d1fd5a981bdd81919dbc950c495d6b8670ed9e995e40c0927127e4a2a3e8fb2",
                "md5": "be846e10380f66c86691fbfa33529b06",
                "sha256": "0d60cde93217086372e6819806298a327aaa71f1818ff9c54380bbd5995dda78"
            },
            "downloads": -1,
            "filename": "torchtext-0.18.0-cp38-cp38-manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "be846e10380f66c86691fbfa33529b06",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2021560,
            "upload_time": "2024-04-24T15:49:21",
            "upload_time_iso_8601": "2024-04-24T15:49:21.519295Z",
            "url": "https://files.pythonhosted.org/packages/4d/1f/d5a981bdd81919dbc950c495d6b8670ed9e995e40c0927127e4a2a3e8fb2/torchtext-0.18.0-cp38-cp38-manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "079ce54dd5f1382f6328c2af5f0525f5132ab4d5933384da39e9569021c660a9",
                "md5": "916f49d4e0df180dde227fcd708664e1",
                "sha256": "6dd72c5fbca0680cfef14cb620f8edf7b01e4121916f4b45e2d50f1cdba53fe9"
            },
            "downloads": -1,
            "filename": "torchtext-0.18.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "916f49d4e0df180dde227fcd708664e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1950338,
            "upload_time": "2024-04-24T15:49:24",
            "upload_time_iso_8601": "2024-04-24T15:49:24.739008Z",
            "url": "https://files.pythonhosted.org/packages/07/9c/e54dd5f1382f6328c2af5f0525f5132ab4d5933384da39e9569021c660a9/torchtext-0.18.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "23f4fec80f6bd3ba2ef7e998929b1cb52e44e1d30067918c8976bbabc789838d",
                "md5": "527b34ed0b56b2b755d4232a1e8bf01c",
                "sha256": "b74b0b1e93ff852a0410bdf2b630f4b00a870ec95be6266e01cd5e19acdf3e95"
            },
            "downloads": -1,
            "filename": "torchtext-0.18.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "527b34ed0b56b2b755d4232a1e8bf01c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2138263,
            "upload_time": "2024-04-24T15:49:23",
            "upload_time_iso_8601": "2024-04-24T15:49:23.265904Z",
            "url": "https://files.pythonhosted.org/packages/23/f4/fec80f6bd3ba2ef7e998929b1cb52e44e1d30067918c8976bbabc789838d/torchtext-0.18.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1d181cc071c71049cc58460e417e6d0ca39b49f65db313218eb7d22a5305f181",
                "md5": "3de834b68d8a0ace2a91f8a467b67b90",
                "sha256": "8e8d847a5e359718c1a97cab363de93aef93733c102528231f3b36c9cf580ce2"
            },
            "downloads": -1,
            "filename": "torchtext-0.18.0-cp39-cp39-manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3de834b68d8a0ace2a91f8a467b67b90",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2021823,
            "upload_time": "2024-04-24T15:49:28",
            "upload_time_iso_8601": "2024-04-24T15:49:28.624144Z",
            "url": "https://files.pythonhosted.org/packages/1d/18/1cc071c71049cc58460e417e6d0ca39b49f65db313218eb7d22a5305f181/torchtext-0.18.0-cp39-cp39-manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "02b55c5f58b4b35296cb32b7b68ee9ca404487cceca7bd9fffd5d32cbfd5f67e",
                "md5": "dba652453b46e791fe273caa7f59c114",
                "sha256": "077639a367e1f77b2c7cefd952ec83c9f830a7568fb49f10cbc100eb965da06b"
            },
            "downloads": -1,
            "filename": "torchtext-0.18.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "dba652453b46e791fe273caa7f59c114",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1945721,
            "upload_time": "2024-04-24T15:49:26",
            "upload_time_iso_8601": "2024-04-24T15:49:26.648517Z",
            "url": "https://files.pythonhosted.org/packages/02/b5/5c5f58b4b35296cb32b7b68ee9ca404487cceca7bd9fffd5d32cbfd5f67e/torchtext-0.18.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-24 15:49:45",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pytorch",
    "github_project": "text",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "circle": true,
    "requirements": [
        {
            "name": "tqdm",
            "specs": []
        },
        {
            "name": "requests",
            "specs": []
        },
        {
            "name": "nltk",
            "specs": []
        },
        {
            "name": "spacy",
            "specs": []
        },
        {
            "name": "sacremoses",
            "specs": []
        },
        {
            "name": null,
            "specs": []
        },
        {
            "name": "Sphinx",
            "specs": []
        },
        {
            "name": "pytest",
            "specs": []
        },
        {
            "name": "expecttest",
            "specs": []
        },
        {
            "name": "parameterized",
            "specs": []
        },
        {
            "name": "pytest-pythonpath",
            "specs": []
        },
        {
            "name": "pytest-cov",
            "specs": []
        },
        {
            "name": "codecov",
            "specs": []
        },
        {
            "name": "defusedxml",
            "specs": []
        }
    ],
    "lcname": "torchtext"
}
        
Elapsed time: 0.24622s