mindspore


Namemindspore JSON
Version 2.2.14 PyPI version JSON
download
home_pagehttps://www.mindspore.cn
SummaryMindSpore is a new open source deep learning training/inference framework that could be used for mobile, edge and cloud scenarios.
upload_time2024-04-25 03:51:11
maintainerNone
docs_urlNone
authorThe MindSpore Authors
requires_python>=3.7
licenseApache 2.0
keywords mindspore machine learning
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ![MindSpore Logo](https://gitee.com/mindspore/mindspore/raw/master/docs/MindSpore-logo.png "MindSpore logo")

[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/mindspore.svg)](https://pypi.org/project/mindspore)
[![PyPI](https://badge.fury.io/py/mindspore.svg)](https://badge.fury.io/py/mindspore)
[![Downloads](https://static.pepy.tech/badge/mindspore)](https://pepy.tech/project/mindspore)
[![DockerHub](https://img.shields.io/docker/pulls/mindspore/mindspore-cpu.svg)](https://hub.docker.com/r/mindspore/mindspore-cpu)
[![LICENSE](https://img.shields.io/github/license/mindspore-ai/mindspore.svg?style=flat-square)](https://github.com/mindspore-ai/mindspore/blob/master/LICENSE)
[![Slack](https://img.shields.io/badge/slack-chat-green.svg?logo=slack)](https://join.slack.com/t/mindspore/shared_invite/zt-dgk65rli-3ex4xvS4wHX7UDmsQmfu8w)
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](https://gitee.com/mindspore/mindspore/pulls)

[查看中文](./README_CN.md)

<!-- TOC -->

- [What Is MindSpore](#what-is-mindspore)
    - [Automatic Differentiation](#automatic-differentiation)
    - [Automatic Parallel](#automatic-parallel)
- [Installation](#installation)
    - [Pip mode method installation](#pip-mode-method-installation)
    - [Source code compilation installation](#source-code-compilation-installation)
    - [Docker Image](#docker-image)
- [Quickstart](#quickstart)
- [Docs](#docs)
- [Community](#community)
    - [Governance](#governance)
    - [Communication](#communication)
- [Contributing](#contributing)
- [Maintenance phases](#maintenance-phases)
- [Maintenance status](#maintenance-status)
- [Release Notes](#release-notes)
- [License](#license)

<!-- /TOC -->

## What Is MindSpore

MindSpore is a new open source deep learning training/inference framework that
could be used for mobile, edge and cloud scenarios. MindSpore is designed to
provide development experience with friendly design and efficient execution for
the data scientists and algorithmic engineers, native support for Ascend AI
processor, and software hardware co-optimization. At the meantime MindSpore as
a global AI open source community, aims to further advance the development and
enrichment of the AI software/hardware application ecosystem.

<img src="https://gitee.com/mindspore/mindspore/raw/master/docs/MindSpore-architecture.png" alt="MindSpore Architecture"/>

For more details please check out our [Architecture Guide](https://www.mindspore.cn/tutorials/en/master/beginner/introduction.html).

### Automatic Differentiation

Currently, there are two automatic differentiation techniques in mainstream deep learning frameworks:

- **Operator Overloading (OO)**: Overloading the basic operators of the programming language to encapsulate their gradient rules. Record the operation trajectory of the network during forward execution in an operator overloaded manner, then apply the chain rule to the dynamically generated data flow graph to implement automatic differentiation.
- **Source Transformation (ST)**: This technology is evolving from the functional programming framework and performs automatic differential transformation on the intermediate expression (the expression form of the program during the compilation process) in the form of just-in-time compilation (JIT), supporting complex control flow scenarios, higher-order functions and closures.

PyTorch used OO. Compared to ST, OO generates gradient graph in runtime, so it does not need to take function call and control flow into consideration, which makes it easier to develop. However, OO can not perform gradient graph optimization in compilation time and the control flow has to be unfolded in runtime, so it is difficult to achieve extreme optimization in performance.

MindSpore implemented automatic differentiation based on ST. On the one hand, it supports automatic differentiation of automatic control flow, so it is quite convenient to build models like PyTorch. On the other hand, MindSpore can perform static compilation optimization on neural networks to achieve great performance.

<img src="https://gitee.com/mindspore/mindspore/raw/master/docs/Automatic-differentiation.png" alt="Automatic Differentiation" width="600"/>

The implementation of MindSpore automatic differentiation can be understood as the symbolic differentiation of the program itself. Because MindSpore IR is a functional intermediate expression, it has an intuitive correspondence with the composite function in basic algebra. The derivation formula of the composite function composed of arbitrary basic functions can be derived. Each primitive operation in MindSpore IR can correspond to the basic functions in basic algebra, which can build more complex flow control.

### Automatic Parallel

The goal of MindSpore automatic parallel is to build a training method that combines data parallelism, model parallelism, and hybrid parallelism. It can automatically select a least cost model splitting strategy to achieve automatic distributed parallel training.

<img src="https://gitee.com/mindspore/mindspore/raw/master/docs/Automatic-parallel.png" alt="Automatic Parallel" width="600"/>

At present, MindSpore uses a fine-grained parallel strategy of splitting operators, that is, each operator in the figure is split into a cluster to complete parallel operations. The splitting strategy during this period may be very complicated, but as a developer advocating Pythonic, you don't need to care about the underlying implementation, as long as the top-level API compute is efficient.

## Installation

### Pip mode method installation

MindSpore offers build options across multiple backends:

| Hardware Platform | Operating System | Status |
| :---------------- | :--------------- | :----- |
| Ascend910 | Ubuntu-x86 | ✔️ |
|  | Ubuntu-aarch64 | ✔️ |
|  | EulerOS-aarch64 | ✔️ |
|  | CentOS-x86 | ✔️ |
|  | CentOS-aarch64 | ✔️ |
| GPU CUDA 10.1 | Ubuntu-x86 | ✔️ |
| CPU | Ubuntu-x86 | ✔️ |
|  | Ubuntu-aarch64 | ✔️ |
|  | Windows-x86 | ✔️ |

For installation using `pip`, take `CPU` and `Ubuntu-x86` build version as an example:

1. Download whl from [MindSpore download page](https://www.mindspore.cn/versions/en), and install the package.

    ```bash
    pip install https://ms-release.obs.cn-north-4.myhuaweicloud.com/1.2.0-rc1/MindSpore/cpu/ubuntu_x86/mindspore-1.2.0rc1-cp37-cp37m-linux_x86_64.whl
    ```

2. Run the following command to verify the install.

    ```python
    import numpy as np
    import mindspore.context as context
    import mindspore.nn as nn
    from mindspore import Tensor
    from mindspore.ops import operations as P

    context.set_context(mode=context.GRAPH_MODE, device_target="CPU")

    class Mul(nn.Cell):
        def __init__(self):
            super(Mul, self).__init__()
            self.mul = P.Mul()

        def construct(self, x, y):
            return self.mul(x, y)

    x = Tensor(np.array([1.0, 2.0, 3.0]).astype(np.float32))
    y = Tensor(np.array([4.0, 5.0, 6.0]).astype(np.float32))

    mul = Mul()
    print(mul(x, y))
    ```

    ```text
    [ 4. 10. 18.]
    ```

Use pip mode method to install MindSpore in different environments. Refer to the following documents.

- [Using pip mode method to install MindSpore in Ascend environment](https://gitee.com/mindspore/docs/blob/master/install/mindspore_ascend_install_pip_en.md)
- [Using pip mode method to install MindSpore in GPU environment](https://gitee.com/mindspore/docs/blob/master/install/mindspore_gpu_install_pip_en.md)
- [Using pip mode method to install MindSpore in CPU environment](https://gitee.com/mindspore/docs/blob/master/install/mindspore_cpu_install_pip_en.md)

### Source code compilation installation

Use the source code compilation method to install MindSpore in different environments. Refer to the following documents.

- [Using the source code compilation method to install MindSpore in Ascend environment](https://gitee.com/mindspore/docs/blob/master/install/mindspore_ascend_install_source_en.md)
- [Using the source code compilation method to install MindSpore in GPU environment](https://gitee.com/mindspore/docs/blob/master/install/mindspore_gpu_install_source_en.md)
- [Using the source code compilation method to install MindSpore in CPU environment](https://gitee.com/mindspore/docs/blob/master/install/mindspore_cpu_install_source_en.md)

### Docker Image

MindSpore docker image is hosted on [Docker Hub](https://hub.docker.com/r/mindspore),
currently the containerized build options are supported as follows:

| Hardware Platform | Docker Image Repository | Tag | Description |
| :---------------- | :---------------------- | :-- | :---------- |
| CPU | `mindspore/mindspore-cpu` | `x.y.z` | Production environment with pre-installed MindSpore `x.y.z` CPU release. |
|  |  | `devel` | Development environment provided to build MindSpore (with `CPU` backend) from the source, refer to <https://www.mindspore.cn/install/en> for installation details. |
|  |  | `runtime` | Runtime environment provided to install MindSpore binary package with `CPU` backend. |
| GPU | `mindspore/mindspore-gpu` | `x.y.z` | Production environment with pre-installed MindSpore `x.y.z` GPU release. |
|  |  | `devel` | Development environment provided to build MindSpore (with `GPU CUDA10.1` backend) from the source, refer to <https://www.mindspore.cn/install/en> for installation details. |
|  |  | `runtime` | Runtime environment provided to install MindSpore binary package with `GPU CUDA10.1` backend. |

> **NOTICE:** For GPU `devel` docker image, it's NOT suggested to directly install the whl package after building from the source, instead we strongly RECOMMEND you transfer and install the whl package inside GPU `runtime` docker image.

- CPU

    For `CPU` backend, you can directly pull and run the latest stable image using the below command:

    ```bash
    docker pull mindspore/mindspore-cpu:1.1.0
    docker run -it mindspore/mindspore-cpu:1.1.0 /bin/bash
    ```

- GPU

    For `GPU` backend, please make sure the `nvidia-container-toolkit` has been installed in advance, here are some install guidelines for `Ubuntu` users:

    ```bash
    DISTRIBUTION=$(. /etc/os-release; echo $ID$VERSION_ID)
    curl -s -L https://nvidia.github.io/nvidia-docker/gpgkey | apt-key add -
    curl -s -L https://nvidia.github.io/nvidia-docker/$DISTRIBUTION/nvidia-docker.list | tee /etc/apt/sources.list.d/nvidia-docker.list

    sudo apt-get update && sudo apt-get install -y nvidia-container-toolkit nvidia-docker2
    sudo systemctl restart docker
    ```

    Then edit the file daemon.json:

    ```bash
    $ vim /etc/docker/daemon.json
    {
        "runtimes": {
            "nvidia": {
                "path": "nvidia-container-runtime",
                "runtimeArgs": []
            }
        }
    }
    ```

    Restart docker again:

    ```bash
    sudo systemctl daemon-reload
    sudo systemctl restart docker
    ```

    Then you can pull and run the latest stable image using the below command:

    ```bash
    docker pull mindspore/mindspore-gpu:1.1.0
    docker run -it -v /dev/shm:/dev/shm --runtime=nvidia --privileged=true mindspore/mindspore-gpu:1.1.0 /bin/bash
    ```

    To test if the docker image works, please execute the python code below and check the output:

    ```python
    import numpy as np
    import mindspore.context as context
    from mindspore import Tensor
    from mindspore.ops import functional as F

    context.set_context(mode=context.PYNATIVE_MODE, device_target="GPU")

    x = Tensor(np.ones([1,3,3,4]).astype(np.float32))
    y = Tensor(np.ones([1,3,3,4]).astype(np.float32))
    print(F.tensor_add(x, y))
    ```

    ```text
    [[[ 2.  2.  2.  2.],
    [ 2.  2.  2.  2.],
    [ 2.  2.  2.  2.]],

    [[ 2.  2.  2.  2.],
    [ 2.  2.  2.  2.],
    [ 2.  2.  2.  2.]],

    [[ 2.  2.  2.  2.],
    [ 2.  2.  2.  2.],
    [ 2.  2.  2.  2.]]]
    ```

If you want to learn more about the building process of MindSpore docker images,
please check out [docker](https://gitee.com/mindspore/mindspore/blob/master/scripts/docker/README.md) repo for the details.

## Quickstart

See the [Quick Start](https://www.mindspore.cn/tutorials/en/master/beginner/quick_start.html)
to implement the image classification.

## Docs

More details about installation guide, tutorials and APIs, please see the
[User Documentation](https://gitee.com/mindspore/docs).

## Community

### Governance

Check out how MindSpore Open Governance [works](https://gitee.com/mindspore/community/blob/master/governance.md).

### Communication

- [MindSpore Slack](https://join.slack.com/t/mindspore/shared_invite/zt-dgk65rli-3ex4xvS4wHX7UDmsQmfu8w) - Communication platform for developers.
- IRC channel at `#mindspore` (only for meeting minutes logging purpose)
- Video Conferencing: TBD
- Mailing-list: <https://mailweb.mindspore.cn/postorius/lists>

## Contributing

Welcome contributions. See our [Contributor Wiki](https://gitee.com/mindspore/mindspore/blob/master/CONTRIBUTING.md) for
more details.

## Maintenance phases

Project stable branches will be in one of the following states:

| **State**       | **Time frame**    | **Summary**                                          |
|-------------|---------------|--------------------------------------------------|
| Planning    | 1 - 3 months  | Features are under planning.                     |
| Development | 3 months      | Features are under development.                  |
| Maintained  | 6 - 12 months | All bugfixes are appropriate. Releases produced. |
| Unmaintained| 0 - 3 months  | All bugfixes are appropriate. No Maintainers and No Releases produced.                                                 |
| End Of Life (EOL) |  N/A |  Branch no longer accepting changes.    |

## Maintenance status

| **Branch** | **Status**   | **Initial Release Date** | **Next Phase**                         | **EOL Date**|
|------------|--------------|--------------------------|----------------------------------------|-------------|
| **r2.2**   | Maintained   | 2023-10-18               | Unmaintained <br> 2024-10-18 estimated |             |
| **r2.1**   | Maintained   | 2023-07-29               | Unmaintained <br> 2024-07-29 estimated |             |
| **r2.0**   | Maintained   | 2023-06-15               | Unmaintained <br> 2024-06-15 estimated |             |
| **r1.10**  | Maintained   | 2023-02-02               | Unmaintained <br> 2024-02-02 estimated |             |
| **r1.9**   | End Of Life  | 2022-10-26               |                                        | 2023-10-26  |
| **r1.8**   | End Of Life  | 2022-07-29               |                                        | 2023-07-29  |
| **r1.7**   | End Of Life  | 2022-04-29               |                                        | 2023-04-29  |
| **r1.6**   | End Of Life  | 2022-01-29               |                                        | 2023-01-29  |
| **r1.5**   | End Of Life  | 2021-10-15               |                                        | 2022-10-15  |
| **r1.4**   | End Of Life  | 2021-08-15               |                                        | 2022-08-15  |
| **r1.3**   | End Of Life  | 2021-07-15               |                                        | 2022-07-15  |
| **r1.2**   | End Of Life  | 2021-04-15               |                                        | 2022-04-29  |
| **r1.1**   | End Of Life  | 2020-12-31               |                                        | 2021-09-30  |
| **r1.0**   | End Of Life  | 2020-09-24               |                                        | 2021-07-30  |
| **r0.7**   | End Of Life  | 2020-08-31               |                                        | 2021-02-28  |
| **r0.6**   | End Of Life  | 2020-07-31               |                                        | 2020-12-30  |
| **r0.5**   | End Of Life  | 2020-06-30               |                                        | 2021-06-30  |
| **r0.3**   | End Of Life  | 2020-05-31               |                                        | 2020-09-30  |
| **r0.2**   | End Of Life  | 2020-04-30               |                                        | 2020-08-31  |
| **r0.1**   | End Of Life  | 2020-03-28               |                                        | 2020-06-30  |

## Release Notes

The release notes, see our [RELEASE](https://gitee.com/mindspore/mindspore/blob/master/RELEASE.md).

## License

[Apache License 2.0](https://gitee.com/mindspore/mindspore/blob/master/LICENSE)



            

Raw data

            {
    "_id": null,
    "home_page": "https://www.mindspore.cn",
    "name": "mindspore",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "mindspore machine learning",
    "author": "The MindSpore Authors",
    "author_email": "contact@mindspore.cn",
    "download_url": "https://github.com/mindspore-ai/mindspore/tags",
    "platform": null,
    "description": "![MindSpore Logo](https://gitee.com/mindspore/mindspore/raw/master/docs/MindSpore-logo.png \"MindSpore logo\")\n\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/mindspore.svg)](https://pypi.org/project/mindspore)\n[![PyPI](https://badge.fury.io/py/mindspore.svg)](https://badge.fury.io/py/mindspore)\n[![Downloads](https://static.pepy.tech/badge/mindspore)](https://pepy.tech/project/mindspore)\n[![DockerHub](https://img.shields.io/docker/pulls/mindspore/mindspore-cpu.svg)](https://hub.docker.com/r/mindspore/mindspore-cpu)\n[![LICENSE](https://img.shields.io/github/license/mindspore-ai/mindspore.svg?style=flat-square)](https://github.com/mindspore-ai/mindspore/blob/master/LICENSE)\n[![Slack](https://img.shields.io/badge/slack-chat-green.svg?logo=slack)](https://join.slack.com/t/mindspore/shared_invite/zt-dgk65rli-3ex4xvS4wHX7UDmsQmfu8w)\n[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](https://gitee.com/mindspore/mindspore/pulls)\n\n[\u67e5\u770b\u4e2d\u6587](./README_CN.md)\n\n<!-- TOC -->\n\n- [What Is MindSpore](#what-is-mindspore)\n    - [Automatic Differentiation](#automatic-differentiation)\n    - [Automatic Parallel](#automatic-parallel)\n- [Installation](#installation)\n    - [Pip mode method installation](#pip-mode-method-installation)\n    - [Source code compilation installation](#source-code-compilation-installation)\n    - [Docker Image](#docker-image)\n- [Quickstart](#quickstart)\n- [Docs](#docs)\n- [Community](#community)\n    - [Governance](#governance)\n    - [Communication](#communication)\n- [Contributing](#contributing)\n- [Maintenance phases](#maintenance-phases)\n- [Maintenance status](#maintenance-status)\n- [Release Notes](#release-notes)\n- [License](#license)\n\n<!-- /TOC -->\n\n## What Is MindSpore\n\nMindSpore is a new open source deep learning training/inference framework that\ncould be used for mobile, edge and cloud scenarios. MindSpore is designed to\nprovide development experience with friendly design and efficient execution for\nthe data scientists and algorithmic engineers, native support for Ascend AI\nprocessor, and software hardware co-optimization. At the meantime MindSpore as\na global AI open source community, aims to further advance the development and\nenrichment of the AI software/hardware application ecosystem.\n\n<img src=\"https://gitee.com/mindspore/mindspore/raw/master/docs/MindSpore-architecture.png\" alt=\"MindSpore Architecture\"/>\n\nFor more details please check out our [Architecture Guide](https://www.mindspore.cn/tutorials/en/master/beginner/introduction.html).\n\n### Automatic Differentiation\n\nCurrently, there are two automatic differentiation techniques in mainstream deep learning frameworks:\n\n- **Operator Overloading (OO)**: Overloading the basic operators of the programming language to encapsulate their gradient rules. Record the operation trajectory of the network during forward execution in an operator overloaded manner, then apply the chain rule to the dynamically generated data flow graph to implement automatic differentiation.\n- **Source Transformation (ST)**: This technology is evolving from the functional programming framework and performs automatic differential transformation on the intermediate expression (the expression form of the program during the compilation process) in the form of just-in-time compilation (JIT), supporting complex control flow scenarios, higher-order functions and closures.\n\nPyTorch used OO. Compared to ST, OO generates gradient graph in runtime, so it does not need to take function call and control flow into consideration, which makes it easier to develop. However, OO can not perform gradient graph optimization in compilation time and the control flow has to be unfolded in runtime, so it is difficult to achieve extreme optimization in performance.\n\nMindSpore implemented automatic differentiation based on ST. On the one hand, it supports automatic differentiation of automatic control flow, so it is quite convenient to build models like PyTorch. On the other hand, MindSpore can perform static compilation optimization on neural networks to achieve great performance.\n\n<img src=\"https://gitee.com/mindspore/mindspore/raw/master/docs/Automatic-differentiation.png\" alt=\"Automatic Differentiation\" width=\"600\"/>\n\nThe implementation of MindSpore automatic differentiation can be understood as the symbolic differentiation of the program itself. Because MindSpore IR is a functional intermediate expression, it has an intuitive correspondence with the composite function in basic algebra. The derivation formula of the composite function composed of arbitrary basic functions can be derived. Each primitive operation in MindSpore IR can correspond to the basic functions in basic algebra, which can build more complex flow control.\n\n### Automatic Parallel\n\nThe goal of MindSpore automatic parallel is to build a training method that combines data parallelism, model parallelism, and hybrid parallelism. It can automatically select a least cost model splitting strategy to achieve automatic distributed parallel training.\n\n<img src=\"https://gitee.com/mindspore/mindspore/raw/master/docs/Automatic-parallel.png\" alt=\"Automatic Parallel\" width=\"600\"/>\n\nAt present, MindSpore uses a fine-grained parallel strategy of splitting operators, that is, each operator in the figure is split into a cluster to complete parallel operations. The splitting strategy during this period may be very complicated, but as a developer advocating Pythonic, you don't need to care about the underlying implementation, as long as the top-level API compute is efficient.\n\n## Installation\n\n### Pip mode method installation\n\nMindSpore offers build options across multiple backends:\n\n| Hardware Platform | Operating System | Status |\n| :---------------- | :--------------- | :----- |\n| Ascend910 | Ubuntu-x86 | \u2714\ufe0f |\n|  | Ubuntu-aarch64 | \u2714\ufe0f |\n|  | EulerOS-aarch64 | \u2714\ufe0f |\n|  | CentOS-x86 | \u2714\ufe0f |\n|  | CentOS-aarch64 | \u2714\ufe0f |\n| GPU CUDA 10.1 | Ubuntu-x86 | \u2714\ufe0f |\n| CPU | Ubuntu-x86 | \u2714\ufe0f |\n|  | Ubuntu-aarch64 | \u2714\ufe0f |\n|  | Windows-x86 | \u2714\ufe0f |\n\nFor installation using `pip`, take `CPU` and `Ubuntu-x86` build version as an example:\n\n1. Download whl from [MindSpore download page](https://www.mindspore.cn/versions/en), and install the package.\n\n    ```bash\n    pip install https://ms-release.obs.cn-north-4.myhuaweicloud.com/1.2.0-rc1/MindSpore/cpu/ubuntu_x86/mindspore-1.2.0rc1-cp37-cp37m-linux_x86_64.whl\n    ```\n\n2. Run the following command to verify the install.\n\n    ```python\n    import numpy as np\n    import mindspore.context as context\n    import mindspore.nn as nn\n    from mindspore import Tensor\n    from mindspore.ops import operations as P\n\n    context.set_context(mode=context.GRAPH_MODE, device_target=\"CPU\")\n\n    class Mul(nn.Cell):\n        def __init__(self):\n            super(Mul, self).__init__()\n            self.mul = P.Mul()\n\n        def construct(self, x, y):\n            return self.mul(x, y)\n\n    x = Tensor(np.array([1.0, 2.0, 3.0]).astype(np.float32))\n    y = Tensor(np.array([4.0, 5.0, 6.0]).astype(np.float32))\n\n    mul = Mul()\n    print(mul(x, y))\n    ```\n\n    ```text\n    [ 4. 10. 18.]\n    ```\n\nUse pip mode method to install MindSpore in different environments. Refer to the following documents.\n\n- [Using pip mode method to install MindSpore in Ascend environment](https://gitee.com/mindspore/docs/blob/master/install/mindspore_ascend_install_pip_en.md)\n- [Using pip mode method to install MindSpore in GPU environment](https://gitee.com/mindspore/docs/blob/master/install/mindspore_gpu_install_pip_en.md)\n- [Using pip mode method to install MindSpore in CPU environment](https://gitee.com/mindspore/docs/blob/master/install/mindspore_cpu_install_pip_en.md)\n\n### Source code compilation installation\n\nUse the source code compilation method to install MindSpore in different environments. Refer to the following documents.\n\n- [Using the source code compilation method to install MindSpore in Ascend environment](https://gitee.com/mindspore/docs/blob/master/install/mindspore_ascend_install_source_en.md)\n- [Using the source code compilation method to install MindSpore in GPU environment](https://gitee.com/mindspore/docs/blob/master/install/mindspore_gpu_install_source_en.md)\n- [Using the source code compilation method to install MindSpore in CPU environment](https://gitee.com/mindspore/docs/blob/master/install/mindspore_cpu_install_source_en.md)\n\n### Docker Image\n\nMindSpore docker image is hosted on [Docker Hub](https://hub.docker.com/r/mindspore),\ncurrently the containerized build options are supported as follows:\n\n| Hardware Platform | Docker Image Repository | Tag | Description |\n| :---------------- | :---------------------- | :-- | :---------- |\n| CPU | `mindspore/mindspore-cpu` | `x.y.z` | Production environment with pre-installed MindSpore `x.y.z` CPU release. |\n|  |  | `devel` | Development environment provided to build MindSpore (with `CPU` backend) from the source, refer to <https://www.mindspore.cn/install/en> for installation details. |\n|  |  | `runtime` | Runtime environment provided to install MindSpore binary package with `CPU` backend. |\n| GPU | `mindspore/mindspore-gpu` | `x.y.z` | Production environment with pre-installed MindSpore `x.y.z` GPU release. |\n|  |  | `devel` | Development environment provided to build MindSpore (with `GPU CUDA10.1` backend) from the source, refer to <https://www.mindspore.cn/install/en> for installation details. |\n|  |  | `runtime` | Runtime environment provided to install MindSpore binary package with `GPU CUDA10.1` backend. |\n\n> **NOTICE:** For GPU `devel` docker image, it's NOT suggested to directly install the whl package after building from the source, instead we strongly RECOMMEND you transfer and install the whl package inside GPU `runtime` docker image.\n\n- CPU\n\n    For `CPU` backend, you can directly pull and run the latest stable image using the below command:\n\n    ```bash\n    docker pull mindspore/mindspore-cpu:1.1.0\n    docker run -it mindspore/mindspore-cpu:1.1.0 /bin/bash\n    ```\n\n- GPU\n\n    For `GPU` backend, please make sure the `nvidia-container-toolkit` has been installed in advance, here are some install guidelines for `Ubuntu` users:\n\n    ```bash\n    DISTRIBUTION=$(. /etc/os-release; echo $ID$VERSION_ID)\n    curl -s -L https://nvidia.github.io/nvidia-docker/gpgkey | apt-key add -\n    curl -s -L https://nvidia.github.io/nvidia-docker/$DISTRIBUTION/nvidia-docker.list | tee /etc/apt/sources.list.d/nvidia-docker.list\n\n    sudo apt-get update && sudo apt-get install -y nvidia-container-toolkit nvidia-docker2\n    sudo systemctl restart docker\n    ```\n\n    Then edit the file daemon.json:\n\n    ```bash\n    $ vim /etc/docker/daemon.json\n    {\n        \"runtimes\": {\n            \"nvidia\": {\n                \"path\": \"nvidia-container-runtime\",\n                \"runtimeArgs\": []\n            }\n        }\n    }\n    ```\n\n    Restart docker again:\n\n    ```bash\n    sudo systemctl daemon-reload\n    sudo systemctl restart docker\n    ```\n\n    Then you can pull and run the latest stable image using the below command:\n\n    ```bash\n    docker pull mindspore/mindspore-gpu:1.1.0\n    docker run -it -v /dev/shm:/dev/shm --runtime=nvidia --privileged=true mindspore/mindspore-gpu:1.1.0 /bin/bash\n    ```\n\n    To test if the docker image works, please execute the python code below and check the output:\n\n    ```python\n    import numpy as np\n    import mindspore.context as context\n    from mindspore import Tensor\n    from mindspore.ops import functional as F\n\n    context.set_context(mode=context.PYNATIVE_MODE, device_target=\"GPU\")\n\n    x = Tensor(np.ones([1,3,3,4]).astype(np.float32))\n    y = Tensor(np.ones([1,3,3,4]).astype(np.float32))\n    print(F.tensor_add(x, y))\n    ```\n\n    ```text\n    [[[ 2.  2.  2.  2.],\n    [ 2.  2.  2.  2.],\n    [ 2.  2.  2.  2.]],\n\n    [[ 2.  2.  2.  2.],\n    [ 2.  2.  2.  2.],\n    [ 2.  2.  2.  2.]],\n\n    [[ 2.  2.  2.  2.],\n    [ 2.  2.  2.  2.],\n    [ 2.  2.  2.  2.]]]\n    ```\n\nIf you want to learn more about the building process of MindSpore docker images,\nplease check out [docker](https://gitee.com/mindspore/mindspore/blob/master/scripts/docker/README.md) repo for the details.\n\n## Quickstart\n\nSee the [Quick Start](https://www.mindspore.cn/tutorials/en/master/beginner/quick_start.html)\nto implement the image classification.\n\n## Docs\n\nMore details about installation guide, tutorials and APIs, please see the\n[User Documentation](https://gitee.com/mindspore/docs).\n\n## Community\n\n### Governance\n\nCheck out how MindSpore Open Governance [works](https://gitee.com/mindspore/community/blob/master/governance.md).\n\n### Communication\n\n- [MindSpore Slack](https://join.slack.com/t/mindspore/shared_invite/zt-dgk65rli-3ex4xvS4wHX7UDmsQmfu8w) - Communication platform for developers.\n- IRC channel at `#mindspore` (only for meeting minutes logging purpose)\n- Video Conferencing: TBD\n- Mailing-list: <https://mailweb.mindspore.cn/postorius/lists>\n\n## Contributing\n\nWelcome contributions. See our [Contributor Wiki](https://gitee.com/mindspore/mindspore/blob/master/CONTRIBUTING.md) for\nmore details.\n\n## Maintenance phases\n\nProject stable branches will be in one of the following states:\n\n| **State**       | **Time frame**    | **Summary**                                          |\n|-------------|---------------|--------------------------------------------------|\n| Planning    | 1 - 3 months  | Features are under planning.                     |\n| Development | 3 months      | Features are under development.                  |\n| Maintained  | 6 - 12 months | All bugfixes are appropriate. Releases produced. |\n| Unmaintained| 0 - 3 months  | All bugfixes are appropriate. No Maintainers and No Releases produced.                                                 |\n| End Of Life (EOL) |  N/A |  Branch no longer accepting changes.    |\n\n## Maintenance status\n\n| **Branch** | **Status**   | **Initial Release Date** | **Next Phase**                         | **EOL Date**|\n|------------|--------------|--------------------------|----------------------------------------|-------------|\n| **r2.2**   | Maintained   | 2023-10-18               | Unmaintained <br> 2024-10-18 estimated |             |\n| **r2.1**   | Maintained   | 2023-07-29               | Unmaintained <br> 2024-07-29 estimated |             |\n| **r2.0**   | Maintained   | 2023-06-15               | Unmaintained <br> 2024-06-15 estimated |             |\n| **r1.10**  | Maintained   | 2023-02-02               | Unmaintained <br> 2024-02-02 estimated |             |\n| **r1.9**   | End Of Life  | 2022-10-26               |                                        | 2023-10-26  |\n| **r1.8**   | End Of Life  | 2022-07-29               |                                        | 2023-07-29  |\n| **r1.7**   | End Of Life  | 2022-04-29               |                                        | 2023-04-29  |\n| **r1.6**   | End Of Life  | 2022-01-29               |                                        | 2023-01-29  |\n| **r1.5**   | End Of Life  | 2021-10-15               |                                        | 2022-10-15  |\n| **r1.4**   | End Of Life  | 2021-08-15               |                                        | 2022-08-15  |\n| **r1.3**   | End Of Life  | 2021-07-15               |                                        | 2022-07-15  |\n| **r1.2**   | End Of Life  | 2021-04-15               |                                        | 2022-04-29  |\n| **r1.1**   | End Of Life  | 2020-12-31               |                                        | 2021-09-30  |\n| **r1.0**   | End Of Life  | 2020-09-24               |                                        | 2021-07-30  |\n| **r0.7**   | End Of Life  | 2020-08-31               |                                        | 2021-02-28  |\n| **r0.6**   | End Of Life  | 2020-07-31               |                                        | 2020-12-30  |\n| **r0.5**   | End Of Life  | 2020-06-30               |                                        | 2021-06-30  |\n| **r0.3**   | End Of Life  | 2020-05-31               |                                        | 2020-09-30  |\n| **r0.2**   | End Of Life  | 2020-04-30               |                                        | 2020-08-31  |\n| **r0.1**   | End Of Life  | 2020-03-28               |                                        | 2020-06-30  |\n\n## Release Notes\n\nThe release notes, see our [RELEASE](https://gitee.com/mindspore/mindspore/blob/master/RELEASE.md).\n\n## License\n\n[Apache License 2.0](https://gitee.com/mindspore/mindspore/blob/master/LICENSE)\n\n\n",
    "bugtrack_url": null,
    "license": "Apache 2.0",
    "summary": "MindSpore is a new open source deep learning training/inference framework that could be used for mobile, edge and cloud scenarios.",
    "version": "2.2.14",
    "project_urls": {
        "Download": "https://github.com/mindspore-ai/mindspore/tags",
        "Homepage": "https://www.mindspore.cn",
        "Issue Tracker": "https://github.com/mindspore-ai/mindspore/issues",
        "Sources": "https://github.com/mindspore-ai/mindspore"
    },
    "split_keywords": [
        "mindspore",
        "machine",
        "learning"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "93f06cadc9f00805cbfc3ad5a1b37ab3e4692bfeed9f23ee368f95a9da4e265d",
                "md5": "c9139c65904ed12daa99bdd738a76997",
                "sha256": "14822f4a5f43a37c464295c41ab93c1c50af3016cda40406e555dc500e639ad1"
            },
            "downloads": -1,
            "filename": "mindspore-2.2.14-cp37-cp37m-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c9139c65904ed12daa99bdd738a76997",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 133663206,
            "upload_time": "2024-04-25T03:51:11",
            "upload_time_iso_8601": "2024-04-25T03:51:11.857968Z",
            "url": "https://files.pythonhosted.org/packages/93/f0/6cadc9f00805cbfc3ad5a1b37ab3e4692bfeed9f23ee368f95a9da4e265d/mindspore-2.2.14-cp37-cp37m-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "50f828d40344fe7edf482768d5a5eed7f02706894f9f50c1d4942419251d2dbf",
                "md5": "4e11b3c5005166d8e5efefb60436207a",
                "sha256": "3f197b6021ba803989aea8d74c4550be696677829fc75c0d5d0a90c753e8abb5"
            },
            "downloads": -1,
            "filename": "mindspore-2.2.14-cp37-cp37m-manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4e11b3c5005166d8e5efefb60436207a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 742791489,
            "upload_time": "2024-04-25T04:07:15",
            "upload_time_iso_8601": "2024-04-25T04:07:15.475262Z",
            "url": "https://files.pythonhosted.org/packages/50/f8/28d40344fe7edf482768d5a5eed7f02706894f9f50c1d4942419251d2dbf/mindspore-2.2.14-cp37-cp37m-manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9d6249e2b550f6c143da41a324fed321dbb4d3de6f74046cc9b10e5ecbd5e801",
                "md5": "6164b8545e074db8348265ce768d55aa",
                "sha256": "5caae75dcf6edd2896fc0a089cc98f5c0ce39c72015af71f074ac66135d51fd3"
            },
            "downloads": -1,
            "filename": "mindspore-2.2.14-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6164b8545e074db8348265ce768d55aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 74947477,
            "upload_time": "2024-04-25T03:54:16",
            "upload_time_iso_8601": "2024-04-25T03:54:16.871773Z",
            "url": "https://files.pythonhosted.org/packages/9d/62/49e2b550f6c143da41a324fed321dbb4d3de6f74046cc9b10e5ecbd5e801/mindspore-2.2.14-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "07b4f8435ea7ae8516dfeb67cf5227e71e9f0e316bb84903d62da7a29d90d439",
                "md5": "693f5f2e2df82d496ec24d377e7b517c",
                "sha256": "5d724c69cf2e336212d54d5cd16673cad026a4fbc8be3beaa0caf4711ed21605"
            },
            "downloads": -1,
            "filename": "mindspore-2.2.14-cp37-none-any.whl",
            "has_sig": false,
            "md5_digest": "693f5f2e2df82d496ec24d377e7b517c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 173294164,
            "upload_time": "2024-04-25T04:10:36",
            "upload_time_iso_8601": "2024-04-25T04:10:36.846026Z",
            "url": "https://files.pythonhosted.org/packages/07/b4/f8435ea7ae8516dfeb67cf5227e71e9f0e316bb84903d62da7a29d90d439/mindspore-2.2.14-cp37-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f991d8c480baa038727bdbd36f686356818c638635439ba6cc1f1bcd517206f4",
                "md5": "a2a0f7e482e08b7c052173887ea76d9b",
                "sha256": "eeececc0f1f73a8ca9fc824997f0cfd7e0048289a3469bf6e2374199be551033"
            },
            "downloads": -1,
            "filename": "mindspore-2.2.14-cp38-cp38-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a2a0f7e482e08b7c052173887ea76d9b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 133762377,
            "upload_time": "2024-04-25T03:50:20",
            "upload_time_iso_8601": "2024-04-25T03:50:20.057073Z",
            "url": "https://files.pythonhosted.org/packages/f9/91/d8c480baa038727bdbd36f686356818c638635439ba6cc1f1bcd517206f4/mindspore-2.2.14-cp38-cp38-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6923c65311c1d37c2a339baebd086f9d09ca5cffbc88785460923766c8e4be88",
                "md5": "4171e2d79c7d92aef9dde584a68b11c6",
                "sha256": "fbfde384f8410d3ab816fa48f6fc63cb5419d8318c50aba4057a25a89d852519"
            },
            "downloads": -1,
            "filename": "mindspore-2.2.14-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4171e2d79c7d92aef9dde584a68b11c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 117733498,
            "upload_time": "2024-04-25T03:52:44",
            "upload_time_iso_8601": "2024-04-25T03:52:44.123173Z",
            "url": "https://files.pythonhosted.org/packages/69/23/c65311c1d37c2a339baebd086f9d09ca5cffbc88785460923766c8e4be88/mindspore-2.2.14-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6637e27ed9219d8f7b3180d251e7de9c54d787a6f7b3e58154f3654690f1b778",
                "md5": "078103d9f43761b5f8c3e63a7f493456",
                "sha256": "eac42952a2177f3da343b4945631799d81a58e4fbc250fcf1060137cef53121a"
            },
            "downloads": -1,
            "filename": "mindspore-2.2.14-cp38-cp38-manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "078103d9f43761b5f8c3e63a7f493456",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 742875339,
            "upload_time": "2024-04-25T04:02:48",
            "upload_time_iso_8601": "2024-04-25T04:02:48.422273Z",
            "url": "https://files.pythonhosted.org/packages/66/37/e27ed9219d8f7b3180d251e7de9c54d787a6f7b3e58154f3654690f1b778/mindspore-2.2.14-cp38-cp38-manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a22be6e43a3a439712269d15835ad2cebbd43e33e78c48667e3e2b2288f150ca",
                "md5": "d6ececa56644d87fc6a4673e8193a683",
                "sha256": "cab74a2bc831f93585b06625a153b20a5a00f5144af18d2180255fcc2a878d21"
            },
            "downloads": -1,
            "filename": "mindspore-2.2.14-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d6ececa56644d87fc6a4673e8193a683",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 74945842,
            "upload_time": "2024-04-25T03:53:46",
            "upload_time_iso_8601": "2024-04-25T03:53:46.344666Z",
            "url": "https://files.pythonhosted.org/packages/a2/2b/e6e43a3a439712269d15835ad2cebbd43e33e78c48667e3e2b2288f150ca/mindspore-2.2.14-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2264112a198de4ad0c3c2c1f1472813f97d425e05b74bfbf1b6ccd7fe9523a8b",
                "md5": "9dc4719741d1f16a251ae69c7e274eac",
                "sha256": "01f67abb181b3bdbee0334252349a4f6e30d92ae52701a648af45eb99bb0daac"
            },
            "downloads": -1,
            "filename": "mindspore-2.2.14-cp38-none-any.whl",
            "has_sig": false,
            "md5_digest": "9dc4719741d1f16a251ae69c7e274eac",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 173491772,
            "upload_time": "2024-04-25T04:09:32",
            "upload_time_iso_8601": "2024-04-25T04:09:32.860663Z",
            "url": "https://files.pythonhosted.org/packages/22/64/112a198de4ad0c3c2c1f1472813f97d425e05b74bfbf1b6ccd7fe9523a8b/mindspore-2.2.14-cp38-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "477be7322a412163881140070d2d96c8696c5b6a1a12ccc97d8b6afc9bb7d4a8",
                "md5": "63e12a9a6501ceb7bb2a2ed705751644",
                "sha256": "765da246aeadaf649074642394062201522c4cdae59559d185cceff4eeb71df9"
            },
            "downloads": -1,
            "filename": "mindspore-2.2.14-cp39-cp39-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "63e12a9a6501ceb7bb2a2ed705751644",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 133860292,
            "upload_time": "2024-04-25T03:49:30",
            "upload_time_iso_8601": "2024-04-25T03:49:30.117655Z",
            "url": "https://files.pythonhosted.org/packages/47/7b/e7322a412163881140070d2d96c8696c5b6a1a12ccc97d8b6afc9bb7d4a8/mindspore-2.2.14-cp39-cp39-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1d3514a7eed2ffdeea279ba620ae0a25132b2330582daf2acfce45f2c7d9f0e6",
                "md5": "f9cb762d104f6ba344b1aadc6447e199",
                "sha256": "665f86275cb174927886b7290d448c2c2ca6667e8d813c2872df5c2d9322fd26"
            },
            "downloads": -1,
            "filename": "mindspore-2.2.14-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f9cb762d104f6ba344b1aadc6447e199",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 117806829,
            "upload_time": "2024-04-25T03:51:59",
            "upload_time_iso_8601": "2024-04-25T03:51:59.492579Z",
            "url": "https://files.pythonhosted.org/packages/1d/35/14a7eed2ffdeea279ba620ae0a25132b2330582daf2acfce45f2c7d9f0e6/mindspore-2.2.14-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "86aea4980ea7242a7e43c92c6bc733534b2c6686ce82e0f57fa291c160bdd66e",
                "md5": "446ce7577178f9b47a0930d943710146",
                "sha256": "66d1864ccb722c82c1fa176b6277d33301b700b326e4932a7fa30209ccce57c1"
            },
            "downloads": -1,
            "filename": "mindspore-2.2.14-cp39-cp39-manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "446ce7577178f9b47a0930d943710146",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 742966143,
            "upload_time": "2024-04-25T03:58:23",
            "upload_time_iso_8601": "2024-04-25T03:58:23.982288Z",
            "url": "https://files.pythonhosted.org/packages/86/ae/a4980ea7242a7e43c92c6bc733534b2c6686ce82e0f57fa291c160bdd66e/mindspore-2.2.14-cp39-cp39-manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "01f4a15b719838956455f5c5bd3ca1e6ac450df53d9cb5ebc61b05551f7151da",
                "md5": "30545736af2e52a28497240dadf44def",
                "sha256": "c8fa2649d6a1e775e33e77290ecb30608f1c88f4feaa23d5b495df507289b337"
            },
            "downloads": -1,
            "filename": "mindspore-2.2.14-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "30545736af2e52a28497240dadf44def",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 74836187,
            "upload_time": "2024-04-25T03:53:16",
            "upload_time_iso_8601": "2024-04-25T03:53:16.052141Z",
            "url": "https://files.pythonhosted.org/packages/01/f4/a15b719838956455f5c5bd3ca1e6ac450df53d9cb5ebc61b05551f7151da/mindspore-2.2.14-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "68b65bc2e69111711d8537c8fe3deb0ee261524d09a6861c8d525f765904f543",
                "md5": "3930dffab2b8cb44c1ba521df56c90d3",
                "sha256": "2406f23f5b79676997490f0f05ecd42fb5606b8ce57a631a519dfb7e1524e8f4"
            },
            "downloads": -1,
            "filename": "mindspore-2.2.14-cp39-none-any.whl",
            "has_sig": false,
            "md5_digest": "3930dffab2b8cb44c1ba521df56c90d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 173430754,
            "upload_time": "2024-04-25T04:08:29",
            "upload_time_iso_8601": "2024-04-25T04:08:29.782815Z",
            "url": "https://files.pythonhosted.org/packages/68/b6/5bc2e69111711d8537c8fe3deb0ee261524d09a6861c8d525f765904f543/mindspore-2.2.14-cp39-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-25 03:51:11",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "mindspore-ai",
    "github_project": "mindspore",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "lcname": "mindspore"
}
        
Elapsed time: 0.24124s