tract


Nametract JSON
Version 0.21.4 PyPI version JSON
download
home_pageNone
SummaryPython bindings for tract, a neural network inference engine
upload_time2024-04-23 13:37:29
maintainerNone
docs_urlNone
authorMathieu Poumeyrol, Sonos, and tract contributors
requires_python>=3.7
licenseApache License, Version 2.0 OR MIT
keywords onnx tensorflow nnef runtime neural network
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            # `tract` python bindings

`tract` is a library for neural network inference. While PyTorch and TensorFlow
deal with the much harder training problem, `tract` focuses on what happens once
the model in trained.

`tract` ultimate goal is to use the model on end-user data (aka "running the
model") as efficiently as possible, in a variety of possible deployments,
including some which are no completely mainstream : a lot of energy have been
invested in making `tract` an efficient engine to run models on ARM single board
computers.

## Getting started

### Install tract library

`pip install tract`. Prebuilt wheels are provided for x86-64 Linux and
Windows, x86-64 and arm64 for MacOS.

### Downloading the model

First we need to obtain the model. We will download an ONNX-converted MobileNET
2.7 from the ONNX model zoo.

`wget https://github.com/onnx/models/raw/main/vision/classification/mobilenet/model/mobilenetv2-7.onnx`.

### Preprocessing an image

Then we need a sample image. You can use pretty much anything. If you lack
inspiration, you can this picture of Grace Hopper.

`wget https://s3.amazonaws.com/tract-ci-builds/tests/grace_hopper.jpg`

We will be needing `pillow` to load the image and crop it.

`pip install pillow`

Now let's start our python script. We will want to use tract, obviously, but we
will also need PIL's Image and numpy to put the data in the form MobileNet expects it.

```python
#!/usr/bin/env python

import tract
import numpy
from PIL import Image
```

We want to load the image, crop it into its central square, then scale this
square to be 224x224.

```python
im = Image.open("grace_hopper.jpg")
if im.height > im.width:
    top_crop = int((im.height - im.width) / 2)
    im = im.crop((0, top_crop, im.width, top_crop + im.width))
else:
    left_crop = int((im.width - im.height) / 2)
    im = im.crop((left_crop, 0, left_crop + im_height, im.height))
im = im.resize((224, 224))
im = numpy.array(im)
```

At this stage, we obtain a 224x224x3 tensor of 8-bit positive integers. We need to transform
these integers to floats and normalize them for MobileNet.
At some point during this normalization, numpy decides to promote our tensor to
double precision, but our model is single precison, so we are converting it
again after the normalization.

```python
im = (im.astype(float) / 255. - [0.485, 0.456, 0.406]) / [0.229, 0.224, 0.225]
im = im.astype(numpy.single)
```

Finally, ONNX variant of Mobilenet expects its input in NCHW convention, and
our data is in HWC. We need to move the C axis before H and W, then insert the
N at the left.

```python
im = numpy.moveaxis(im, 2, 0)
im = numpy.expand_dims(im, 0)
```

### Loading the model

Loading a model is relatively simple. We need to instantiate the ONNX loader
first, the we use it to load the model. Then we ask tract to optimize the model
and get it ready to run.

```python
model = tract.onnx().model_for_path("./mobilenetv2-7.onnx").into_optimized().into_runnable()
```

If we wanted to process several images, this would only have to be done once
out of our image loop.

### Running the model

tract run methods take a list of inputs and returns a list of outputs. Each input
can be a numpy array. The outputs are tract's own Value data type, which should 
be converted to numpy array.

```python
outputs = model.run([im])
output = outputs[0].to_numpy()
```

### Interpreting the result

If we print the output, what we get is a array of 1000 values. Each value is
the score of our image on one of the 1000 categoris of ImageNet. What we want
is to find the category with the highest score.

```python
print(numpy.argmax(output))
```

If all goes according to plan, this should output the number 652. There is a copy
of ImageNet categories at the following URL, with helpful line numbering.

```
https://github.com/sonos/tract/blob/main/examples/nnef-mobilenet-v2/imagenet_slim_labels.txt
```

And... 652 is "microphone". Which is wrong. The trick is, the lines are
numbered from 1, while our results starts at 0, plus the label list includes a
"dummy" label first that should be ignored. So the right value is at the line
654: "military uniform". If you looked at the picture before you noticed that
Grace Hopper is in uniform on the picture, so it does make sense.

## Model cooking with `tract`

Over the years of `tract` development, it became clear that beside "training"
and "running", there was a third time in the life-cycle of a model. One of
our contributors nicknamed it "model cooking" and the term stuck. This extra stage
is about all what happens after the training and before running.

If training and Runtime are relatively easy to define, the model cooking gets a
bit less obvious. It comes from the realisation that the training form (an ONNX
or TensorFlow file or ste of files) of a model may is usually not the most
convenient form for running it. Every time a device loads a model in ONNX form
and transform it into a suitable form for runtime, it goes through the same
series or more or less complicated operations, that can amount to several
seconds of high-CPU usage for current models. When running the model on a
device, this can have several negative impact on experience: the device will
take time to start-up, consume a lot of battery energy to get ready, maybe fight
over CPU availability with other processes trying to get ready at the same
instant on the device.

As this sequence of operations is generally the same, it becomes relevant to
persist the model resulting of the transformation. It could be persisted at the
first application start-up for instance. But it could also be "prepared", or
"cooked" before distribution to the devices.

## Cooking to NNEF

`tract` supports NNEF. It can read a NNEF neural network and run it. But it can
also dump its preferred representation of a model in NNEF.

At this stage, a possible path to production for a neural model becomes can be drawn:
* model is trained, typically on big servers on the cloud, and exported to ONNX.
* model is cooked, simplified, using `tract` command line or python bindings.
* model is shipped to devices or servers in charge of running it.

## Testing and benching models early

As soon as the model is in ONNX form, `tract` can load and run it. It gives
opportunities to validate and test on the training system, asserting early on that
`tract` will compute at runtime the same result than what the training model
predicts, limiting the risk of late-minute surprise.

But tract command line can also be used to bench and profile an ONNX model on
the target system answering very early the "will the device be fast enough"
question. The nature of neural network is such that in many cases an
untrained model, or a poorly trained one will perform the same computations than
the final model, so it may be possible to bench the model for on-device
efficiency before going through a costly and long model training.

## tract-opl

NNEF is a pretty little standard. But we needed to go beyond it and we extended
it in several ways. For instance, NNEF does not provide syntax for recurring
neural network (LSTM and friends), which are an absolute must in signal and voice
processing. `tract` also supports symbolic dimensions, which are useful to
represent a late bound batch dimension (if you don't know in advance how many
inputs will have to be computed concurrently).

## Pulsing

For interactive applications where time plays a role (voice, signal, ...),
`tract` can automatically transform batch models, to equivalent streaming models
suitable for runtime. While batch models are presented at training time the
whole signal in one go, a streaming model received the signal by "pulse" and
produces step by step the same output that the batching model.

It does not work for every model, `tract` can obviously not generate a model
where the output at a time depends on input not received yet. Of course, models
have to be *causal* to be pulsable. For instance, a bi-directional LSTM is not
pulsable. Most convolution nets can be made causal at designe time by padding,
or at cooking time by adding fixed delays.

This cooking step is a recurring annoyance in the real-time voice and signal
field : it can be done manually, but is very easy to get wrong. `tract` makes
it automactic.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "tract",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "onnx tensorflow nnef runtime neural network",
    "author": "Mathieu Poumeyrol, Sonos, and tract contributors",
    "author_email": "mathieu@poumeyrol.fr",
    "download_url": "https://files.pythonhosted.org/packages/76/13/b8e75855001d27c08eabacdb69d1c92ae80d989efd8b2773ce3f0852d805/tract-0.21.4.tar.gz",
    "platform": null,
    "description": "# `tract` python bindings\n\n`tract` is a library for neural network inference. While PyTorch and TensorFlow\ndeal with the much harder training problem, `tract` focuses on what happens once\nthe model in trained.\n\n`tract` ultimate goal is to use the model on end-user data (aka \"running the\nmodel\") as efficiently as possible, in a variety of possible deployments,\nincluding some which are no completely mainstream : a lot of energy have been\ninvested in making `tract` an efficient engine to run models on ARM single board\ncomputers.\n\n## Getting started\n\n### Install tract library\n\n`pip install tract`. Prebuilt wheels are provided for x86-64 Linux and\nWindows, x86-64 and arm64 for MacOS.\n\n### Downloading the model\n\nFirst we need to obtain the model. We will download an ONNX-converted MobileNET\n2.7 from the ONNX model zoo.\n\n`wget https://github.com/onnx/models/raw/main/vision/classification/mobilenet/model/mobilenetv2-7.onnx`.\n\n### Preprocessing an image\n\nThen we need a sample image. You can use pretty much anything. If you lack\ninspiration, you can this picture of Grace Hopper.\n\n`wget https://s3.amazonaws.com/tract-ci-builds/tests/grace_hopper.jpg`\n\nWe will be needing `pillow` to load the image and crop it.\n\n`pip install pillow`\n\nNow let's start our python script. We will want to use tract, obviously, but we\nwill also need PIL's Image and numpy to put the data in the form MobileNet expects it.\n\n```python\n#!/usr/bin/env python\n\nimport tract\nimport numpy\nfrom PIL import Image\n```\n\nWe want to load the image, crop it into its central square, then scale this\nsquare to be 224x224.\n\n```python\nim = Image.open(\"grace_hopper.jpg\")\nif im.height > im.width:\n    top_crop = int((im.height - im.width) / 2)\n    im = im.crop((0, top_crop, im.width, top_crop + im.width))\nelse:\n    left_crop = int((im.width - im.height) / 2)\n    im = im.crop((left_crop, 0, left_crop + im_height, im.height))\nim = im.resize((224, 224))\nim = numpy.array(im)\n```\n\nAt this stage, we obtain a 224x224x3 tensor of 8-bit positive integers. We need to transform\nthese integers to floats and normalize them for MobileNet.\nAt some point during this normalization, numpy decides to promote our tensor to\ndouble precision, but our model is single precison, so we are converting it\nagain after the normalization.\n\n```python\nim = (im.astype(float) / 255. - [0.485, 0.456, 0.406]) / [0.229, 0.224, 0.225]\nim = im.astype(numpy.single)\n```\n\nFinally, ONNX variant of Mobilenet expects its input in NCHW convention, and\nour data is in HWC. We need to move the C axis before H and W, then insert the\nN at the left.\n\n```python\nim = numpy.moveaxis(im, 2, 0)\nim = numpy.expand_dims(im, 0)\n```\n\n### Loading the model\n\nLoading a model is relatively simple. We need to instantiate the ONNX loader\nfirst, the we use it to load the model. Then we ask tract to optimize the model\nand get it ready to run.\n\n```python\nmodel = tract.onnx().model_for_path(\"./mobilenetv2-7.onnx\").into_optimized().into_runnable()\n```\n\nIf we wanted to process several images, this would only have to be done once\nout of our image loop.\n\n### Running the model\n\ntract run methods take a list of inputs and returns a list of outputs. Each input\ncan be a numpy array. The outputs are tract's own Value data type, which should \nbe converted to numpy array.\n\n```python\noutputs = model.run([im])\noutput = outputs[0].to_numpy()\n```\n\n### Interpreting the result\n\nIf we print the output, what we get is a array of 1000 values. Each value is\nthe score of our image on one of the 1000 categoris of ImageNet. What we want\nis to find the category with the highest score.\n\n```python\nprint(numpy.argmax(output))\n```\n\nIf all goes according to plan, this should output the number 652. There is a copy\nof ImageNet categories at the following URL, with helpful line numbering.\n\n```\nhttps://github.com/sonos/tract/blob/main/examples/nnef-mobilenet-v2/imagenet_slim_labels.txt\n```\n\nAnd... 652 is \"microphone\". Which is wrong. The trick is, the lines are\nnumbered from 1, while our results starts at 0, plus the label list includes a\n\"dummy\" label first that should be ignored. So the right value is at the line\n654: \"military uniform\". If you looked at the picture before you noticed that\nGrace Hopper is in uniform on the picture, so it does make sense.\n\n## Model cooking with `tract`\n\nOver the years of `tract` development, it became clear that beside \"training\"\nand \"running\", there was a third time in the life-cycle of a model. One of\nour contributors nicknamed it \"model cooking\" and the term stuck. This extra stage\nis about all what happens after the training and before running.\n\nIf training and Runtime are relatively easy to define, the model cooking gets a\nbit less obvious. It comes from the realisation that the training form (an ONNX\nor TensorFlow file or ste of files) of a model may is usually not the most\nconvenient form for running it. Every time a device loads a model in ONNX form\nand transform it into a suitable form for runtime, it goes through the same\nseries or more or less complicated operations, that can amount to several\nseconds of high-CPU usage for current models. When running the model on a\ndevice, this can have several negative impact on experience: the device will\ntake time to start-up, consume a lot of battery energy to get ready, maybe fight\nover CPU availability with other processes trying to get ready at the same\ninstant on the device.\n\nAs this sequence of operations is generally the same, it becomes relevant to\npersist the model resulting of the transformation. It could be persisted at the\nfirst application start-up for instance. But it could also be \"prepared\", or\n\"cooked\" before distribution to the devices.\n\n## Cooking to NNEF\n\n`tract` supports NNEF. It can read a NNEF neural network and run it. But it can\nalso dump its preferred representation of a model in NNEF.\n\nAt this stage, a possible path to production for a neural model becomes can be drawn:\n* model is trained, typically on big servers on the cloud, and exported to ONNX.\n* model is cooked, simplified, using `tract` command line or python bindings.\n* model is shipped to devices or servers in charge of running it.\n\n## Testing and benching models early\n\nAs soon as the model is in ONNX form, `tract` can load and run it. It gives\nopportunities to validate and test on the training system, asserting early on that\n`tract` will compute at runtime the same result than what the training model\npredicts, limiting the risk of late-minute surprise.\n\nBut tract command line can also be used to bench and profile an ONNX model on\nthe target system answering very early the \"will the device be fast enough\"\nquestion. The nature of neural network is such that in many cases an\nuntrained model, or a poorly trained one will perform the same computations than\nthe final model, so it may be possible to bench the model for on-device\nefficiency before going through a costly and long model training.\n\n## tract-opl\n\nNNEF is a pretty little standard. But we needed to go beyond it and we extended\nit in several ways. For instance, NNEF does not provide syntax for recurring\nneural network (LSTM and friends), which are an absolute must in signal and voice\nprocessing. `tract` also supports symbolic dimensions, which are useful to\nrepresent a late bound batch dimension (if you don't know in advance how many\ninputs will have to be computed concurrently).\n\n## Pulsing\n\nFor interactive applications where time plays a role (voice, signal, ...),\n`tract` can automatically transform batch models, to equivalent streaming models\nsuitable for runtime. While batch models are presented at training time the\nwhole signal in one go, a streaming model received the signal by \"pulse\" and\nproduces step by step the same output that the batching model.\n\nIt does not work for every model, `tract` can obviously not generate a model\nwhere the output at a time depends on input not received yet. Of course, models\nhave to be *causal* to be pulsable. For instance, a bi-directional LSTM is not\npulsable. Most convolution nets can be made causal at designe time by padding,\nor at cooking time by adding fixed delays.\n\nThis cooking step is a recurring annoyance in the real-time voice and signal\nfield : it can be done manually, but is very easy to get wrong. `tract` makes\nit automactic.\n",
    "bugtrack_url": null,
    "license": "Apache License, Version 2.0 OR MIT",
    "summary": "Python bindings for tract, a neural network inference engine",
    "version": "0.21.4",
    "project_urls": {
        "Documentation": "https://sonos.github.io/tract",
        "Source": "https://github.com/sonos/tract"
    },
    "split_keywords": [
        "onnx",
        "tensorflow",
        "nnef",
        "runtime",
        "neural",
        "network"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0d4dcd79282674bf58c92499b2237770c112fcba1a6eb1983af2014650396a2e",
                "md5": "0c608df9193c2271959c3be050f93e00",
                "sha256": "a166e1025293db8cc08e77fc6e8a91a89a83b8d0c0709c7596c948bc4d8ca462"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "0c608df9193c2271959c3be050f93e00",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 13502069,
            "upload_time": "2024-04-23T13:35:43",
            "upload_time_iso_8601": "2024-04-23T13:35:43.481107Z",
            "url": "https://files.pythonhosted.org/packages/0d/4d/cd79282674bf58c92499b2237770c112fcba1a6eb1983af2014650396a2e/tract-0.21.4-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1ac82e32ba8b456e4f37d0f567397e080b69e6036f39acb4d8b2caaaab7dfedf",
                "md5": "f9ef3d3ee2dbc2e4dbbba3226caea628",
                "sha256": "4ae51db2e4dbc8e1e94c0b79b66a68ac7a7a02750fe72cfd5b9534d864ce478d"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f9ef3d3ee2dbc2e4dbbba3226caea628",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 7178543,
            "upload_time": "2024-04-23T13:35:47",
            "upload_time_iso_8601": "2024-04-23T13:35:47.046677Z",
            "url": "https://files.pythonhosted.org/packages/1a/c8/2e32ba8b456e4f37d0f567397e080b69e6036f39acb4d8b2caaaab7dfedf/tract-0.21.4-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7483f03e55f9d52bcec0348b01c30e50d86b765ecc585431554fd435184eb34a",
                "md5": "15bb29e44ed6cace37a4f7079c86f60a",
                "sha256": "abaa6ae8b9e363ef30e3264cd77fe4907504f1e397c5d846b8997099ffe7ef7a"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "15bb29e44ed6cace37a4f7079c86f60a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 6342335,
            "upload_time": "2024-04-23T13:35:49",
            "upload_time_iso_8601": "2024-04-23T13:35:49.215012Z",
            "url": "https://files.pythonhosted.org/packages/74/83/f03e55f9d52bcec0348b01c30e50d86b765ecc585431554fd435184eb34a/tract-0.21.4-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ca524ea18dd576bfef73e692f6c512eca887f1718aea3851e8fc77e379f7f97a",
                "md5": "d7c841ec9e31e5aba08a3d29a4c5b75c",
                "sha256": "66d5bdb79f86e676729536816072ff7892903201f754b1eae96b0149894ad2bb"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d7c841ec9e31e5aba08a3d29a4c5b75c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 7108936,
            "upload_time": "2024-04-23T13:35:51",
            "upload_time_iso_8601": "2024-04-23T13:35:51.924846Z",
            "url": "https://files.pythonhosted.org/packages/ca/52/4ea18dd576bfef73e692f6c512eca887f1718aea3851e8fc77e379f7f97a/tract-0.21.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b1fe83dd78f9238894983effc3648c2105e0553601a2e6d483c70ddcee4839ac",
                "md5": "c3064f2b1be230144cf32fe59feac8d7",
                "sha256": "9bf0b5948f77f88b929685bb6c4aebe6de9a920dae3e5f11cee4302684751d9b"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c3064f2b1be230144cf32fe59feac8d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 6661309,
            "upload_time": "2024-04-23T13:35:53",
            "upload_time_iso_8601": "2024-04-23T13:35:53.999654Z",
            "url": "https://files.pythonhosted.org/packages/b1/fe/83dd78f9238894983effc3648c2105e0553601a2e6d483c70ddcee4839ac/tract-0.21.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fdac18420e265b3e084f8c4255110c4cc249e62a1b822d8af54536477cb58214",
                "md5": "af7714fe4fc0f299852c7b09465a3631",
                "sha256": "5a59c623b215d5bf9aadd6a8d5a967186c1adf49165f43a09060849ec982862f"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "af7714fe4fc0f299852c7b09465a3631",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 7152143,
            "upload_time": "2024-04-23T13:35:56",
            "upload_time_iso_8601": "2024-04-23T13:35:56.598694Z",
            "url": "https://files.pythonhosted.org/packages/fd/ac/18420e265b3e084f8c4255110c4cc249e62a1b822d8af54536477cb58214/tract-0.21.4-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7ba3eb38534c5bda76e95826df0fb3802b0caae22025bbcab7a1324fe81ae6ee",
                "md5": "74a7d1b3a2da3a619783e1c1bef8dc73",
                "sha256": "2ee124659b44864d402f730cdabaf14eebb6976f905bde261b6cd640dc39311b"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "74a7d1b3a2da3a619783e1c1bef8dc73",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 6854541,
            "upload_time": "2024-04-23T13:35:59",
            "upload_time_iso_8601": "2024-04-23T13:35:59.375311Z",
            "url": "https://files.pythonhosted.org/packages/7b/a3/eb38534c5bda76e95826df0fb3802b0caae22025bbcab7a1324fe81ae6ee/tract-0.21.4-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fc5a69e14f1141041a8e398274dd1a7aae9272ce64abf5c86248a57fd98c622a",
                "md5": "31c8ab9e15954568ed1d18de072e1676",
                "sha256": "09b72e12d27d2680b3e92a4ec59462bfb1004621de25c1a9c10a45e2e5654f5d"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "31c8ab9e15954568ed1d18de072e1676",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 13502070,
            "upload_time": "2024-04-23T13:36:01",
            "upload_time_iso_8601": "2024-04-23T13:36:01.426124Z",
            "url": "https://files.pythonhosted.org/packages/fc/5a/69e14f1141041a8e398274dd1a7aae9272ce64abf5c86248a57fd98c622a/tract-0.21.4-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "beaff58074a89bfa852efea4ab3dce23b9bea4a365592cd9b4a5d1e87d1cc1a4",
                "md5": "173d428f7bdffeea48a2ccf111d55ee9",
                "sha256": "48719c270955755650751dce5bfcea580964bf9e1d2d8fe8b9bcf241bcb1feb8"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "173d428f7bdffeea48a2ccf111d55ee9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 7178544,
            "upload_time": "2024-04-23T13:36:03",
            "upload_time_iso_8601": "2024-04-23T13:36:03.938882Z",
            "url": "https://files.pythonhosted.org/packages/be/af/f58074a89bfa852efea4ab3dce23b9bea4a365592cd9b4a5d1e87d1cc1a4/tract-0.21.4-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cb54a8fd77fab2889df612ddfc6965b8d67e644924e339d29d23fe2c2298f85c",
                "md5": "f78c0bd55dfd4560b8ed78095ad160c3",
                "sha256": "bc3910fd465987630e1d6dddc8aba954a8bf2b79fe7ad2f2fb39f33347b281ea"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f78c0bd55dfd4560b8ed78095ad160c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 6342336,
            "upload_time": "2024-04-23T13:36:06",
            "upload_time_iso_8601": "2024-04-23T13:36:06.851820Z",
            "url": "https://files.pythonhosted.org/packages/cb/54/a8fd77fab2889df612ddfc6965b8d67e644924e339d29d23fe2c2298f85c/tract-0.21.4-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a4cc060829cd66d51c10d6236487327dfa658aee7e5ab1b447fe011957b2e93",
                "md5": "305975c723447373b260f974331cc558",
                "sha256": "d9fa067c8d82f2fe29d2acd03233ca9ca9c5dae26ae1e4be7f3ddaec1e1a8888"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "305975c723447373b260f974331cc558",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 7108937,
            "upload_time": "2024-04-23T13:36:10",
            "upload_time_iso_8601": "2024-04-23T13:36:10.169937Z",
            "url": "https://files.pythonhosted.org/packages/6a/4c/c060829cd66d51c10d6236487327dfa658aee7e5ab1b447fe011957b2e93/tract-0.21.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "13ebf52704f3f1c6912b5ca477c566868bed8d6092f808e3d3141396fcb7c6ca",
                "md5": "ce9e4c0f1ce494ef1de8ca8893c6f981",
                "sha256": "24b7b3053455b974a131eabdbaa65fd1fb986b76019e5b8a3ad5f01b2c92bbe4"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ce9e4c0f1ce494ef1de8ca8893c6f981",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 6661308,
            "upload_time": "2024-04-23T13:36:12",
            "upload_time_iso_8601": "2024-04-23T13:36:12.591480Z",
            "url": "https://files.pythonhosted.org/packages/13/eb/f52704f3f1c6912b5ca477c566868bed8d6092f808e3d3141396fcb7c6ca/tract-0.21.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cb8acd74068e737259fab7c82ee6cb001a1a2f51d2f58942ccaefebbe015f3f2",
                "md5": "c47385d74d23e662168383474a562502",
                "sha256": "b56904e7d854a562a582b8656da85b92469423961f3b80b835a5e1d3a8e9abb0"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c47385d74d23e662168383474a562502",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 7152144,
            "upload_time": "2024-04-23T13:36:14",
            "upload_time_iso_8601": "2024-04-23T13:36:14.692066Z",
            "url": "https://files.pythonhosted.org/packages/cb/8a/cd74068e737259fab7c82ee6cb001a1a2f51d2f58942ccaefebbe015f3f2/tract-0.21.4-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a20882cd0a5602532f00f37f91e37e810ed18a317709e27819b71782478d110d",
                "md5": "92d0591d0901af6a58479e6f190c14cc",
                "sha256": "4a9cb4e827a5e9da35fcb0d3e45d294c36ed56773b5a3109e2cb9ecad84c3478"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "92d0591d0901af6a58479e6f190c14cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 6854540,
            "upload_time": "2024-04-23T13:36:17",
            "upload_time_iso_8601": "2024-04-23T13:36:17.279817Z",
            "url": "https://files.pythonhosted.org/packages/a2/08/82cd0a5602532f00f37f91e37e810ed18a317709e27819b71782478d110d/tract-0.21.4-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5165b93398aeb0c214672b5cff7be73bfb0e5c8e94a24361412a67f5206c07fb",
                "md5": "898aecdf58bc176ff7547e564d3855ee",
                "sha256": "8c631d3cfd97ef3fc5bbcf523492bd22adcee2bc7dadcbd8c97380921886a4bc"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "898aecdf58bc176ff7547e564d3855ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 6642649,
            "upload_time": "2024-04-23T13:36:19",
            "upload_time_iso_8601": "2024-04-23T13:36:19.445739Z",
            "url": "https://files.pythonhosted.org/packages/51/65/b93398aeb0c214672b5cff7be73bfb0e5c8e94a24361412a67f5206c07fb/tract-0.21.4-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "985aa0e878e2ae324350687ff67473e445f0a552accbf19537aedab9ebec1808",
                "md5": "ea4c0cdb7d8570620852a2c96a02ed1b",
                "sha256": "9cfaf829616941bee436f714054722b4c0490e2ed583b31b09b20661711bcf5b"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ea4c0cdb7d8570620852a2c96a02ed1b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 7108938,
            "upload_time": "2024-04-23T13:36:21",
            "upload_time_iso_8601": "2024-04-23T13:36:21.732961Z",
            "url": "https://files.pythonhosted.org/packages/98/5a/a0e878e2ae324350687ff67473e445f0a552accbf19537aedab9ebec1808/tract-0.21.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "94b672b1622ac01e7f4c4380fe3180b847fe00bb5ef3f2bdf050cdb36a768657",
                "md5": "55edd3cd4c009a5f9c649826e37ac612",
                "sha256": "17aa0bbfdf9a5594e61921818079d447472aa1e910bd1205ff2f74278649a196"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "55edd3cd4c009a5f9c649826e37ac612",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 6661310,
            "upload_time": "2024-04-23T13:36:23",
            "upload_time_iso_8601": "2024-04-23T13:36:23.786342Z",
            "url": "https://files.pythonhosted.org/packages/94/b6/72b1622ac01e7f4c4380fe3180b847fe00bb5ef3f2bdf050cdb36a768657/tract-0.21.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3c96381eb05bf09184abefb9e20b899f53177d7013f433a0c1b44a651ce15626",
                "md5": "39f84b1a5b97b73c89fb521a3939e4ac",
                "sha256": "702fff31fed05726d3884c3e64e33751e5748f844468f28d8c7920cb694cf28d"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "39f84b1a5b97b73c89fb521a3939e4ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 7152143,
            "upload_time": "2024-04-23T13:36:25",
            "upload_time_iso_8601": "2024-04-23T13:36:25.627952Z",
            "url": "https://files.pythonhosted.org/packages/3c/96/381eb05bf09184abefb9e20b899f53177d7013f433a0c1b44a651ce15626/tract-0.21.4-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f57f634992df3741c334adbe8986af334f180ae04d5d1128ff802647db5cce85",
                "md5": "6caf5046c36e15325477aea2a928c0d3",
                "sha256": "78f196e320113bb741c11b0c4602380402399b68542fb0383cc8123cc57c4afb"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "6caf5046c36e15325477aea2a928c0d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 13502068,
            "upload_time": "2024-04-23T13:36:28",
            "upload_time_iso_8601": "2024-04-23T13:36:28.820386Z",
            "url": "https://files.pythonhosted.org/packages/f5/7f/634992df3741c334adbe8986af334f180ae04d5d1128ff802647db5cce85/tract-0.21.4-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "de7b5b5a9a056aba0e25242ef0d01ea82428595c434a636cd1bca49727d677d9",
                "md5": "9d698454d4d30f6043028126f65da76b",
                "sha256": "db847de126f93ad3690491c93f022025153661b0cc332200c741b42745fee1a0"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9d698454d4d30f6043028126f65da76b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 7178539,
            "upload_time": "2024-04-23T13:36:31",
            "upload_time_iso_8601": "2024-04-23T13:36:31.847359Z",
            "url": "https://files.pythonhosted.org/packages/de/7b/5b5a9a056aba0e25242ef0d01ea82428595c434a636cd1bca49727d677d9/tract-0.21.4-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ed4f3f665e17a51ec8cc599fc9f376c465f287b758709794ebe1ccbe041f69d3",
                "md5": "23b3b62082261f3d14b21a5d9c80600a",
                "sha256": "5fb535eb4fb3baff946fdae3f7b471bbdb3c0af63ef94c67cba8ed355988dc30"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "23b3b62082261f3d14b21a5d9c80600a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 6342328,
            "upload_time": "2024-04-23T13:36:34",
            "upload_time_iso_8601": "2024-04-23T13:36:34.019381Z",
            "url": "https://files.pythonhosted.org/packages/ed/4f/3f665e17a51ec8cc599fc9f376c465f287b758709794ebe1ccbe041f69d3/tract-0.21.4-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fd18505f63cedbc5776171894c311bee8af433f11334b67b3025f002e1527dc2",
                "md5": "eca3ffd962d99badeae9a27e5757dbee",
                "sha256": "db2e32cd8445ae09a0f82135cddca6eedd903bde6eaa1e0ed7a7ed5d3d7f8217"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eca3ffd962d99badeae9a27e5757dbee",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 7108933,
            "upload_time": "2024-04-23T13:36:35",
            "upload_time_iso_8601": "2024-04-23T13:36:35.971149Z",
            "url": "https://files.pythonhosted.org/packages/fd/18/505f63cedbc5776171894c311bee8af433f11334b67b3025f002e1527dc2/tract-0.21.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d788e708cf48aafe122a2fd6b9cdbd4c7faccbf86fa5913c007726189de62b93",
                "md5": "ec2ce4cbb1e15f5d6637089b1a148974",
                "sha256": "cde768aa52be4cb15c5bb36a2b61a94b66c287d69df82c975e0b4c1e7b0612e0"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ec2ce4cbb1e15f5d6637089b1a148974",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 6661305,
            "upload_time": "2024-04-23T13:36:37",
            "upload_time_iso_8601": "2024-04-23T13:36:37.875989Z",
            "url": "https://files.pythonhosted.org/packages/d7/88/e708cf48aafe122a2fd6b9cdbd4c7faccbf86fa5913c007726189de62b93/tract-0.21.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ae8024c8bfe80a04680b90b69548c0e7719d9a4e5492c8666cb22c9c642d041b",
                "md5": "cc9fef7f0ea5e62073c34905b063f1e5",
                "sha256": "cd5b488f05cd92c112a9aae70d1601b1ceb4e600066bc1c6777229ab09e65d8f"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cc9fef7f0ea5e62073c34905b063f1e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 7152137,
            "upload_time": "2024-04-23T13:36:40",
            "upload_time_iso_8601": "2024-04-23T13:36:40.052266Z",
            "url": "https://files.pythonhosted.org/packages/ae/80/24c8bfe80a04680b90b69548c0e7719d9a4e5492c8666cb22c9c642d041b/tract-0.21.4-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d8af7272b83fbe505997e8964f4e8332cd6a9ea920d7c33a53c1aebb34a56ab3",
                "md5": "de14055ee7d3a41c7dd1523a8ae4880b",
                "sha256": "db44cfa07ffdddfdae1e75e324eea712c81ad1887895425a0b2cc60284b1cf99"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "de14055ee7d3a41c7dd1523a8ae4880b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 6854537,
            "upload_time": "2024-04-23T13:36:42",
            "upload_time_iso_8601": "2024-04-23T13:36:42.819776Z",
            "url": "https://files.pythonhosted.org/packages/d8/af/7272b83fbe505997e8964f4e8332cd6a9ea920d7c33a53c1aebb34a56ab3/tract-0.21.4-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ce3270b3bdbeaf51b929805bbed8cdee99ee7e0d470208084491417e5f425b7c",
                "md5": "f74f78a63c059789763267d61143fc51",
                "sha256": "3e8dbef18cf2e656a920b2536088d5546768f58a1bc050e0446475b4eae22301"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "f74f78a63c059789763267d61143fc51",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 13502063,
            "upload_time": "2024-04-23T13:36:45",
            "upload_time_iso_8601": "2024-04-23T13:36:45.815285Z",
            "url": "https://files.pythonhosted.org/packages/ce/32/70b3bdbeaf51b929805bbed8cdee99ee7e0d470208084491417e5f425b7c/tract-0.21.4-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6041b5610603d6e104130a75f8a74344f575a0e19aa46422ca46f97c440e3368",
                "md5": "3792d475d80cf02c3e0c1ba03ca4d0b2",
                "sha256": "dac37fc62c3ad3d35bc0899a8bae5d5c1f9dca0c84c1bd5e3ecff5abc3c67728"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3792d475d80cf02c3e0c1ba03ca4d0b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 7178540,
            "upload_time": "2024-04-23T13:36:48",
            "upload_time_iso_8601": "2024-04-23T13:36:48.355097Z",
            "url": "https://files.pythonhosted.org/packages/60/41/b5610603d6e104130a75f8a74344f575a0e19aa46422ca46f97c440e3368/tract-0.21.4-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ad73da4356c3ee1da7aad27b27e1909b8681d905c69c8619419545195e8ac645",
                "md5": "6e77cbe5a18ac055ecfbcc38dfcaa3f1",
                "sha256": "020fbc90595ba9fbbc062962d7cb62dafb80151de99f45abfa462861a657717a"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6e77cbe5a18ac055ecfbcc38dfcaa3f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 6342328,
            "upload_time": "2024-04-23T13:36:50",
            "upload_time_iso_8601": "2024-04-23T13:36:50.575544Z",
            "url": "https://files.pythonhosted.org/packages/ad/73/da4356c3ee1da7aad27b27e1909b8681d905c69c8619419545195e8ac645/tract-0.21.4-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "74bfad32e4b06f02fa00544f6ae57e904f7affb4188505fb4b3b2930a8f8fd84",
                "md5": "02bc6b001ddd3180e1e821c57255623f",
                "sha256": "ef491c84592229f068394e372640f2301ba9226622fed4cfae42973aee1788b4"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "02bc6b001ddd3180e1e821c57255623f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 7108935,
            "upload_time": "2024-04-23T13:36:53",
            "upload_time_iso_8601": "2024-04-23T13:36:53.291277Z",
            "url": "https://files.pythonhosted.org/packages/74/bf/ad32e4b06f02fa00544f6ae57e904f7affb4188505fb4b3b2930a8f8fd84/tract-0.21.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "09978d1eee43fdd6677e50b3ddf9aa215d5b3f9192cea8f9db38bc8dd4eb70f5",
                "md5": "7a9ed6d27dca59058f08ffad3169357a",
                "sha256": "07f7a28bb0e71d70cb1182dd2efaef415815b05e9a6fd61481267b9aa64a1e33"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7a9ed6d27dca59058f08ffad3169357a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 6661305,
            "upload_time": "2024-04-23T13:36:55",
            "upload_time_iso_8601": "2024-04-23T13:36:55.564986Z",
            "url": "https://files.pythonhosted.org/packages/09/97/8d1eee43fdd6677e50b3ddf9aa215d5b3f9192cea8f9db38bc8dd4eb70f5/tract-0.21.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "81420136809bebbf6a612d22fe985e9a83392e74bd0e3076c195baf34909125a",
                "md5": "bf02355abb5952947ae4e26f97d281d8",
                "sha256": "5fa0d518e0e74ed3b52a5879364dda25908589c28267537926ad359dae63391f"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bf02355abb5952947ae4e26f97d281d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 7152136,
            "upload_time": "2024-04-23T13:36:57",
            "upload_time_iso_8601": "2024-04-23T13:36:57.542167Z",
            "url": "https://files.pythonhosted.org/packages/81/42/0136809bebbf6a612d22fe985e9a83392e74bd0e3076c195baf34909125a/tract-0.21.4-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b70fa93de32a1e13d066bac6ed0de1775dc47d0cce6c04da245ff2bf32fba5f8",
                "md5": "8b6f8a9208131f54a550f8b7619f5143",
                "sha256": "2828183a2dbae5182a2dee28b55f2a3e2ddfe36a136a45463dd2cbd82369c513"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8b6f8a9208131f54a550f8b7619f5143",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 6854538,
            "upload_time": "2024-04-23T13:36:59",
            "upload_time_iso_8601": "2024-04-23T13:36:59.419185Z",
            "url": "https://files.pythonhosted.org/packages/b7/0f/a93de32a1e13d066bac6ed0de1775dc47d0cce6c04da245ff2bf32fba5f8/tract-0.21.4-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "983c7b02211f3af778f77d47bd18c8e6bded383dfcacd54e00928aebf7c2ac33",
                "md5": "a1611e479bc118ad5060e30719a619e6",
                "sha256": "0da88315c8531e177070e9d860b3874ea78e286c6c77aac8d9248fddc26b082d"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a1611e479bc118ad5060e30719a619e6",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 7178548,
            "upload_time": "2024-04-23T13:37:01",
            "upload_time_iso_8601": "2024-04-23T13:37:01.622415Z",
            "url": "https://files.pythonhosted.org/packages/98/3c/7b02211f3af778f77d47bd18c8e6bded383dfcacd54e00928aebf7c2ac33/tract-0.21.4-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a1e7c7c5c0757cbba4006047bbbeaa91547840f4db4f682516c5c41e99d66ae",
                "md5": "b5f2f8650fdf26b64c3f27c7892ea280",
                "sha256": "8fa73905633f2d1fc207597e61386429d953b9ea45158611c95b67f2ab15df5a"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b5f2f8650fdf26b64c3f27c7892ea280",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 7108947,
            "upload_time": "2024-04-23T13:37:04",
            "upload_time_iso_8601": "2024-04-23T13:37:04.733860Z",
            "url": "https://files.pythonhosted.org/packages/8a/1e/7c7c5c0757cbba4006047bbbeaa91547840f4db4f682516c5c41e99d66ae/tract-0.21.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7bdb8eb776c455c1e89fcf3e72db962728586c705841162a9d3a42516645f532",
                "md5": "715ba8105e44fae8531cbe512e11cd78",
                "sha256": "5edb87ea38e30624aa56dbdea862ca154c8550b72daae66cf1a2c82c1f2bd523"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "715ba8105e44fae8531cbe512e11cd78",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 6661317,
            "upload_time": "2024-04-23T13:37:07",
            "upload_time_iso_8601": "2024-04-23T13:37:07.753902Z",
            "url": "https://files.pythonhosted.org/packages/7b/db/8eb776c455c1e89fcf3e72db962728586c705841162a9d3a42516645f532/tract-0.21.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a81c16c80e3520fd134e1ec10cc6f445f857ba95204fef740f47051c14c5138f",
                "md5": "82ae52c8b788e2aba63fce23c4750fdc",
                "sha256": "3b45be552994ed22bbab039f28585993a3fe7e5b7913eb15da3c028641ed06b5"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "82ae52c8b788e2aba63fce23c4750fdc",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 6642646,
            "upload_time": "2024-04-23T13:37:09",
            "upload_time_iso_8601": "2024-04-23T13:37:09.713486Z",
            "url": "https://files.pythonhosted.org/packages/a8/1c/16c80e3520fd134e1ec10cc6f445f857ba95204fef740f47051c14c5138f/tract-0.21.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6c1f5f9162e98025321a2f7756188711a5e9dff58a04672ecf6043f57e8563ed",
                "md5": "5a3ee7642f80421512a50a050acfb777",
                "sha256": "e2574df9bb1555521de64c8fafc7f5bcb7d48f688f227c0ba78be09fce2bc1e4"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5a3ee7642f80421512a50a050acfb777",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 7108943,
            "upload_time": "2024-04-23T13:37:11",
            "upload_time_iso_8601": "2024-04-23T13:37:11.813662Z",
            "url": "https://files.pythonhosted.org/packages/6c/1f/5f9162e98025321a2f7756188711a5e9dff58a04672ecf6043f57e8563ed/tract-0.21.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4f0a8ba0ac1aeb5612d2eedf5b3460c0046f7d12547a8f20c618175b74c79d3d",
                "md5": "d1e61a039b95fd2f4d443d20394c19b0",
                "sha256": "a7282257f1e86a17b98060139bee6a80b9a1b968d388707b7f84b28d68b6024a"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d1e61a039b95fd2f4d443d20394c19b0",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 6661311,
            "upload_time": "2024-04-23T13:37:14",
            "upload_time_iso_8601": "2024-04-23T13:37:14.554647Z",
            "url": "https://files.pythonhosted.org/packages/4f/0a/8ba0ac1aeb5612d2eedf5b3460c0046f7d12547a8f20c618175b74c79d3d/tract-0.21.4-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "608973bff76868d5fa032f327a8740ab42511f0be47e94160b42eadbcb1f2792",
                "md5": "ec4aa5b79f1464123e2725c399fb6b8e",
                "sha256": "e51ecb7d01d17a36cf8a97f933974eebe1296f84b66f2972b33bc086b3726d34"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ec4aa5b79f1464123e2725c399fb6b8e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 7178549,
            "upload_time": "2024-04-23T13:37:16",
            "upload_time_iso_8601": "2024-04-23T13:37:16.474493Z",
            "url": "https://files.pythonhosted.org/packages/60/89/73bff76868d5fa032f327a8740ab42511f0be47e94160b42eadbcb1f2792/tract-0.21.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "125a8d4755305875acfc7d0a4bcef491f721d7c78c6c3b9b290b769e4254617e",
                "md5": "285aaf95b0d50f47018aeba9f533429b",
                "sha256": "85014fbb0561b7b25a8316ca3e097b064b442e8168112e9b08afb086da85a188"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "285aaf95b0d50f47018aeba9f533429b",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 7108943,
            "upload_time": "2024-04-23T13:37:18",
            "upload_time_iso_8601": "2024-04-23T13:37:18.521837Z",
            "url": "https://files.pythonhosted.org/packages/12/5a/8d4755305875acfc7d0a4bcef491f721d7c78c6c3b9b290b769e4254617e/tract-0.21.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f8dd54da1a294740569925e3b9fb8c0ab8729cc7255b1b9ceb12e1466813a686",
                "md5": "1bdc62b5fcaaf90e7d284ca1aec21426",
                "sha256": "ea5aec0be28ec47ad6114acafb32cec309035506bbdea3d4b2c7ef21f7f9a88e"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1bdc62b5fcaaf90e7d284ca1aec21426",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 6661310,
            "upload_time": "2024-04-23T13:37:21",
            "upload_time_iso_8601": "2024-04-23T13:37:21.119350Z",
            "url": "https://files.pythonhosted.org/packages/f8/dd/54da1a294740569925e3b9fb8c0ab8729cc7255b1b9ceb12e1466813a686/tract-0.21.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6fda18a065a663ddec867b24640747cc4a96062f23882941101972f4f249cd2a",
                "md5": "3e58dccbf59507d5c8e2c590decdef09",
                "sha256": "23925ebee684fe5912d77336e2dddd2f84a95d6b0e387995fc4517c9765d8312"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3e58dccbf59507d5c8e2c590decdef09",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 7178548,
            "upload_time": "2024-04-23T13:37:23",
            "upload_time_iso_8601": "2024-04-23T13:37:23.012798Z",
            "url": "https://files.pythonhosted.org/packages/6f/da/18a065a663ddec867b24640747cc4a96062f23882941101972f4f249cd2a/tract-0.21.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f4de2df9cb081d54fd0f1d45164e3d6eb7a88e244d983b00faa186f9c9a33a4",
                "md5": "13ccc4ac6731fff2e4844fdc041bbccd",
                "sha256": "70d9eaf3598efa392862f5333904c9f9870bd69a8baf24935025d07cb2eadb01"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "13ccc4ac6731fff2e4844fdc041bbccd",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 7108943,
            "upload_time": "2024-04-23T13:37:24",
            "upload_time_iso_8601": "2024-04-23T13:37:24.991578Z",
            "url": "https://files.pythonhosted.org/packages/8f/4d/e2df9cb081d54fd0f1d45164e3d6eb7a88e244d983b00faa186f9c9a33a4/tract-0.21.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "44e0a4c2e9fdf6bd90987d82b112a0cf05fbaf865dc7fc676b1fed258a15b6ce",
                "md5": "37267a8749aa5d0183018c62e5ff3b80",
                "sha256": "bda2b1ee35a2b73a36cf508d578628b03d041e9f703e9998466d95725da049a3"
            },
            "downloads": -1,
            "filename": "tract-0.21.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "37267a8749aa5d0183018c62e5ff3b80",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 6661312,
            "upload_time": "2024-04-23T13:37:27",
            "upload_time_iso_8601": "2024-04-23T13:37:27.187482Z",
            "url": "https://files.pythonhosted.org/packages/44/e0/a4c2e9fdf6bd90987d82b112a0cf05fbaf865dc7fc676b1fed258a15b6ce/tract-0.21.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7613b8e75855001d27c08eabacdb69d1c92ae80d989efd8b2773ce3f0852d805",
                "md5": "06e1bb3242cc95c42319680da4412fdd",
                "sha256": "23f86a52e30b8b35180300835bc23795261df94ef4aafc527b497a5fda39e5f5"
            },
            "downloads": -1,
            "filename": "tract-0.21.4.tar.gz",
            "has_sig": false,
            "md5_digest": "06e1bb3242cc95c42319680da4412fdd",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 6186489,
            "upload_time": "2024-04-23T13:37:29",
            "upload_time_iso_8601": "2024-04-23T13:37:29.012912Z",
            "url": "https://files.pythonhosted.org/packages/76/13/b8e75855001d27c08eabacdb69d1c92ae80d989efd8b2773ce3f0852d805/tract-0.21.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-23 13:37:29",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "sonos",
    "github_project": "tract",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": true,
    "lcname": "tract"
}
        
Elapsed time: 0.24585s