tinybrain


Nametinybrain JSON
Version 1.4.0 PyPI version JSON
download
home_pagehttps://github.com/seung-lab/tinybrain/
SummaryImage pyramid generation specialized for connectomics data types and procedures.
upload_time2023-06-08 23:56:17
maintainer
docs_urlNone
authorWilliam Silversmith
requires_python>=3.7
license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![Build Status](https://travis-ci.org/seung-lab/tinybrain.svg?branch=master)](https://travis-ci.org/seung-lab/tinybrain) [![PyPI version](https://badge.fury.io/py/tinybrain.svg)](https://badge.fury.io/py/tinybrain)  

# tinybrain

Image pyramid generation specialized for connectomics data types and procedures. If your brain wasn't tiny before, it will be now.  

```python 
import tinybrain 

img = load_3d_em_stack()

# 2x2 and 2x2x2 downsamples are on a fast path.
# e.g. (2,2), (2,2,1), (2,2,1,1), (2,2,2), (2,2,2,1)
img_pyramid = tinybrain.downsample_with_averaging(img, factor=(2,2,1), num_mips=5, sparse=False)

labels = load_3d_labels()
label_pyramid = tinybrain.downsample_segmentation(labels, factor=(2,2,1), num_mips=5, sparse=False))
```

## Installation 

```bash
pip install numpy
pip install tinybrain
```

## Motivation

Image hierarchy generation in connectomics uses a few different techniques for
visualizing data, but predominantly we create image pyramids of uint8 grayscale images using 2x2 average pooling and of uint8 to uint64 segmentation labels using 2x2 mode pooling. When images become very large and people wish to visualze upper mip levels using three axes at once, it becomes desirable to perform 2x2x2 downsamples to maintain isotropy.

It's possible to compute both of these using numpy, however as multiple packages found it useful to copy the downsample functions, it makes sense to formalize these functions into a seperate library located on PyPI.

Given the disparate circumstances that they will be used in, these functions should work 
fast as possible with low memory usage and avoid numerical issues such as integer truncation
while generating multiple mip levels.

## Considerations: downsample_with_averaging 

It's advisable to generate multiple mip levels at once rather than recursively computing
new images as for integer type images, this leads to integer truncation issues. In the common
case of 2x2x1 downsampling, a recursively computed image would lose 0.75 brightness per a 
mip level. Therefore, take advantage of the `num_mips` argument which strikes a balance
that limits integer truncation loss to once every 4 mip levels. This compromise allows
for the use of integer arithmatic and no more memory usage than 2x the input image including
the output downsamples. If you seek to eliminate the loss beyond 4 mip levels, try promoting 
the type before downsampling. 2x2x2x1 downsamples truncate every 8 mip levels.

A C++ high performance path is triggered for 2x2x1x1 and 2x2x2x1 downsample factors on uint8, uint16, float32, 
and float64 data types in Fortran order. Other factors, data types, and orderings are computed using a numpy pathway that is much slower and more memory intensive.

We also include a sparse mode for downsampling 2x2x2 patches, which prevents "ghosting" where one z-slice overlaps a black region on the next slice and becomes semi-transparent after downsampling. We deal with this by neglecting the background pixels from the averaging operation. 

### Example Benchmark 

On a 1024x1024x100 uint8 image I ran the following code. PIL and OpenCV are actually much faster than this benchmark shows because most of the time is spent writing to the numpy array. tinybrain has a large advantage working on 3D and 4D arrays. Of course, this is a very simple benchmark and it may be possible to tune each of these approaches. On single slices, Pillow was faster than tinybrain.

```python
img = np.load("image.npy")

s = time.time()
downsample_with_averaging(img, (2,2,1))
print("Original ", time.time() - s)

s = time.time()
out = tinybrain.downsample_with_averaging(img, (2,2,1))
print("tinybrain ", time.time() - s)

s = time.time()
out = np.zeros(shape=(512,512,100))
for z in range(img.shape[2]):
  out[:,:,z] = cv2.resize(img[:,:,z], dsize=(512, 512) )
print("OpenCV ", time.time() - s)

s = time.time()
out = np.zeros(shape=(512,512,100))
for z in range(img.shape[2]):
  pilimg = Image.fromarray(img[:,:,z])
  out[:,:,z] = pilimg.resize( (512, 512) )
print("Pillow ", time.time() - s)

# Method     Run Time             Rel. Perf.
# Original   1820 ms +/- 3.73 ms    1.0x
# tinybrain    67 ms +/- 0.40 ms   27.2x 
# OpenCV      469 ms +/- 1.12 ms    3.9x
# Pillow      937 ms +/- 7.63 ms    1.9x
```

Here's the output from `perf.py` on an Apple Silicon 2021 Macbook Pro M1.
Note that the image used was a random 2048x2048x64 array that was a uint8
for average pooling and a uint64 for mode pooling to represent real use cases more fairly. In the table, read it as 2D or 3D downsamples, generating a single or multiple mip levels, with sparse mode enabled or disabled. The speed values are in megavoxels per a second and are the mean of ten runs.


| dwnsmpl  |   mips  |   sparse  |   AVG (MVx/sec)  |   MODE (MVx/sec)  |
|----------|---------|-----------|------------------|-------------------|
|   2x2    |   1     |   N       |   3856.07        |   1057.87         |
|   2x2    |   2     |   N       |   2685.80        |   1062.69         |
|   2x2    |   1     |   Y       |   N/A            |   129.64          |
|   2x2    |   2     |   Y       |   N/A            |   81.62           |
|   2x2x2  |   1     |   N       |   4468.55        |   336.85          |
|   2x2x2  |   2     |   N       |   2867.80        |   298.45          |
|   2x2x2  |   1     |   Y       |   1389.47        |   337.87          |
|   2x2x2  |   2     |   Y       |   1259.58        |   293.84          |

As the downsampling code's performance is data dependent due to branching, I also used [`connectomics.npy`](https://github.com/seung-lab/connected-components-3d/blob/master/benchmarks/connectomics.npy.gz) (512<sup>3</sup> uint32 extended to uint64) to see how that affected performance. This data comes from mouse visual cortex and has many equal adjacent voxels. In this volume, the 2x2x2 non-sparse mode is much faster as the "instant" majority detection can skip examining half the voxels in many cases.

| dwnsmpl  |   mips  |   sparse  |   MODE (MVx/sec)  |
|----------|---------|-----------|-------------------|
|   2x2    |   1     |   N       |   1078.09         |
|   2x2    |   2     |   N       |   1030.90         |
|   2x2    |   1     |   Y       |   146.15          |
|   2x2    |   2     |   Y       |   69.25           |
|   2x2x2  |   1     |   N       |   1966.74         |
|   2x2x2  |   2     |   N       |   1790.60         |
|   2x2x2  |   1     |   Y       |   2041.96         |
|   2x2x2  |   2     |   Y       |   1758.42         |


## Considerations: downsample_segmentation 

The `downsample_segmentation` function performs mode pooling operations provided the downsample factor is a power of two, including in three dimensions. If the factor is a non-power of two, striding is used. The mode pooling, which is usually what you want, is computed recursively. Mode pooling is superior to striding, but the recursive calculation can introduce defects at mip levels higher than 1. This may be improved in the future.  

The way the calculation is actually done uses an ensemble of several different methods. For (2,2,1,1) and (2,2,2,1) downsamples, a Cython fast, low memory path is selected. (2,2,1,1) implements [*countless if*](https://towardsdatascience.com/countless-high-performance-2x-downsampling-of-labeled-images-using-python-and-numpy-e70ad3275589). (2,2,2,1) uses a combination of counting and "instant" majority detection. For (4,4,1) or other 2D powers of two, the [*countless 2d*](https://towardsdatascience.com/countless-high-performance-2x-downsampling-of-labeled-images-using-python-and-numpy-e70ad3275589) algorithm is used. For (4,4,4), (8,8,8) etc, the [*dynamic countless 3d*](https://towardsdatascience.com/countless-3d-vectorized-2x-downsampling-of-labeled-volume-images-using-python-and-numpy-59d686c2f75) algorithm is used. For 2D powers of two, [*stippled countless 2d*](https://medium.com/@willsilversmith/countless-2d-inflated-2x-downsampling-of-labeled-images-holding-zero-values-as-background-4d13a7675f2d) is used if the sparse flag is enabled. For all other configurations, striding is used.  

Countless 2d paths are also fast, but use slightly more memory and time. Countless 3D is okay for (2,2,2) and (4,4,4) but will use time and memory exponential in the product of dimensions. This state of affairs could be improved by implementing a counting based algorithm in Cython/C++ for arbitrary factors that doesn't compute recursively. The countless algorithms were developed before I knew how to write Cython and package libraries. However, C++ implementations of countless are much faster than counting for computing the first 2x2x1 mip level. In particular, an AVX2 SIMD implementation can saturate memory bandwidth.    

Documentation for the countless algorithm family is located here: https://github.com/william-silversmith/countless


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/seung-lab/tinybrain/",
    "name": "tinybrain",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "",
    "author": "William Silversmith",
    "author_email": "ws9@princeton.edu",
    "download_url": "https://files.pythonhosted.org/packages/48/d1/1ff709b7835beb31b5fa6c0cca1cda524027af9c7d6df76355e5140c3f04/tinybrain-1.4.0.tar.gz",
    "platform": null,
    "description": "[![Build Status](https://travis-ci.org/seung-lab/tinybrain.svg?branch=master)](https://travis-ci.org/seung-lab/tinybrain) [![PyPI version](https://badge.fury.io/py/tinybrain.svg)](https://badge.fury.io/py/tinybrain)  \n\n# tinybrain\n\nImage pyramid generation specialized for connectomics data types and procedures. If your brain wasn't tiny before, it will be now.  \n\n```python \nimport tinybrain \n\nimg = load_3d_em_stack()\n\n# 2x2 and 2x2x2 downsamples are on a fast path.\n# e.g. (2,2), (2,2,1), (2,2,1,1), (2,2,2), (2,2,2,1)\nimg_pyramid = tinybrain.downsample_with_averaging(img, factor=(2,2,1), num_mips=5, sparse=False)\n\nlabels = load_3d_labels()\nlabel_pyramid = tinybrain.downsample_segmentation(labels, factor=(2,2,1), num_mips=5, sparse=False))\n```\n\n## Installation \n\n```bash\npip install numpy\npip install tinybrain\n```\n\n## Motivation\n\nImage hierarchy generation in connectomics uses a few different techniques for\nvisualizing data, but predominantly we create image pyramids of uint8 grayscale images using 2x2 average pooling and of uint8 to uint64 segmentation labels using 2x2 mode pooling. When images become very large and people wish to visualze upper mip levels using three axes at once, it becomes desirable to perform 2x2x2 downsamples to maintain isotropy.\n\nIt's possible to compute both of these using numpy, however as multiple packages found it useful to copy the downsample functions, it makes sense to formalize these functions into a seperate library located on PyPI.\n\nGiven the disparate circumstances that they will be used in, these functions should work \nfast as possible with low memory usage and avoid numerical issues such as integer truncation\nwhile generating multiple mip levels.\n\n## Considerations: downsample_with_averaging \n\nIt's advisable to generate multiple mip levels at once rather than recursively computing\nnew images as for integer type images, this leads to integer truncation issues. In the common\ncase of 2x2x1 downsampling, a recursively computed image would lose 0.75 brightness per a \nmip level. Therefore, take advantage of the `num_mips` argument which strikes a balance\nthat limits integer truncation loss to once every 4 mip levels. This compromise allows\nfor the use of integer arithmatic and no more memory usage than 2x the input image including\nthe output downsamples. If you seek to eliminate the loss beyond 4 mip levels, try promoting \nthe type before downsampling. 2x2x2x1 downsamples truncate every 8 mip levels.\n\nA C++ high performance path is triggered for 2x2x1x1 and 2x2x2x1 downsample factors on uint8, uint16, float32, \nand float64 data types in Fortran order. Other factors, data types, and orderings are computed using a numpy pathway that is much slower and more memory intensive.\n\nWe also include a sparse mode for downsampling 2x2x2 patches, which prevents \"ghosting\" where one z-slice overlaps a black region on the next slice and becomes semi-transparent after downsampling. We deal with this by neglecting the background pixels from the averaging operation. \n\n### Example Benchmark \n\nOn a 1024x1024x100 uint8 image I ran the following code. PIL and OpenCV are actually much faster than this benchmark shows because most of the time is spent writing to the numpy array. tinybrain has a large advantage working on 3D and 4D arrays. Of course, this is a very simple benchmark and it may be possible to tune each of these approaches. On single slices, Pillow was faster than tinybrain.\n\n```python\nimg = np.load(\"image.npy\")\n\ns = time.time()\ndownsample_with_averaging(img, (2,2,1))\nprint(\"Original \", time.time() - s)\n\ns = time.time()\nout = tinybrain.downsample_with_averaging(img, (2,2,1))\nprint(\"tinybrain \", time.time() - s)\n\ns = time.time()\nout = np.zeros(shape=(512,512,100))\nfor z in range(img.shape[2]):\n  out[:,:,z] = cv2.resize(img[:,:,z], dsize=(512, 512) )\nprint(\"OpenCV \", time.time() - s)\n\ns = time.time()\nout = np.zeros(shape=(512,512,100))\nfor z in range(img.shape[2]):\n  pilimg = Image.fromarray(img[:,:,z])\n  out[:,:,z] = pilimg.resize( (512, 512) )\nprint(\"Pillow \", time.time() - s)\n\n# Method     Run Time             Rel. Perf.\n# Original   1820 ms +/- 3.73 ms    1.0x\n# tinybrain    67 ms +/- 0.40 ms   27.2x \n# OpenCV      469 ms +/- 1.12 ms    3.9x\n# Pillow      937 ms +/- 7.63 ms    1.9x\n```\n\nHere's the output from `perf.py` on an Apple Silicon 2021 Macbook Pro M1.\nNote that the image used was a random 2048x2048x64 array that was a uint8\nfor average pooling and a uint64 for mode pooling to represent real use cases more fairly. In the table, read it as 2D or 3D downsamples, generating a single or multiple mip levels, with sparse mode enabled or disabled. The speed values are in megavoxels per a second and are the mean of ten runs.\n\n\n| dwnsmpl  |   mips  |   sparse  |   AVG (MVx/sec)  |   MODE (MVx/sec)  |\n|----------|---------|-----------|------------------|-------------------|\n|   2x2    |   1     |   N       |   3856.07        |   1057.87         |\n|   2x2    |   2     |   N       |   2685.80        |   1062.69         |\n|   2x2    |   1     |   Y       |   N/A            |   129.64          |\n|   2x2    |   2     |   Y       |   N/A            |   81.62           |\n|   2x2x2  |   1     |   N       |   4468.55        |   336.85          |\n|   2x2x2  |   2     |   N       |   2867.80        |   298.45          |\n|   2x2x2  |   1     |   Y       |   1389.47        |   337.87          |\n|   2x2x2  |   2     |   Y       |   1259.58        |   293.84          |\n\nAs the downsampling code's performance is data dependent due to branching, I also used [`connectomics.npy`](https://github.com/seung-lab/connected-components-3d/blob/master/benchmarks/connectomics.npy.gz) (512<sup>3</sup> uint32 extended to uint64) to see how that affected performance. This data comes from mouse visual cortex and has many equal adjacent voxels. In this volume, the 2x2x2 non-sparse mode is much faster as the \"instant\" majority detection can skip examining half the voxels in many cases.\n\n| dwnsmpl  |   mips  |   sparse  |   MODE (MVx/sec)  |\n|----------|---------|-----------|-------------------|\n|   2x2    |   1     |   N       |   1078.09         |\n|   2x2    |   2     |   N       |   1030.90         |\n|   2x2    |   1     |   Y       |   146.15          |\n|   2x2    |   2     |   Y       |   69.25           |\n|   2x2x2  |   1     |   N       |   1966.74         |\n|   2x2x2  |   2     |   N       |   1790.60         |\n|   2x2x2  |   1     |   Y       |   2041.96         |\n|   2x2x2  |   2     |   Y       |   1758.42         |\n\n\n## Considerations: downsample_segmentation \n\nThe `downsample_segmentation` function performs mode pooling operations provided the downsample factor is a power of two, including in three dimensions. If the factor is a non-power of two, striding is used. The mode pooling, which is usually what you want, is computed recursively. Mode pooling is superior to striding, but the recursive calculation can introduce defects at mip levels higher than 1. This may be improved in the future.  \n\nThe way the calculation is actually done uses an ensemble of several different methods. For (2,2,1,1) and (2,2,2,1) downsamples, a Cython fast, low memory path is selected. (2,2,1,1) implements [*countless if*](https://towardsdatascience.com/countless-high-performance-2x-downsampling-of-labeled-images-using-python-and-numpy-e70ad3275589). (2,2,2,1) uses a combination of counting and \"instant\" majority detection. For (4,4,1) or other 2D powers of two, the [*countless 2d*](https://towardsdatascience.com/countless-high-performance-2x-downsampling-of-labeled-images-using-python-and-numpy-e70ad3275589) algorithm is used. For (4,4,4), (8,8,8) etc, the [*dynamic countless 3d*](https://towardsdatascience.com/countless-3d-vectorized-2x-downsampling-of-labeled-volume-images-using-python-and-numpy-59d686c2f75) algorithm is used. For 2D powers of two, [*stippled countless 2d*](https://medium.com/@willsilversmith/countless-2d-inflated-2x-downsampling-of-labeled-images-holding-zero-values-as-background-4d13a7675f2d) is used if the sparse flag is enabled. For all other configurations, striding is used.  \n\nCountless 2d paths are also fast, but use slightly more memory and time. Countless 3D is okay for (2,2,2) and (4,4,4) but will use time and memory exponential in the product of dimensions. This state of affairs could be improved by implementing a counting based algorithm in Cython/C++ for arbitrary factors that doesn't compute recursively. The countless algorithms were developed before I knew how to write Cython and package libraries. However, C++ implementations of countless are much faster than counting for computing the first 2x2x1 mip level. In particular, an AVX2 SIMD implementation can saturate memory bandwidth.    \n\nDocumentation for the countless algorithm family is located here: https://github.com/william-silversmith/countless\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Image pyramid generation specialized for connectomics data types and procedures.",
    "version": "1.4.0",
    "project_urls": {
        "Homepage": "https://github.com/seung-lab/tinybrain/"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f3543e24c1362f96a441de82e3dadd1afc00daeee0f5c8017f75a4bf7fb1acbe",
                "md5": "092c6c872c6c93784ca6b1f3eeafabc7",
                "sha256": "faaa83ddcafa8f24bb92bec9a95fbf0b295da6c0ca00104fccd67a21c25cd456"
            },
            "downloads": -1,
            "filename": "tinybrain-1.4.0-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "092c6c872c6c93784ca6b1f3eeafabc7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1343867,
            "upload_time": "2023-06-08T23:54:51",
            "upload_time_iso_8601": "2023-06-08T23:54:51.765907Z",
            "url": "https://files.pythonhosted.org/packages/f3/54/3e24c1362f96a441de82e3dadd1afc00daeee0f5c8017f75a4bf7fb1acbe/tinybrain-1.4.0-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d48bc1e696f42e7729eff270dcd84cc97d0f43dd611a84327de56be9d2358e36",
                "md5": "a51e2e2922595f034ea28508ad2383bf",
                "sha256": "5900b11449c0d99dd2eae4af378c12fff61bb75a7556cd5d640743b94240b102"
            },
            "downloads": -1,
            "filename": "tinybrain-1.4.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a51e2e2922595f034ea28508ad2383bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 579056,
            "upload_time": "2023-06-08T23:54:53",
            "upload_time_iso_8601": "2023-06-08T23:54:53.889639Z",
            "url": "https://files.pythonhosted.org/packages/d4/8b/c1e696f42e7729eff270dcd84cc97d0f43dd611a84327de56be9d2358e36/tinybrain-1.4.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d9149155d967a0ad895818336c02b50db663e0bf2899af7436a9f6f058f2ce0a",
                "md5": "445eacf35b6cbb6ab43f05c642747c96",
                "sha256": "d25c2860993c8d025928ab5b26c84905af11dea5604c43d3d97bdf171bfd8106"
            },
            "downloads": -1,
            "filename": "tinybrain-1.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "445eacf35b6cbb6ab43f05c642747c96",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2723483,
            "upload_time": "2023-06-08T23:54:56",
            "upload_time_iso_8601": "2023-06-08T23:54:56.258334Z",
            "url": "https://files.pythonhosted.org/packages/d9/14/9155d967a0ad895818336c02b50db663e0bf2899af7436a9f6f058f2ce0a/tinybrain-1.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "580ae2248dedfc706241a8d1c1a725e9ee27c7c2edee9e832cefa0f467c4e5e0",
                "md5": "efb04ab9a81cd3410d00c3a4f8468fda",
                "sha256": "e015a9ebb2ba3c5c1e83721554204fca33914dd82e197ce6e53c23d33e08b052"
            },
            "downloads": -1,
            "filename": "tinybrain-1.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "efb04ab9a81cd3410d00c3a4f8468fda",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2790635,
            "upload_time": "2023-06-08T23:55:03",
            "upload_time_iso_8601": "2023-06-08T23:55:03.222460Z",
            "url": "https://files.pythonhosted.org/packages/58/0a/e2248dedfc706241a8d1c1a725e9ee27c7c2edee9e832cefa0f467c4e5e0/tinybrain-1.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5587b897b968bc6a7e155eca09cf3282515c089cf67eb890ce42e93d3209e8c3",
                "md5": "ef665418c230bc72bc76a6ac90c19686",
                "sha256": "f47c25a91c1b474fd8a7d88392fab468ec32573a47aca2f4bf4c55c2e6dad1a5"
            },
            "downloads": -1,
            "filename": "tinybrain-1.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ef665418c230bc72bc76a6ac90c19686",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2624774,
            "upload_time": "2023-06-08T23:55:07",
            "upload_time_iso_8601": "2023-06-08T23:55:07.399565Z",
            "url": "https://files.pythonhosted.org/packages/55/87/b897b968bc6a7e155eca09cf3282515c089cf67eb890ce42e93d3209e8c3/tinybrain-1.4.0-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": "8be658472732fc2c8d944a97b741cb677fb6a58b5b53f126874b7c2a065b5792",
                "md5": "708c932632c7e8d26a0982de1609ae0c",
                "sha256": "42c5ae8a6165dd08a9608585d75153f81a462fe9495fdba1ad80fccf51bb204e"
            },
            "downloads": -1,
            "filename": "tinybrain-1.4.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "708c932632c7e8d26a0982de1609ae0c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 276745,
            "upload_time": "2023-06-08T23:55:09",
            "upload_time_iso_8601": "2023-06-08T23:55:09.582717Z",
            "url": "https://files.pythonhosted.org/packages/8b/e6/58472732fc2c8d944a97b741cb677fb6a58b5b53f126874b7c2a065b5792/tinybrain-1.4.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9673b5a5beaf234c4e5363a7256830c11006f07414c0d4edf906820267b8a29a",
                "md5": "e4a17944808e1d03c12f21aa6b855eb5",
                "sha256": "37f3da2b4922ca1f9f686723d517b2d8dce61473949bf9ce5738109fb51c7ea6"
            },
            "downloads": -1,
            "filename": "tinybrain-1.4.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e4a17944808e1d03c12f21aa6b855eb5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 329081,
            "upload_time": "2023-06-08T23:55:11",
            "upload_time_iso_8601": "2023-06-08T23:55:11.055324Z",
            "url": "https://files.pythonhosted.org/packages/96/73/b5a5beaf234c4e5363a7256830c11006f07414c0d4edf906820267b8a29a/tinybrain-1.4.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fed66bb8e7ce191a14e572ab956e328c118567953fabce2d0a9fa8124c86700b",
                "md5": "2a5db7ff29dc14a3034dbbc6bd406bad",
                "sha256": "d507861557672218ba437beb08321ff5a0582b06939c7d0c060ada30aaf3c0aa"
            },
            "downloads": -1,
            "filename": "tinybrain-1.4.0-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "2a5db7ff29dc14a3034dbbc6bd406bad",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 967703,
            "upload_time": "2023-06-08T23:55:13",
            "upload_time_iso_8601": "2023-06-08T23:55:13.141801Z",
            "url": "https://files.pythonhosted.org/packages/fe/d6/6bb8e7ce191a14e572ab956e328c118567953fabce2d0a9fa8124c86700b/tinybrain-1.4.0-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3e6bfe6c111791e35b895779e859f57f55184871cbb6be68beb84205af5ff80a",
                "md5": "f62f3edfe091dc1a1b220d9cb9449087",
                "sha256": "7fad545413839b323b722670944e47b7b78d5cc086a5e0c5f8ad1f9e64404344"
            },
            "downloads": -1,
            "filename": "tinybrain-1.4.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f62f3edfe091dc1a1b220d9cb9449087",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 569349,
            "upload_time": "2023-06-08T23:55:15",
            "upload_time_iso_8601": "2023-06-08T23:55:15.234002Z",
            "url": "https://files.pythonhosted.org/packages/3e/6b/fe6c111791e35b895779e859f57f55184871cbb6be68beb84205af5ff80a/tinybrain-1.4.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d2f8b54b3aed4c872c36342e05e353c3a17b2b8ac8edffd4a59eb958634f525e",
                "md5": "483f4d11d310b76383a28b633e5e581d",
                "sha256": "69f89d38ff57d0df35fae3027bfd89fb4c927d612000216d5ca01184b3d30a1d"
            },
            "downloads": -1,
            "filename": "tinybrain-1.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "483f4d11d310b76383a28b633e5e581d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2817894,
            "upload_time": "2023-06-08T23:55:17",
            "upload_time_iso_8601": "2023-06-08T23:55:17.710492Z",
            "url": "https://files.pythonhosted.org/packages/d2/f8/b54b3aed4c872c36342e05e353c3a17b2b8ac8edffd4a59eb958634f525e/tinybrain-1.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ca6c419f898cc45e4caecbc7732c39c1486ff7fa1fd19d57d4d07d933f25368",
                "md5": "30f9d405720765079bfbb6664fea1294",
                "sha256": "b0f0922bbf99563309cecb77348dc08f145a03612ba3230094374ade904e24eb"
            },
            "downloads": -1,
            "filename": "tinybrain-1.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "30f9d405720765079bfbb6664fea1294",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2880330,
            "upload_time": "2023-06-08T23:55:22",
            "upload_time_iso_8601": "2023-06-08T23:55:22.448460Z",
            "url": "https://files.pythonhosted.org/packages/6c/a6/c419f898cc45e4caecbc7732c39c1486ff7fa1fd19d57d4d07d933f25368/tinybrain-1.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c47100395d0f68a8fc3d3f175392b9a020ee5562e5e9406889c32db63f166e5f",
                "md5": "516d619ed39d989b56687c7f2131340b",
                "sha256": "b61b80f025af739ad7103a2ea6573a79273e655ed63515cfa2cc5f2b758c6223"
            },
            "downloads": -1,
            "filename": "tinybrain-1.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "516d619ed39d989b56687c7f2131340b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2745264,
            "upload_time": "2023-06-08T23:55:25",
            "upload_time_iso_8601": "2023-06-08T23:55:25.299784Z",
            "url": "https://files.pythonhosted.org/packages/c4/71/00395d0f68a8fc3d3f175392b9a020ee5562e5e9406889c32db63f166e5f/tinybrain-1.4.0-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": "5de14184e75b62fac1c24f4151f50090b8ec1f1342672717d4052a76afed3794",
                "md5": "aa2c72aad19f2ea7e7e1ddbbf41058a6",
                "sha256": "27840849fa14fd23924eba4d1a375c1a5a3ced4035e985ec73280e0fa67f79e4"
            },
            "downloads": -1,
            "filename": "tinybrain-1.4.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "aa2c72aad19f2ea7e7e1ddbbf41058a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 274320,
            "upload_time": "2023-06-08T23:55:27",
            "upload_time_iso_8601": "2023-06-08T23:55:27.412242Z",
            "url": "https://files.pythonhosted.org/packages/5d/e1/4184e75b62fac1c24f4151f50090b8ec1f1342672717d4052a76afed3794/tinybrain-1.4.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8cc998ae8d9cd95c789f3294e0bf9fd09ecb7f0215938657f0a74514ca623fe7",
                "md5": "0485b10c35d00eafae587764b905c6cc",
                "sha256": "708a5e9bb04f5ff238b164276d96b63da1b444b34d162a5ff20966244f545360"
            },
            "downloads": -1,
            "filename": "tinybrain-1.4.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0485b10c35d00eafae587764b905c6cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 329880,
            "upload_time": "2023-06-08T23:55:29",
            "upload_time_iso_8601": "2023-06-08T23:55:29.233959Z",
            "url": "https://files.pythonhosted.org/packages/8c/c9/98ae8d9cd95c789f3294e0bf9fd09ecb7f0215938657f0a74514ca623fe7/tinybrain-1.4.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b4fafb472f4829b84eddfb562e96f7b3310f421bbf29c1cec7df43a5a5ea5d29",
                "md5": "45f5c2c5a3e80a0b99ae3d4ea677f173",
                "sha256": "d1b3bf95fc6f3875117232800d912b9667868508eff6d6dfc4e157b50c422cde"
            },
            "downloads": -1,
            "filename": "tinybrain-1.4.0-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "45f5c2c5a3e80a0b99ae3d4ea677f173",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 556243,
            "upload_time": "2023-06-08T23:55:30",
            "upload_time_iso_8601": "2023-06-08T23:55:30.634441Z",
            "url": "https://files.pythonhosted.org/packages/b4/fa/fb472f4829b84eddfb562e96f7b3310f421bbf29c1cec7df43a5a5ea5d29/tinybrain-1.4.0-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "72de1947791ec1eb5ee9b6a715dc12542fc2217aa231a5e3aa3ca34d2d4d9378",
                "md5": "bdf4a4fce15b0099f41ed364a852acde",
                "sha256": "27a4fc26de19cd3299564896b786baf9483dffe7f47779046d350dbf3aa9bd7f"
            },
            "downloads": -1,
            "filename": "tinybrain-1.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bdf4a4fce15b0099f41ed364a852acde",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 2507332,
            "upload_time": "2023-06-08T23:55:33",
            "upload_time_iso_8601": "2023-06-08T23:55:33.542375Z",
            "url": "https://files.pythonhosted.org/packages/72/de/1947791ec1eb5ee9b6a715dc12542fc2217aa231a5e3aa3ca34d2d4d9378/tinybrain-1.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a7efd6cf4d875d789af4d5a3853a85b920738edd9c0cfcf9ae59694cc05dd25",
                "md5": "12a6815e6ea1f97c0c19b6f03a7fa6af",
                "sha256": "22d2d4505af6b6c8867dd0e39651ada5684ddc71751cd86139f402de82fc6c05"
            },
            "downloads": -1,
            "filename": "tinybrain-1.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "12a6815e6ea1f97c0c19b6f03a7fa6af",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 2586287,
            "upload_time": "2023-06-08T23:55:37",
            "upload_time_iso_8601": "2023-06-08T23:55:37.402394Z",
            "url": "https://files.pythonhosted.org/packages/4a/7e/fd6cf4d875d789af4d5a3853a85b920738edd9c0cfcf9ae59694cc05dd25/tinybrain-1.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e2cedf794caa62a75c1da7d51c081048d257cf6e28fc996d1dd354d7c15a96c4",
                "md5": "b3e9c0ed536da8c5ef9f2d5e4edddb7f",
                "sha256": "98b30c892dbe96a9043d3f29590c3efc0dffcc78bb2e3e20fe790e8192e878e1"
            },
            "downloads": -1,
            "filename": "tinybrain-1.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b3e9c0ed536da8c5ef9f2d5e4edddb7f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 2421840,
            "upload_time": "2023-06-08T23:55:39",
            "upload_time_iso_8601": "2023-06-08T23:55:39.606712Z",
            "url": "https://files.pythonhosted.org/packages/e2/ce/df794caa62a75c1da7d51c081048d257cf6e28fc996d1dd354d7c15a96c4/tinybrain-1.4.0-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": "a955bed855c1feece73fdac2b351147696d0f1dc80595865798fb0b551b1a8c6",
                "md5": "7913c5e46fc05d26468dbbdc9eb0bd9a",
                "sha256": "2536ecca78371b623bf0ffe98b6ba32dc5eca22727f3d1bda0719ef03fa10828"
            },
            "downloads": -1,
            "filename": "tinybrain-1.4.0-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "7913c5e46fc05d26468dbbdc9eb0bd9a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 270244,
            "upload_time": "2023-06-08T23:55:41",
            "upload_time_iso_8601": "2023-06-08T23:55:41.653586Z",
            "url": "https://files.pythonhosted.org/packages/a9/55/bed855c1feece73fdac2b351147696d0f1dc80595865798fb0b551b1a8c6/tinybrain-1.4.0-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b6a6bab57f9f7853a98cfc3514eb9e59de8450073af94f01c6471c00cf3b620e",
                "md5": "5ab05cec147b7040916f9afc17e8188f",
                "sha256": "e6274f6a5814d725c363ad31989788e9cb147a37351bf6dab8fc4ae2e77fcb53"
            },
            "downloads": -1,
            "filename": "tinybrain-1.4.0-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5ab05cec147b7040916f9afc17e8188f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 311563,
            "upload_time": "2023-06-08T23:55:43",
            "upload_time_iso_8601": "2023-06-08T23:55:43.237325Z",
            "url": "https://files.pythonhosted.org/packages/b6/a6/bab57f9f7853a98cfc3514eb9e59de8450073af94f01c6471c00cf3b620e/tinybrain-1.4.0-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "052b6a673e7911a5d7cbaeaf821009d22879b0548318ae9d53a89d9bea2fe758",
                "md5": "a60526edc2643c05548b7f6214193d40",
                "sha256": "7dc0d093d94d8bf6e25d9a1637218ba27f31198bb8f233c294be41cbd9f9def0"
            },
            "downloads": -1,
            "filename": "tinybrain-1.4.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a60526edc2643c05548b7f6214193d40",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 576390,
            "upload_time": "2023-06-08T23:55:44",
            "upload_time_iso_8601": "2023-06-08T23:55:44.836327Z",
            "url": "https://files.pythonhosted.org/packages/05/2b/6a673e7911a5d7cbaeaf821009d22879b0548318ae9d53a89d9bea2fe758/tinybrain-1.4.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "41d1300490ebc8afb15fe87ba01e640adc004682d19f82e2b463e1c5ff73c3f3",
                "md5": "c5d8c033dcb7d64f88c8c9b16da77ff3",
                "sha256": "c3d6df77e781dc659c476bee176e4c8fcaf2c5b326dc83943f9d8e08027c4bfa"
            },
            "downloads": -1,
            "filename": "tinybrain-1.4.0-cp38-cp38-macosx_11_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "c5d8c033dcb7d64f88c8c9b16da77ff3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1335194,
            "upload_time": "2023-06-08T23:55:47",
            "upload_time_iso_8601": "2023-06-08T23:55:47.006424Z",
            "url": "https://files.pythonhosted.org/packages/41/d1/300490ebc8afb15fe87ba01e640adc004682d19f82e2b463e1c5ff73c3f3/tinybrain-1.4.0-cp38-cp38-macosx_11_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3a9ffb923218017389f9b7bed7201af298b2fb9496b66cb01abf6e4a0838172b",
                "md5": "f3129d7679cb985f6b9b936c0d166eb7",
                "sha256": "04d608ed75f0cdf848db746c54745f786d6b9701bc58451eb5c07c7e3bc78d9f"
            },
            "downloads": -1,
            "filename": "tinybrain-1.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f3129d7679cb985f6b9b936c0d166eb7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2806079,
            "upload_time": "2023-06-08T23:55:50",
            "upload_time_iso_8601": "2023-06-08T23:55:50.011739Z",
            "url": "https://files.pythonhosted.org/packages/3a/9f/fb923218017389f9b7bed7201af298b2fb9496b66cb01abf6e4a0838172b/tinybrain-1.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2bfef3a3315530f1c9eae033c78cfefc4955d90d57ce275290ca4a640ac459f3",
                "md5": "46aabdf118c2c8a4d8a8334e3819256e",
                "sha256": "1dac36d72385b905e2c495406f839a603e5d12e13396ce3fb683161281579f24"
            },
            "downloads": -1,
            "filename": "tinybrain-1.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "46aabdf118c2c8a4d8a8334e3819256e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2934200,
            "upload_time": "2023-06-08T23:55:53",
            "upload_time_iso_8601": "2023-06-08T23:55:53.120795Z",
            "url": "https://files.pythonhosted.org/packages/2b/fe/f3a3315530f1c9eae033c78cfefc4955d90d57ce275290ca4a640ac459f3/tinybrain-1.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3adb62227ab0a25c41878c58595eefbee881d27523c1a6a89e30b83177003bcd",
                "md5": "d15a6150492c269c7c45f184f66b1241",
                "sha256": "ca2fad90e7f865d3a61a9708b2949990e9078a309ace72ae2b0406fdc969ec85"
            },
            "downloads": -1,
            "filename": "tinybrain-1.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d15a6150492c269c7c45f184f66b1241",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2794613,
            "upload_time": "2023-06-08T23:55:56",
            "upload_time_iso_8601": "2023-06-08T23:55:56.120567Z",
            "url": "https://files.pythonhosted.org/packages/3a/db/62227ab0a25c41878c58595eefbee881d27523c1a6a89e30b83177003bcd/tinybrain-1.4.0-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": "ab125e974d756553637c933cfd5019d1f82337e2cc37b75a4045b3ec6f5ed72c",
                "md5": "b72d978c535f2dabd87e6892551bbc42",
                "sha256": "7c8eef148797fa622c3e3717ee8aaa430c6c0e7fd4b6bb5d0562e10273f8ac39"
            },
            "downloads": -1,
            "filename": "tinybrain-1.4.0-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "b72d978c535f2dabd87e6892551bbc42",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 283452,
            "upload_time": "2023-06-08T23:55:57",
            "upload_time_iso_8601": "2023-06-08T23:55:57.901276Z",
            "url": "https://files.pythonhosted.org/packages/ab/12/5e974d756553637c933cfd5019d1f82337e2cc37b75a4045b3ec6f5ed72c/tinybrain-1.4.0-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4894b59a3daec995b8d44a63f4fcd1b9b234f743b25480b1812a32a17165b19f",
                "md5": "2c9488feb2804956293fb53d3cea3522",
                "sha256": "5709077914ed18d23df1c3c397c0c6a8f55443d39e999722e4583830401d08da"
            },
            "downloads": -1,
            "filename": "tinybrain-1.4.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2c9488feb2804956293fb53d3cea3522",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 337710,
            "upload_time": "2023-06-08T23:55:59",
            "upload_time_iso_8601": "2023-06-08T23:55:59.348164Z",
            "url": "https://files.pythonhosted.org/packages/48/94/b59a3daec995b8d44a63f4fcd1b9b234f743b25480b1812a32a17165b19f/tinybrain-1.4.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "66a165c1dcdabb56071a5b789d241079b943d00f1a106ba612d5a14d691474e6",
                "md5": "d69e1a56b08f783c2f0a5f4f4a3330b3",
                "sha256": "17276c3eea76b1840d63586963fb6e78413e6f0765169a4192243310b9880d12"
            },
            "downloads": -1,
            "filename": "tinybrain-1.4.0-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "d69e1a56b08f783c2f0a5f4f4a3330b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1351139,
            "upload_time": "2023-06-08T23:56:01",
            "upload_time_iso_8601": "2023-06-08T23:56:01.030287Z",
            "url": "https://files.pythonhosted.org/packages/66/a1/65c1dcdabb56071a5b789d241079b943d00f1a106ba612d5a14d691474e6/tinybrain-1.4.0-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "caeb7c23d7b763b86343ab7f777c5c5e7ea97c10e766591fcf3b6e334b6ca2eb",
                "md5": "8f8645961c7d1d2057a1dcd31ea0788d",
                "sha256": "d6952dd7a586a1833a92867e6d7a4a05886ea8fc067b14002bdea40d6b5764dc"
            },
            "downloads": -1,
            "filename": "tinybrain-1.4.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8f8645961c7d1d2057a1dcd31ea0788d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 583203,
            "upload_time": "2023-06-08T23:56:03",
            "upload_time_iso_8601": "2023-06-08T23:56:03.133158Z",
            "url": "https://files.pythonhosted.org/packages/ca/eb/7c23d7b763b86343ab7f777c5c5e7ea97c10e766591fcf3b6e334b6ca2eb/tinybrain-1.4.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b1cf4447e48f5ad91bad0b0ab047ee7ba03d0f5f6f2b0fa2562b4aed9ee4cc80",
                "md5": "4c75c8d0528b75637bdf4a5d8cfe0cf4",
                "sha256": "8033a334039141da16ca63b4b19e7bb98c038f16abf33d9f6d09f5250c226909"
            },
            "downloads": -1,
            "filename": "tinybrain-1.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4c75c8d0528b75637bdf4a5d8cfe0cf4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2731810,
            "upload_time": "2023-06-08T23:56:06",
            "upload_time_iso_8601": "2023-06-08T23:56:06.152771Z",
            "url": "https://files.pythonhosted.org/packages/b1/cf/4447e48f5ad91bad0b0ab047ee7ba03d0f5f6f2b0fa2562b4aed9ee4cc80/tinybrain-1.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1a0bdbf527106852af401e4d31b0acd1b398bc0362a55a6d50ad5c44cf5301e3",
                "md5": "c803376d0a18e9b497be3218ff79010e",
                "sha256": "676ff4514d1229c13038854bfbef912a108835f850b29b9a319157869046b351"
            },
            "downloads": -1,
            "filename": "tinybrain-1.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c803376d0a18e9b497be3218ff79010e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2821864,
            "upload_time": "2023-06-08T23:56:09",
            "upload_time_iso_8601": "2023-06-08T23:56:09.130567Z",
            "url": "https://files.pythonhosted.org/packages/1a/0b/dbf527106852af401e4d31b0acd1b398bc0362a55a6d50ad5c44cf5301e3/tinybrain-1.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "68604db559e2adb78c80eb47aee1c91c016271f4eaf6229dd3e16558952e01bf",
                "md5": "fc77b98b55add589f7ee3b25fd8654e1",
                "sha256": "847d46072fd1758a35f38a149dc68445705b6aa3e97eff26032d0fa3e1998542"
            },
            "downloads": -1,
            "filename": "tinybrain-1.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "fc77b98b55add589f7ee3b25fd8654e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2662507,
            "upload_time": "2023-06-08T23:56:11",
            "upload_time_iso_8601": "2023-06-08T23:56:11.963202Z",
            "url": "https://files.pythonhosted.org/packages/68/60/4db559e2adb78c80eb47aee1c91c016271f4eaf6229dd3e16558952e01bf/tinybrain-1.4.0-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": "fb4159ab7c9a0d095e076be1f77acae1ab037d4f5632d23791385e8f3db57fcf",
                "md5": "c6a10396b5d98cadd1819d83c4ea160c",
                "sha256": "3ab26590567c8b407fab9035aea3604f1d5da6e3a55cc8c255d3c280a69ff1bc"
            },
            "downloads": -1,
            "filename": "tinybrain-1.4.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "c6a10396b5d98cadd1819d83c4ea160c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 280751,
            "upload_time": "2023-06-08T23:56:13",
            "upload_time_iso_8601": "2023-06-08T23:56:13.538996Z",
            "url": "https://files.pythonhosted.org/packages/fb/41/59ab7c9a0d095e076be1f77acae1ab037d4f5632d23791385e8f3db57fcf/tinybrain-1.4.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c1e0afb2e5d919c67010dae4a029598c7dca0d9463276614ea448ae3083db826",
                "md5": "10982ac4180a9dbf6fbf790cd74f4796",
                "sha256": "43be626ffb4b7f715c21a337b6edcac4aea7ba670a48c7a836ef46e79724c23a"
            },
            "downloads": -1,
            "filename": "tinybrain-1.4.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "10982ac4180a9dbf6fbf790cd74f4796",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 333582,
            "upload_time": "2023-06-08T23:56:15",
            "upload_time_iso_8601": "2023-06-08T23:56:15.411477Z",
            "url": "https://files.pythonhosted.org/packages/c1/e0/afb2e5d919c67010dae4a029598c7dca0d9463276614ea448ae3083db826/tinybrain-1.4.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "48d11ff709b7835beb31b5fa6c0cca1cda524027af9c7d6df76355e5140c3f04",
                "md5": "d384aa38fb994c0caf6ec1e901635fe9",
                "sha256": "915380109691ae7747e10152cb8d0b734aef340a6727e4ea241b76639a0ede9a"
            },
            "downloads": -1,
            "filename": "tinybrain-1.4.0.tar.gz",
            "has_sig": false,
            "md5_digest": "d384aa38fb994c0caf6ec1e901635fe9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 42340,
            "upload_time": "2023-06-08T23:56:17",
            "upload_time_iso_8601": "2023-06-08T23:56:17.199044Z",
            "url": "https://files.pythonhosted.org/packages/48/d1/1ff709b7835beb31b5fa6c0cca1cda524027af9c7d6df76355e5140c3f04/tinybrain-1.4.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-06-08 23:56:17",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "seung-lab",
    "github_project": "tinybrain",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "tox": true,
    "lcname": "tinybrain"
}
        
Elapsed time: 0.07346s