pyppbox-torchreid


Namepyppbox-torchreid JSON
Version 1.4.1.0 PyPI version JSON
download
home_pagehttps://github.com/rathaumons/torchreid-for-pyppbox
SummaryCustomized Torchreid for pyppbox: Deep learning person re-identification.
upload_time2025-01-10 20:41:48
maintainerrathaROG
docs_urlNone
authorRatha SIV
requires_python>=3.8
licenseMIT
keywords person re-identification deep learning pyppbox
VCS
bugtrack_url
requirements Cython numpy h5py Pillow six scipy matplotlib tensorboard torch torchvision future yacs gdown yapf isort imageio chardet
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![Test Multi](https://github.com/rathaumons/torchreid-for-pyppbox/actions/workflows/test_multi.yaml/badge.svg)](https://github.com/rathaumons/torchreid-for-pyppbox/actions/workflows/test_multi.yaml) 
[![Test Build Python [3.9-3.13]](https://github.com/rathaumons/torchreid-for-pyppbox/actions/workflows/test_build.yaml/badge.svg)](https://github.com/rathaumons/torchreid-for-pyppbox/actions/workflows/test_build.yaml) 
[![Publish to PyPI](https://github.com/rathaumons/torchreid-for-pyppbox/actions/workflows/publish_pypi.yaml/badge.svg)](https://github.com/rathaumons/torchreid-for-pyppbox/actions/workflows/publish_pypi.yaml)

# Customized Torchreid for pyppbox

`Torchreid` is a library for deep-learning person re-identification using [PyTorch](https://pytorch.org/), and `pyppbox-torchreid` is a customized `Torchreid` for [`pyppbox`](https://github.com/rathaumons/pyppbox) and:
- Ensures that `Cython` natively works on all OS platforms (Windows/Linux/macOS), 
- Enables freedom of passing local model/weight files from anywhere, 
- Disables some models which are not used in [`pyppbox`](https://github.com/rathaumons/pyppbox).

All source credit and more info -> [Original KaiyangZhou's repo](https://github.com/KaiyangZhou/deep-person-reid). 

## 💽 Install

Use the pre-built [wheel in releases](https://github.com/rathaumons/torchreid-for-pyppbox/releases) or install from [PyPI](https://pypi.org/project/pyppbox-torchreid/): 

```
pip install pyppbox-torchreid
```

<details><summary>Other options</summary>

### Install from GitHub repo (Require C++ compiler):

```
pip install git+https://github.com/rathaumons/torchreid-for-pyppbox.git
```

### Build and install (Require C++ compiler):

```
git clone https://github.com/rathaumons/torchreid-for-pyppbox/
cd torchreid-for-pyppbox
python -m pip install --upgrade pip
pip install wheel build
python -m build --sdist
python -m build --wheel
cd dist
```

</details>

## 🔬 Test

Make sure you install `pyppbox-torchred`, [OpenCV](https://github.com/opencv/opencv-python), [PyTorch](https://pytorch.org/) and other [requirements](https://github.com/rathaumons/torchreid-for-pyppbox/blob/main/requirements.txt); for example, with GPU support on Windows:

```
pip install opencv-contrib-python
pip install torch torchvision --index-url https://download.pytorch.org/whl/cu121
pip install pyppbox-torchreid
```

Test Cython `rank_cylib`

```
git clone https://github.com/rathaumons/torchreid-for-pyppbox.git
cd torchreid-for-pyppbox/pyppbox_torchreid/metrics/rank_cylib
python test_cython.py
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/rathaumons/torchreid-for-pyppbox",
    "name": "pyppbox-torchreid",
    "maintainer": "rathaROG",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "Person Re-Identification, Deep Learning, pyppbox",
    "author": "Ratha SIV",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/3f/3c/55fdc3166fc9b85cbf04d00e1c944fffa6dd93809b03fb4181fb3f9698b8/pyppbox_torchreid-1.4.1.0.tar.gz",
    "platform": null,
    "description": "[![Test Multi](https://github.com/rathaumons/torchreid-for-pyppbox/actions/workflows/test_multi.yaml/badge.svg)](https://github.com/rathaumons/torchreid-for-pyppbox/actions/workflows/test_multi.yaml) \n[![Test Build Python [3.9-3.13]](https://github.com/rathaumons/torchreid-for-pyppbox/actions/workflows/test_build.yaml/badge.svg)](https://github.com/rathaumons/torchreid-for-pyppbox/actions/workflows/test_build.yaml) \n[![Publish to PyPI](https://github.com/rathaumons/torchreid-for-pyppbox/actions/workflows/publish_pypi.yaml/badge.svg)](https://github.com/rathaumons/torchreid-for-pyppbox/actions/workflows/publish_pypi.yaml)\n\n# Customized Torchreid for pyppbox\n\n`Torchreid` is a library for deep-learning person re-identification using [PyTorch](https://pytorch.org/), and `pyppbox-torchreid` is a customized `Torchreid` for [`pyppbox`](https://github.com/rathaumons/pyppbox) and:\n- Ensures that `Cython` natively works on all OS platforms (Windows/Linux/macOS), \n- Enables freedom of passing local model/weight files from anywhere, \n- Disables some models which are not used in [`pyppbox`](https://github.com/rathaumons/pyppbox).\n\nAll source credit and more info -> [Original KaiyangZhou's repo](https://github.com/KaiyangZhou/deep-person-reid). \n\n## \ud83d\udcbd Install\n\nUse the pre-built [wheel in releases](https://github.com/rathaumons/torchreid-for-pyppbox/releases) or install from [PyPI](https://pypi.org/project/pyppbox-torchreid/): \n\n```\npip install pyppbox-torchreid\n```\n\n<details><summary>Other options</summary>\n\n### Install from GitHub repo (Require C++ compiler):\n\n```\npip install git+https://github.com/rathaumons/torchreid-for-pyppbox.git\n```\n\n### Build and install (Require C++ compiler):\n\n```\ngit clone https://github.com/rathaumons/torchreid-for-pyppbox/\ncd torchreid-for-pyppbox\npython -m pip install --upgrade pip\npip install wheel build\npython -m build --sdist\npython -m build --wheel\ncd dist\n```\n\n</details>\n\n## \ud83d\udd2c Test\n\nMake sure you install `pyppbox-torchred`, [OpenCV](https://github.com/opencv/opencv-python), [PyTorch](https://pytorch.org/) and other [requirements](https://github.com/rathaumons/torchreid-for-pyppbox/blob/main/requirements.txt); for example, with GPU support on Windows:\n\n```\npip install opencv-contrib-python\npip install torch torchvision --index-url https://download.pytorch.org/whl/cu121\npip install pyppbox-torchreid\n```\n\nTest Cython `rank_cylib`\n\n```\ngit clone https://github.com/rathaumons/torchreid-for-pyppbox.git\ncd torchreid-for-pyppbox/pyppbox_torchreid/metrics/rank_cylib\npython test_cython.py\n```\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Customized Torchreid for pyppbox: Deep learning person re-identification.",
    "version": "1.4.1.0",
    "project_urls": {
        "Homepage": "https://github.com/rathaumons/torchreid-for-pyppbox"
    },
    "split_keywords": [
        "person re-identification",
        " deep learning",
        " pyppbox"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3845e8f3ae483aaee0a27078b499eac5323864e9d40ddc6d5f4a8484ef36c9c4",
                "md5": "edbfaf1e8eed0169cd18ce67219964d3",
                "sha256": "76f8155b1a76ffbf8b03b498ee4eceb761241e4ad3dfd2e3c56de05c11cc5750"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "edbfaf1e8eed0169cd18ce67219964d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 255252,
            "upload_time": "2025-01-10T20:40:26",
            "upload_time_iso_8601": "2025-01-10T20:40:26.865986Z",
            "url": "https://files.pythonhosted.org/packages/38/45/e8f3ae483aaee0a27078b499eac5323864e9d40ddc6d5f4a8484ef36c9c4/pyppbox_torchreid-1.4.1.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "69c9f32490df3a94b20875deb1d85dc6821948f3421dfd30d3e4c73fb92c0050",
                "md5": "9cd249784886334ddda81deda8c95c9d",
                "sha256": "4364f9d7bddadaa2eb91d0f74770916885a3e2411716b40c7a849ad3ee2f0b57"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9cd249784886334ddda81deda8c95c9d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 244910,
            "upload_time": "2025-01-10T20:40:29",
            "upload_time_iso_8601": "2025-01-10T20:40:29.639930Z",
            "url": "https://files.pythonhosted.org/packages/69/c9/f32490df3a94b20875deb1d85dc6821948f3421dfd30d3e4c73fb92c0050/pyppbox_torchreid-1.4.1.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6906d9a14867b1fb5fec462bfa4a01efa408ed2c65227d7fb9d784875e7c6d9e",
                "md5": "929330959a6628b3120f91c25126ab72",
                "sha256": "931053b4535b91ea6e25287826afd4f22eea350469c844d4f51eb12a33597920"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "929330959a6628b3120f91c25126ab72",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 745615,
            "upload_time": "2025-01-10T20:40:32",
            "upload_time_iso_8601": "2025-01-10T20:40:32.149753Z",
            "url": "https://files.pythonhosted.org/packages/69/06/d9a14867b1fb5fec462bfa4a01efa408ed2c65227d7fb9d784875e7c6d9e/pyppbox_torchreid-1.4.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "de267b6f27f2022e8dddf17f25111be114910e15d019463bdef0b4e84d2f697d",
                "md5": "9e50766487a588e8c24c5e413bf5dfb8",
                "sha256": "93fcc1c44083c75ed757697e94b72a87f407c583600fe769807888e8775290f2"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9e50766487a588e8c24c5e413bf5dfb8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 760221,
            "upload_time": "2025-01-10T20:40:33",
            "upload_time_iso_8601": "2025-01-10T20:40:33.729924Z",
            "url": "https://files.pythonhosted.org/packages/de/26/7b6f27f2022e8dddf17f25111be114910e15d019463bdef0b4e84d2f697d/pyppbox_torchreid-1.4.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ed1ce909896d3e6cbb670c5775e20f8c9980f5d7728befdc970fb7d33f08aae9",
                "md5": "d0f231c79eed692f09798b45c09ac017",
                "sha256": "39fd7dd46b2787d73e9ae639387c57388333ff00c889fcfcb341eacc53bc05ed"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d0f231c79eed692f09798b45c09ac017",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 747105,
            "upload_time": "2025-01-10T20:40:36",
            "upload_time_iso_8601": "2025-01-10T20:40:36.391358Z",
            "url": "https://files.pythonhosted.org/packages/ed/1c/e909896d3e6cbb670c5775e20f8c9980f5d7728befdc970fb7d33f08aae9/pyppbox_torchreid-1.4.1.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea6dc9f7a4094749286d11425d073f561be3ae162f1546e029934a60b5b1c650",
                "md5": "6e6341a86ca35e82993e0ea3de71fd97",
                "sha256": "8d0a4df67abc7ce40ecf75353652830ff164a8aed0cc99178a4f5f4114fe59cb"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6e6341a86ca35e82993e0ea3de71fd97",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 772049,
            "upload_time": "2025-01-10T20:40:39",
            "upload_time_iso_8601": "2025-01-10T20:40:39.672747Z",
            "url": "https://files.pythonhosted.org/packages/ea/6d/c9f7a4094749286d11425d073f561be3ae162f1546e029934a60b5b1c650/pyppbox_torchreid-1.4.1.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "40d34c2d324247fff5be8d6e9aad55735341eed5dd309c6b084891c2ad1b408f",
                "md5": "ccd066313fac4e5b75066d23b93e18a3",
                "sha256": "c88f4b3c095625f2f44bbe087658949873cd190a4c2a44d7b05d1320dcf2f3f5"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ccd066313fac4e5b75066d23b93e18a3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 238698,
            "upload_time": "2025-01-10T20:40:42",
            "upload_time_iso_8601": "2025-01-10T20:40:42.260990Z",
            "url": "https://files.pythonhosted.org/packages/40/d3/4c2d324247fff5be8d6e9aad55735341eed5dd309c6b084891c2ad1b408f/pyppbox_torchreid-1.4.1.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2aa2c7a5a5be7a66a0f86abecb005abad27c337dbfdfd26e7c4dd9cba658d2c0",
                "md5": "79b0d8bdfb1825a5e1c1b0cc8d4bae04",
                "sha256": "50c7853fd52bf9ed8b1b55e7596c6ac8c2aa9a21c375322bab4c2af413c662f5"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp310-cp310-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "79b0d8bdfb1825a5e1c1b0cc8d4bae04",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 223608,
            "upload_time": "2025-01-10T20:40:43",
            "upload_time_iso_8601": "2025-01-10T20:40:43.530673Z",
            "url": "https://files.pythonhosted.org/packages/2a/a2/c7a5a5be7a66a0f86abecb005abad27c337dbfdfd26e7c4dd9cba658d2c0/pyppbox_torchreid-1.4.1.0-cp310-cp310-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0da7bc7dc1805c4ee55b3a57ced9b873bdda78b7e639bf41da29dbb7355e7404",
                "md5": "90e5f447e7fd5850c9fe5004ae8f21be",
                "sha256": "d774c6555218baa7fd357bd287e20b585cddd0fea4a21c9f63f63a49cb270d82"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "90e5f447e7fd5850c9fe5004ae8f21be",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 255172,
            "upload_time": "2025-01-10T20:40:45",
            "upload_time_iso_8601": "2025-01-10T20:40:45.985154Z",
            "url": "https://files.pythonhosted.org/packages/0d/a7/bc7dc1805c4ee55b3a57ced9b873bdda78b7e639bf41da29dbb7355e7404/pyppbox_torchreid-1.4.1.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3197c6ce0152f046bdd21bf13a3f0f4fe1e81b011d6686c39acd301b13994c2c",
                "md5": "1e610be617ac1b41e3d51c54d1dba708",
                "sha256": "1c214d0b1f9aecff381e5398c4c8bae3470fcdcb9c49e523e68311ecee99b085"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1e610be617ac1b41e3d51c54d1dba708",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 244827,
            "upload_time": "2025-01-10T20:40:48",
            "upload_time_iso_8601": "2025-01-10T20:40:48.558792Z",
            "url": "https://files.pythonhosted.org/packages/31/97/c6ce0152f046bdd21bf13a3f0f4fe1e81b011d6686c39acd301b13994c2c/pyppbox_torchreid-1.4.1.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "910f566e1e8ff7f7bd35ae9a7b975f9bf13fa73cccfbfbf81d093556ead56a87",
                "md5": "b8e784701a6ff4eaf32d8b0cdc5235c5",
                "sha256": "2b76c893ed2e6e95b5f1ff68b23b2bf863fe241da33ed904f132c05e677a912e"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b8e784701a6ff4eaf32d8b0cdc5235c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 788962,
            "upload_time": "2025-01-10T20:40:49",
            "upload_time_iso_8601": "2025-01-10T20:40:49.895150Z",
            "url": "https://files.pythonhosted.org/packages/91/0f/566e1e8ff7f7bd35ae9a7b975f9bf13fa73cccfbfbf81d093556ead56a87/pyppbox_torchreid-1.4.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "68f54cdcaad1a779557efa4aae7dc14a35b05341001aa02a19ebd097e6afdfbf",
                "md5": "a4cc86f09506b92179cf9abd9ab8121a",
                "sha256": "b1db14b40abc8c022c84e6eb313f017d17e00149bea6977d81efed1bfada6838"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a4cc86f09506b92179cf9abd9ab8121a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 801542,
            "upload_time": "2025-01-10T20:40:52",
            "upload_time_iso_8601": "2025-01-10T20:40:52.395922Z",
            "url": "https://files.pythonhosted.org/packages/68/f5/4cdcaad1a779557efa4aae7dc14a35b05341001aa02a19ebd097e6afdfbf/pyppbox_torchreid-1.4.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8ce7b34bb333703799d1b79ef0ec5a87f64d7c25ef47df00fbbf5700991ea046",
                "md5": "856ea9f86b5f23abd470ea733a58739d",
                "sha256": "9324bbe85bf1e7bfe2060a00430300f84e7e95c9b746196753db41f1f65d8b06"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "856ea9f86b5f23abd470ea733a58739d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 793597,
            "upload_time": "2025-01-10T20:40:54",
            "upload_time_iso_8601": "2025-01-10T20:40:54.913767Z",
            "url": "https://files.pythonhosted.org/packages/8c/e7/b34bb333703799d1b79ef0ec5a87f64d7c25ef47df00fbbf5700991ea046/pyppbox_torchreid-1.4.1.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "321c23c21b12bcc7d434d29f580dc5692af1396ad5fbb37c94bb9e7ba1599ab7",
                "md5": "6314c1816387910bb238a6ed78fd6181",
                "sha256": "8ee80fc84acec8803e3ad1eca43637d032ef71317338b5d0585d8cdf5d1f1aca"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6314c1816387910bb238a6ed78fd6181",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 817399,
            "upload_time": "2025-01-10T20:40:58",
            "upload_time_iso_8601": "2025-01-10T20:40:58.162103Z",
            "url": "https://files.pythonhosted.org/packages/32/1c/23c21b12bcc7d434d29f580dc5692af1396ad5fbb37c94bb9e7ba1599ab7/pyppbox_torchreid-1.4.1.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a8944116155f3be33c72d3c99017f33344add85e0ffb96cc18819966a43dc891",
                "md5": "bc81dccd22a06ad264f2ed19bf567b7b",
                "sha256": "554bca1c29cd537fca807f9b176ef63a2108734f366b3aa4eb3c58c7b0e6b7d4"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bc81dccd22a06ad264f2ed19bf567b7b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 238884,
            "upload_time": "2025-01-10T20:41:00",
            "upload_time_iso_8601": "2025-01-10T20:41:00.580087Z",
            "url": "https://files.pythonhosted.org/packages/a8/94/4116155f3be33c72d3c99017f33344add85e0ffb96cc18819966a43dc891/pyppbox_torchreid-1.4.1.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cc475cb883c9071c10e3e156bcd1d781aa164e179e4ee560329f9d16588be1d3",
                "md5": "9be9d5cdb800020f05f05f088a976a96",
                "sha256": "98a940ce3ef365dabbd58900a3593d1380d6d762d6564c96788559132840df35"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp311-cp311-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "9be9d5cdb800020f05f05f088a976a96",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 223638,
            "upload_time": "2025-01-10T20:41:01",
            "upload_time_iso_8601": "2025-01-10T20:41:01.952051Z",
            "url": "https://files.pythonhosted.org/packages/cc/47/5cb883c9071c10e3e156bcd1d781aa164e179e4ee560329f9d16588be1d3/pyppbox_torchreid-1.4.1.0-cp311-cp311-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e4deacd53dbe79e35c57b650e89af50750f8be7dde10663541cea0345f43f28b",
                "md5": "785612532b53d1b205fed371c1b283bd",
                "sha256": "152095eec4a54a37070d9332230e8b6285eccfb7f81635105cd004b637dbd01b"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "785612532b53d1b205fed371c1b283bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 252463,
            "upload_time": "2025-01-10T20:41:03",
            "upload_time_iso_8601": "2025-01-10T20:41:03.305402Z",
            "url": "https://files.pythonhosted.org/packages/e4/de/acd53dbe79e35c57b650e89af50750f8be7dde10663541cea0345f43f28b/pyppbox_torchreid-1.4.1.0-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c60747aea5d6276980b04ef72a2a1c031d2b969158b3c840bc11148d5dfc3488",
                "md5": "f9a2a237d71dfa1ba7ec6b85eaf93957",
                "sha256": "0d210e8034f450a035abb4883d99194fca62455e31aaaa2715c13d7a12194be9"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f9a2a237d71dfa1ba7ec6b85eaf93957",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 243737,
            "upload_time": "2025-01-10T20:41:05",
            "upload_time_iso_8601": "2025-01-10T20:41:05.655127Z",
            "url": "https://files.pythonhosted.org/packages/c6/07/47aea5d6276980b04ef72a2a1c031d2b969158b3c840bc11148d5dfc3488/pyppbox_torchreid-1.4.1.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bd85489ba548f47ce10056dd04488dd6e9a4353e151bd7c8975c8963562f55d9",
                "md5": "ec551626a1e1d605ff27bbcf5076a35c",
                "sha256": "44dd17ff1336925d4a492d5d5c286db74d01692ec3851c1c88e094d6e1270416"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ec551626a1e1d605ff27bbcf5076a35c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 772930,
            "upload_time": "2025-01-10T20:41:07",
            "upload_time_iso_8601": "2025-01-10T20:41:07.116449Z",
            "url": "https://files.pythonhosted.org/packages/bd/85/489ba548f47ce10056dd04488dd6e9a4353e151bd7c8975c8963562f55d9/pyppbox_torchreid-1.4.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "06389ffc3540c58e36cacac6b6bf9a5e2cd6ea34e95d800c817500f7c4e005d4",
                "md5": "00cda0e13ac50f57745c413afc5b32c0",
                "sha256": "7c3dddfbf4d9ea8272ac5ffadb63db97c2e8be2482ea3ee8b01fd1be9b215fef"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "00cda0e13ac50f57745c413afc5b32c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 783418,
            "upload_time": "2025-01-10T20:41:08",
            "upload_time_iso_8601": "2025-01-10T20:41:08.577628Z",
            "url": "https://files.pythonhosted.org/packages/06/38/9ffc3540c58e36cacac6b6bf9a5e2cd6ea34e95d800c817500f7c4e005d4/pyppbox_torchreid-1.4.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b67f28f1e5b814ae8c0c558e1da252c0014fef8b071b86eb7df183bd684344b5",
                "md5": "54678dc2de785ef033c802ac005cb194",
                "sha256": "db138a6f9525d1e5c84d890422b114819f34efb06abb169b2ccb593f9bf4f382"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "54678dc2de785ef033c802ac005cb194",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 774378,
            "upload_time": "2025-01-10T20:41:12",
            "upload_time_iso_8601": "2025-01-10T20:41:12.848917Z",
            "url": "https://files.pythonhosted.org/packages/b6/7f/28f1e5b814ae8c0c558e1da252c0014fef8b071b86eb7df183bd684344b5/pyppbox_torchreid-1.4.1.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4249c9882cb6a0a5954e5eae3685f5937d23f145f3ad15f4b54fa505e838a074",
                "md5": "1748878743034f0c184a3e75395b1514",
                "sha256": "35e6188ef23f8cf97c33f6e11b01dee168670ac4adab4ed9214516d8686c1a67"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1748878743034f0c184a3e75395b1514",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 808486,
            "upload_time": "2025-01-10T20:41:16",
            "upload_time_iso_8601": "2025-01-10T20:41:16.112256Z",
            "url": "https://files.pythonhosted.org/packages/42/49/c9882cb6a0a5954e5eae3685f5937d23f145f3ad15f4b54fa505e838a074/pyppbox_torchreid-1.4.1.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "94c1d232df43713be2092ea2d0558e36e38a87b159ba51c2d57d517e6401111f",
                "md5": "38ea3cfc2de60e8356e3390b0ab8a5ff",
                "sha256": "020968e421e5c2de1b3658aa32a3393a58741b21111e93df1079153662c10ee5"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "38ea3cfc2de60e8356e3390b0ab8a5ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 236245,
            "upload_time": "2025-01-10T20:41:18",
            "upload_time_iso_8601": "2025-01-10T20:41:18.603956Z",
            "url": "https://files.pythonhosted.org/packages/94/c1/d232df43713be2092ea2d0558e36e38a87b159ba51c2d57d517e6401111f/pyppbox_torchreid-1.4.1.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0e32d709003d50b633ca0d3cee60270eb97ae535df05ee7ebf0ff2149aadfedf",
                "md5": "35fb104d5b0199700997123f083cf633",
                "sha256": "9d5f81892e9c984030a3cd272d21043e0adb645fcc15178c302f8e18c727ac6d"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp312-cp312-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "35fb104d5b0199700997123f083cf633",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 221101,
            "upload_time": "2025-01-10T20:41:20",
            "upload_time_iso_8601": "2025-01-10T20:41:20.261502Z",
            "url": "https://files.pythonhosted.org/packages/0e/32/d709003d50b633ca0d3cee60270eb97ae535df05ee7ebf0ff2149aadfedf/pyppbox_torchreid-1.4.1.0-cp312-cp312-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f64a74be6a55174a8654d5a45000891a042feef79597efdc9bce4767c38ff9ac",
                "md5": "520ee2b12ec28f0a2961d647b844e3a0",
                "sha256": "0851b3c27581c8365128c8c19f8c2a1eb372b31d1a7d83dc6df6adedaa6e51aa"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "520ee2b12ec28f0a2961d647b844e3a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 251017,
            "upload_time": "2025-01-10T20:41:21",
            "upload_time_iso_8601": "2025-01-10T20:41:21.514802Z",
            "url": "https://files.pythonhosted.org/packages/f6/4a/74be6a55174a8654d5a45000891a042feef79597efdc9bce4767c38ff9ac/pyppbox_torchreid-1.4.1.0-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8e1356d7067dcf995dc2fd02de3acce8f1a0f1d0dcaff196eb309572343cbc2c",
                "md5": "35eab9315840e0159d711549e8e4464f",
                "sha256": "e1c3892f94efea18b57f97279549d011468b725abef426c3b57fd115a4f17d4d"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "35eab9315840e0159d711549e8e4464f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 242381,
            "upload_time": "2025-01-10T20:41:22",
            "upload_time_iso_8601": "2025-01-10T20:41:22.825136Z",
            "url": "https://files.pythonhosted.org/packages/8e/13/56d7067dcf995dc2fd02de3acce8f1a0f1d0dcaff196eb309572343cbc2c/pyppbox_torchreid-1.4.1.0-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "790a7e6f1f0df626408030923d5b9036d5e055ec73c630d7b722dcb6ffec0e05",
                "md5": "0d9d090ad350fca1d6b0c80b9892f72a",
                "sha256": "99b6ab16fc27d6e499e7cea29bfd643f90621cf6351975cb49d54e87d24cf8d8"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0d9d090ad350fca1d6b0c80b9892f72a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 765794,
            "upload_time": "2025-01-10T20:41:24",
            "upload_time_iso_8601": "2025-01-10T20:41:24.206704Z",
            "url": "https://files.pythonhosted.org/packages/79/0a/7e6f1f0df626408030923d5b9036d5e055ec73c630d7b722dcb6ffec0e05/pyppbox_torchreid-1.4.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dcab764ba5a11e75b02f34012c7b3a8b8e9749c3cbd08c0a3fc40a5be975deb3",
                "md5": "badd4fb9d1f423448e1e675c558b1144",
                "sha256": "2fe290ea4021c129a3afaac6e5215eee37e78a2da86fd5a7abf2b80425ffe169"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "badd4fb9d1f423448e1e675c558b1144",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 780903,
            "upload_time": "2025-01-10T20:41:25",
            "upload_time_iso_8601": "2025-01-10T20:41:25.747194Z",
            "url": "https://files.pythonhosted.org/packages/dc/ab/764ba5a11e75b02f34012c7b3a8b8e9749c3cbd08c0a3fc40a5be975deb3/pyppbox_torchreid-1.4.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "804676d3c1630ca8985b7e47d49d8d854a5f3a740f23984b092ef63b30c56666",
                "md5": "b62342163b697594707337ccdb925234",
                "sha256": "ad9d9ae72b54aac432de7d42a1036ee07e79a0c83f4f07cdf82596a59d23121d"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b62342163b697594707337ccdb925234",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 772433,
            "upload_time": "2025-01-10T20:41:27",
            "upload_time_iso_8601": "2025-01-10T20:41:27.380678Z",
            "url": "https://files.pythonhosted.org/packages/80/46/76d3c1630ca8985b7e47d49d8d854a5f3a740f23984b092ef63b30c56666/pyppbox_torchreid-1.4.1.0-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a2c84ad108c13fac1e875839fa19b77b71175940844cc291a8bc4bf6237a5ed8",
                "md5": "a862fff339f5128e60712ddb253e64ae",
                "sha256": "3230e2a957914d3d75224546a0a676e78c73c8d6b190f02d375aaf6829ddea74"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a862fff339f5128e60712ddb253e64ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 800914,
            "upload_time": "2025-01-10T20:41:28",
            "upload_time_iso_8601": "2025-01-10T20:41:28.921264Z",
            "url": "https://files.pythonhosted.org/packages/a2/c8/4ad108c13fac1e875839fa19b77b71175940844cc291a8bc4bf6237a5ed8/pyppbox_torchreid-1.4.1.0-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c4e1c30006567d0d72415c02571d0cbcfae1e3d0f60402de6e7230c85cca22d",
                "md5": "9eafed7d837544fcdfc570425c42a7da",
                "sha256": "f9d933b774c561c5cf074414df5468c19ae504bbab38cf8c1acace4da39692c4"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9eafed7d837544fcdfc570425c42a7da",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 236059,
            "upload_time": "2025-01-10T20:41:31",
            "upload_time_iso_8601": "2025-01-10T20:41:31.455648Z",
            "url": "https://files.pythonhosted.org/packages/7c/4e/1c30006567d0d72415c02571d0cbcfae1e3d0f60402de6e7230c85cca22d/pyppbox_torchreid-1.4.1.0-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d261c1840e53b4b4500e03f3a606282a8f726396de790da0237ac777bd52118b",
                "md5": "1d861c9e1402c7743075f93c8d99e21e",
                "sha256": "dff6ed7809c5886d173f5b889eb9aba12f25cf611d7afab1eedf1d97b5ad88db"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp313-cp313-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "1d861c9e1402c7743075f93c8d99e21e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 220979,
            "upload_time": "2025-01-10T20:41:32",
            "upload_time_iso_8601": "2025-01-10T20:41:32.975806Z",
            "url": "https://files.pythonhosted.org/packages/d2/61/c1840e53b4b4500e03f3a606282a8f726396de790da0237ac777bd52118b/pyppbox_torchreid-1.4.1.0-cp313-cp313-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "342e2afd01a8bdc8b7cd06b4391663af6675f57e2bd9ee35c108e86ba65d0edb",
                "md5": "d88bdeb44f25de4d11b540cbdcf35bd1",
                "sha256": "7934bf1ef459ef56870358ea7f8c67d8596a32acb1a3d265a384131af38ea3e4"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d88bdeb44f25de4d11b540cbdcf35bd1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 255721,
            "upload_time": "2025-01-10T20:41:34",
            "upload_time_iso_8601": "2025-01-10T20:41:34.344693Z",
            "url": "https://files.pythonhosted.org/packages/34/2e/2afd01a8bdc8b7cd06b4391663af6675f57e2bd9ee35c108e86ba65d0edb/pyppbox_torchreid-1.4.1.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "404251ffcad60b5c43c4eb0db451f714cc745bcab1d493e672c0ab52aaf87d37",
                "md5": "2eb427937c3b50977045a014847b331b",
                "sha256": "e601819522e33924dd6ef5f553108b665ab23a45faca981a0664b400b16ae734"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2eb427937c3b50977045a014847b331b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 245199,
            "upload_time": "2025-01-10T20:41:35",
            "upload_time_iso_8601": "2025-01-10T20:41:35.619546Z",
            "url": "https://files.pythonhosted.org/packages/40/42/51ffcad60b5c43c4eb0db451f714cc745bcab1d493e672c0ab52aaf87d37/pyppbox_torchreid-1.4.1.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2b9c8baaaae3106fbbc6853193d8780370dda7ab346b369acc775b208334eab2",
                "md5": "ff6754ab98cef69d24963ea12782fae9",
                "sha256": "2373468c1e85f065a92d4d07efba1018034587bba1a0ded980e8361ac390932d"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ff6754ab98cef69d24963ea12782fae9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 746517,
            "upload_time": "2025-01-10T20:41:37",
            "upload_time_iso_8601": "2025-01-10T20:41:37.983091Z",
            "url": "https://files.pythonhosted.org/packages/2b/9c/8baaaae3106fbbc6853193d8780370dda7ab346b369acc775b208334eab2/pyppbox_torchreid-1.4.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6f8335708b77bf3b4812de25199acbe0a7544349e8442ec4b8550d9586979a32",
                "md5": "216091e514f239a994f233f6f8e3b04d",
                "sha256": "8aae2d65706c1d6c35c1445b33c2d880dd5b72f79f4ca10781a257771e74e91a"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "216091e514f239a994f233f6f8e3b04d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 756534,
            "upload_time": "2025-01-10T20:41:39",
            "upload_time_iso_8601": "2025-01-10T20:41:39.655441Z",
            "url": "https://files.pythonhosted.org/packages/6f/83/35708b77bf3b4812de25199acbe0a7544349e8442ec4b8550d9586979a32/pyppbox_torchreid-1.4.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d8d248a8a7a301cfbae8937354162ac45f1f705215b693564041826ba5716d2c",
                "md5": "676779543613c849456207050ae5c13d",
                "sha256": "842e31cad289024e0f70b5bdf1351cacebcbbd16d7ccc77e7e589f962f3ac794"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "676779543613c849456207050ae5c13d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 747978,
            "upload_time": "2025-01-10T20:41:41",
            "upload_time_iso_8601": "2025-01-10T20:41:41.113639Z",
            "url": "https://files.pythonhosted.org/packages/d8/d2/48a8a7a301cfbae8937354162ac45f1f705215b693564041826ba5716d2c/pyppbox_torchreid-1.4.1.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1bbe1c498b2c2a7b3038c38ac4369634d0264b524de556d99a37bc4be309df01",
                "md5": "f5dc1ce49a2d9730a34c347e043439a2",
                "sha256": "bf6dc8999725e4fb1f99b28cee8e2fd7624512939cdcdad3231ae41343d2d8d6"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f5dc1ce49a2d9730a34c347e043439a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 770831,
            "upload_time": "2025-01-10T20:41:42",
            "upload_time_iso_8601": "2025-01-10T20:41:42.604537Z",
            "url": "https://files.pythonhosted.org/packages/1b/be/1c498b2c2a7b3038c38ac4369634d0264b524de556d99a37bc4be309df01/pyppbox_torchreid-1.4.1.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "76e7ed181c12df55957a6e20c79aa3a90765f05c31189b44dd4e61fb2db1a44f",
                "md5": "f01213fe8383a5783a0fef0561e9d488",
                "sha256": "a0886a6d8844ae2ae65bb42b0a421620f8d59014782dfbed852cb6cd8a930828"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f01213fe8383a5783a0fef0561e9d488",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 238746,
            "upload_time": "2025-01-10T20:41:44",
            "upload_time_iso_8601": "2025-01-10T20:41:44.055454Z",
            "url": "https://files.pythonhosted.org/packages/76/e7/ed181c12df55957a6e20c79aa3a90765f05c31189b44dd4e61fb2db1a44f/pyppbox_torchreid-1.4.1.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a1f51709fecafdd64605f83f5ae2605205c653692ecf1ce847feb48d28bf7838",
                "md5": "ae66b7439b5635c225405461d3206744",
                "sha256": "3e62be20de22a11794761cd0298b4ecd1c8ca715f2438a29141b37e9954631a8"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0-cp39-cp39-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "ae66b7439b5635c225405461d3206744",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 223786,
            "upload_time": "2025-01-10T20:41:46",
            "upload_time_iso_8601": "2025-01-10T20:41:46.759431Z",
            "url": "https://files.pythonhosted.org/packages/a1/f5/1709fecafdd64605f83f5ae2605205c653692ecf1ce847feb48d28bf7838/pyppbox_torchreid-1.4.1.0-cp39-cp39-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3f3c55fdc3166fc9b85cbf04d00e1c944fffa6dd93809b03fb4181fb3f9698b8",
                "md5": "fa9e6edc3736738d4c10ab22c6ea4ab3",
                "sha256": "613234d72a69c38fc485a9b57a9fbbae717e996c4464e14435e577faa9a8b6af"
            },
            "downloads": -1,
            "filename": "pyppbox_torchreid-1.4.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "fa9e6edc3736738d4c10ab22c6ea4ab3",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 92602,
            "upload_time": "2025-01-10T20:41:48",
            "upload_time_iso_8601": "2025-01-10T20:41:48.016987Z",
            "url": "https://files.pythonhosted.org/packages/3f/3c/55fdc3166fc9b85cbf04d00e1c944fffa6dd93809b03fb4181fb3f9698b8/pyppbox_torchreid-1.4.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-01-10 20:41:48",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "rathaumons",
    "github_project": "torchreid-for-pyppbox",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "Cython",
            "specs": [
                [
                    ">=",
                    "0.29.32"
                ]
            ]
        },
        {
            "name": "numpy",
            "specs": [
                [
                    ">=",
                    "1.23.5"
                ]
            ]
        },
        {
            "name": "h5py",
            "specs": []
        },
        {
            "name": "Pillow",
            "specs": []
        },
        {
            "name": "six",
            "specs": []
        },
        {
            "name": "scipy",
            "specs": [
                [
                    ">=",
                    "1.10.0"
                ]
            ]
        },
        {
            "name": "matplotlib",
            "specs": []
        },
        {
            "name": "tensorboard",
            "specs": []
        },
        {
            "name": "torch",
            "specs": []
        },
        {
            "name": "torchvision",
            "specs": []
        },
        {
            "name": "future",
            "specs": []
        },
        {
            "name": "yacs",
            "specs": []
        },
        {
            "name": "gdown",
            "specs": []
        },
        {
            "name": "yapf",
            "specs": []
        },
        {
            "name": "isort",
            "specs": []
        },
        {
            "name": "imageio",
            "specs": []
        },
        {
            "name": "chardet",
            "specs": []
        }
    ],
    "lcname": "pyppbox-torchreid"
}
        
Elapsed time: 0.57662s