You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 7.9 kB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. # MindInsight
  2. <!-- TOC -->
  3. - [Introduction](#introduction)
  4. - [Installation](#installation)
  5. - [System Environment Information Confirmation](#system-environment-information-confirmation)
  6. - [Installation Methods](#installation-methods)
  7. - [Installation by pip](#installation-by-pip)
  8. - [Installation by Source Code](#installation-by-source-code)
  9. - [Downloading Source Code from Gitee](#downloading-source-code-from-gitee)
  10. - [Compiling MindInsight](#compiling-mindInsight)
  11. - [Installation Verification](#installation-verification)
  12. - [Quick Start](#quick-start)
  13. - [Docs](#docs)
  14. - [Community](#community)
  15. - [Governance](#governance)
  16. - [Communication](#communication)
  17. - [Vulkan Vision](#vulkan-vision)
  18. - [Contributing](#contributing)
  19. - [Release Notes](#release-notes)
  20. - [License](#license)
  21. <!-- /TOC -->
  22. [简体中文](./README_CN.md)
  23. ## Introduction
  24. MindInsight provides MindSpore with easy-to-use debugging and tuning capabilities. During the training, data such as scalar, tensor, image, computational graph, model hyper parameter and training’s execution time can be recorded in the file for viewing and analysis through the visual page of MindInsight.
  25. ![MindInsight Architecture](docs/arch.png)
  26. Click to view the [MindInsight design document](https://www.mindspore.cn/doc/note/en/master/design/mindinsight.html), learn more about the design.
  27. Click to view the [Tutorial documentation](https://www.mindspore.cn/tutorial/training/en/master/advanced_use/visualization_tutorials.html) learn more about the MindInsight tutorial.
  28. ## Installation
  29. ### System Environment Information Confirmation
  30. - The hardware platform is Ascend or GPU.
  31. - Confirm that [Python](https://www.python.org/ftp/python/3.7.5/Python-3.7.5.tgz) 3.7.5 is installed.
  32. - The versions of MindInsight and MindSpore must be consistent.
  33. - If you use source code to compile and install, the following dependencies also need to be installed:
  34. - Confirm that [CMake](https://cmake.org/download/) 3.14.1 or later is installed.
  35. - Confirm that [GCC](https://gcc.gnu.org/releases.html) 7.3.0 is installed.
  36. - Confirm that [node.js](https://nodejs.org/en/download/) 10.19.0 or later is installed.
  37. - Confirm that [wheel](https://pypi.org/project/wheel/) 0.32.0 or later is installed.
  38. - Confirm that [pybind11](https://pypi.org/project/pybind11/) 2.4.3 or later is installed.
  39. - All other dependencies are included in [requirements.txt](https://gitee.com/mindspore/mindinsight/blob/master/requirements.txt).
  40. ### Installation Methods
  41. You can install MindInsight either by pip or by source code.
  42. #### Installation by pip
  43. ```bash
  44. pip install https://ms-release.obs.cn-north-4.myhuaweicloud.com/{version}/MindInsight/ascend/{system}/mindinsight-{version}-cp37-cp37m-linux_{arch}.whl --trusted-host ms-release.obs.cn-north-4.myhuaweicloud.com -i https://pypi.tuna.tsinghua.edu.cn/simple
  45. ```
  46. > - When the network is connected, dependency items are automatically downloaded during .whl package installation. (For details about other dependency items, see [requirements.txt](https://gitee.com/mindspore/mindinsight/blob/master/requirements.txt)). In other cases, you need to manually install dependency items.
  47. > - `{version}` denotes the version of MindInsight. For example, when you are downloading MindSpore 1.0.1, `{version}` should be 1.0.1.
  48. > - `{arch}` denotes the system architecture. For example, the Linux system you are using is x86 architecture 64-bit, `{arch}` should be `x86_64`. If the system is ARM architecture 64-bit, then it should be `aarch64`.
  49. > - `{system}` denotes the system version. For example, if you are using EulerOS ARM architecture, `{system}` should be `euleros_aarch64`. Currently, the following systems are supported by Ascend: `euleros_aarch64`/`centos_aarch64`/`centos_x86`/`ubuntu_aarch64`/`ubuntu_x86`. `ubuntu_x86` is supported by GPU.
  50. #### Installation by Source Code
  51. ##### Downloading Source Code from Gitee
  52. ```bash
  53. git clone https://gitee.com/mindspore/mindinsight.git
  54. ```
  55. ##### Compiling MindInsight
  56. You can choose any of the following installation methods:
  57. 1. Run the following command in the root directory of the source code:
  58. ```bash
  59. cd mindinsight
  60. pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
  61. python setup.py install
  62. ```
  63. 2. Build the `whl` package for installation.
  64. Enter the root directory of the source code, first execute the MindInsight compilation script in the `build` directory, and then execute the command to install the `whl` package generated in the `output` directory.
  65. ```bash
  66. cd mindinsight
  67. bash build/build.sh
  68. pip install output/mindinsight-{version}-cp37-cp37m-linux_{arch}.whl -i https://pypi.tuna.tsinghua.edu.cn/simple
  69. ```
  70. ### Installation Verification
  71. Execute the following command:
  72. ```bash
  73. mindinsight start
  74. ```
  75. If it prompts the following information, the installation is successful:
  76. ```bash
  77. Web address: http://127.0.0.1:8080
  78. service start state: success
  79. ```
  80. ## Quick Start
  81. Before using MindInsight, the data in the training process should be recorded. When starting MindInsight, the directory of the saved data should be specified. After successful startup, the data can be viewed through the web page. Here is a brief introduction to recording training data, as well as starting and stopping MindInsight.
  82. [SummaryCollector](https://www.mindspore.cn/doc/api_python/en/master/mindspore/mindspore.train.html#mindspore.train.callback.SummaryCollector) is the interface MindSpore provides for a quick and easy collection of common data about computational graphs, loss values, learning rates, parameter weights, and so on. Below is an example of using `SummaryCollector` for data collection, specifying the directory where the data is stored in `./summary_dir`.
  83. ```python
  84. ...
  85. from mindspore.train.callback import SummaryCollector
  86. summary_collector = SummaryCollector(summary_dir='./summary_dir')
  87. model.train(epoch=1, ds_train, callbacks=[summary_collector])
  88. ```
  89. For more ways to record visual data, see the [MindInsight Tutorial](https://www.mindspore.cn/tutorial/training/en/master/advanced_use/visualization_tutorials.html).
  90. After you've collected the data, when you launch MindInsight, specify the directory in which the data has been stored.
  91. ```bash
  92. mindinsight start --summary-base-dir ./summary_dir
  93. ```
  94. After successful startup, visit `http://127.0.0.1:8080` through the browser to view the web page.
  95. Command of stopping the MindInsight service:
  96. ```bash
  97. mindinsight stop
  98. ```
  99. ## Docs
  100. More details about installation guide, tutorials and APIs, please see the
  101. [User Documentation](https://gitee.com/mindspore/docs).
  102. ## Community
  103. ### Governance
  104. Check out how MindSpore Open Governance [works](https://gitee.com/mindspore/community/blob/master/governance.md).
  105. ### Communication
  106. - [MindSpore Slack](https://join.slack.com/t/mindspore/shared_invite/zt-dgk65rli-3ex4xvS4wHX7UDmsQmfu8w) - Communication platform for developers.
  107. - IRC channel at `#mindspore` (only for meeting minutes logging purpose)
  108. - Video Conferencing: TBD
  109. - Mailing-list: <https://mailweb.mindspore.cn/postorius/lists>
  110. ## Vulkan Vision
  111. Vulkan Vision(V-Vision) provides an unprecedented level of detail into the execution of Vulkan applications through dynamic instrumentation. V-Vision supports analyzing AI workloads implemented using the a compute pipeline as well as traditional raster and ray-tracing Vulkan applications. To use V-Vision please refer to the [build instructions](https://gitee.com/mindspore/mindspore/ecosystem_tools/VulkanVision/README.md).
  112. ## Contributing
  113. Welcome contributions. See our [Contributor Wiki](https://gitee.com/mindspore/mindspore/blob/master/CONTRIBUTING.md) for more details.
  114. ## Release Notes
  115. The release notes, see our [RELEASE](RELEASE.md).
  116. ## License
  117. [Apache License 2.0](LICENSE)