From 5ba32d425d27ee452b932c2cb8b600ea4f46bd14 Mon Sep 17 00:00:00 2001 From: jijiarong Date: Wed, 7 Jun 2023 17:50:40 +0800 Subject: [PATCH] fix version to 2.0.0 --- README.md | 11 +++++++++++ README_CN.md | 11 +++++++++++ mindinsight/_version.py | 2 +- 3 files changed, 23 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ab6b587f..2f1628b8 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,17 @@ Click to view the [Tutorial documentation](https://www.mindspore.cn/mindinsight/ - Confirm that [wheel](https://pypi.org/project/wheel/) 0.32.0 or later is installed. - All other dependencies are included in [requirements.txt](https://gitee.com/mindspore/mindinsight/blob/master/requirements.txt). +### Version dependency + +Due the dependency between MindInsight and MindSpore, please follow the table below and install the corresponding MindSpore verision from [MindSpore download page](https://www.mindspore.cn/versions/en). + +| MindInsight Version | Branch | MindSpore Version | +| ------------------ | --------------------------------------------------------- | ----------------- | +| 2.0.0 | [r2.0](https://gitee.com/mindspore/mindinsight/tree/r2.0/) | 2.0.0 | +| 1.9.0 | [r1.9](https://gitee.com/mindspore/mindinsight/tree/r1.9/) | 1.9.0 | +| 1.8.0 | [r1.8](https://gitee.com/mindspore/mindinsight/tree/r1.8/) | 1.8.0 | +| 1.7.0 | [r1.7](https://gitee.com/mindspore/mindinsight/tree/r1.7/) | 1.7.0 | + ### Installation Methods You can install MindInsight either by pip or by source code. diff --git a/README_CN.md b/README_CN.md index 5a23d9f0..916080a9 100644 --- a/README_CN.md +++ b/README_CN.md @@ -45,6 +45,17 @@ MindInsight为MindSpore提供了简单易用的调优调试能力。在训练过 - 确认安装[wheel](https://pypi.org/project/wheel/) 0.32.0及以上版本。 - 其他依赖参见[requirements.txt](https://gitee.com/mindspore/mindinsight/blob/master/requirements.txt)。 +#### MindSpore版本依赖关系 + +由于MindInsight与MindSpore有依赖关系,请按照下表所示的对应关系,在[MindSpore下载页面](https://www.mindspore.cn/versions)下载并安装对应的whl包。 + +| MindInsight | 分支 | MindSpore | +| ---------- | --------------------------------------------------------- | --------- | +| 2.0.0 | [r2.0](https://gitee.com/mindspore/mindinsight/tree/r2.0/) | 2.0.0 | +| 1.9.0 | [r1.9](https://gitee.com/mindspore/mindinsight/tree/r1.9/) | 1.9.0 | +| 1.8.0 | [r1.8](https://gitee.com/mindspore/mindinsight/tree/r1.8/) | 1.8.0 | +| 1.7.0 | [r1.7](https://gitee.com/mindspore/mindinsight/tree/r1.7/) | 1.7.0 | + ### 安装方式 可以采用pip安装或者源码编译安装两种方式。 diff --git a/mindinsight/_version.py b/mindinsight/_version.py index c3ada64a..e7e42f6e 100644 --- a/mindinsight/_version.py +++ b/mindinsight/_version.py @@ -14,4 +14,4 @@ # ============================================================================ """Mindinsight version module.""" -VERSION = '2.0.0rc1' +VERSION = '2.0.0' -- Gitee