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 3.9 kB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. MindInsight provides MindSpore with easy-to-use debugging and tuning capabilities. It
  2. enables users to visualize the experiments. The features of MindInsight are as follows.
  3. - Visualization of training process:
  4. Provide visualization of training process information,
  5. such as computation graph, training process metrics, etc.
  6. - Traceability of training result:
  7. Provide visualization of model parameters information,
  8. such as training data, model accuracy, etc.
  9. - Visualization of training performance:
  10. Provide visualization of training performance information, such as operator execution time,
  11. data input pipeline performance, etc.
  12. # Index
  13. - [More about MindInsight](#more-about-mindinsight)
  14. - [Installation](#installation)
  15. - [QuickStart](#quickstart)
  16. - [Docs](#docs)
  17. - [Community](#community)
  18. - [Contributing](#contributing)
  19. - [Release Notes](#release-notes)
  20. - [License](#license)
  21. # More about MindInsight
  22. The architecture diagram of MindInsight is illustrated as follows:
  23. ![MindInsight Architecture](docs/arch.png)
  24. ## Summary log file
  25. The summary log file consists of a series of operation events. Each event contains
  26. the necessary data for visualization.
  27. MindSpore uses the Callback mechanism to record graph, scalar, image and model
  28. information into summary log file.
  29. - The scalar and image is recorded by Summary operator.
  30. - The computation graph is recorded by SummaryRecord after it was compiled.
  31. - The model parameters is recorded by TrainLineage or EvalLineage.
  32. MindInsight provides the capability to analyze summary log files and visualize
  33. relative information.
  34. ## Visualization
  35. MindInsight provides users with a full-process visualized GUI during
  36. AI development, in order to help model developers to improve the model
  37. precision efficiently.
  38. MindInsight has the following visualization capabilities:
  39. ### Graph visualization
  40. The GUI of MindInsight displays the structure of neural network, the data flow and control
  41. flow of each operator during the entire training process.
  42. ### Scalar visualization
  43. The GUI of MindInsight displays the change tendency of a specific scalar during the entire
  44. training process, such as loss value and accuracy rate of each iteration.
  45. Two scalar curves can be combined and displayed in one chart.
  46. ### Parameter distribution
  47. The GUI of MindInsight displays the distribution change tendency of a tensor such as weight
  48. or gradient during the entire training process.
  49. ### Image visualization
  50. The GUI of MindInsight displays both original images and enhanced images during the entire
  51. training process.
  52. ### Model lineage visualization
  53. The GUI of MindInsight displays the parameters and metrics of all models, such as the
  54. learning rate, the number of samples and the loss function of each model.
  55. ### Dataset Graph visualization
  56. The GUI of MindInsight displays the pipeline of dataset processing and augmentation.
  57. ### Dataset Lineage visualization
  58. The GUI of MindInsight displays the parameters and operations of the dataset processing and augmentation.
  59. ### Performance visualization
  60. The GUI of MindInsight displays the performance data of the neural networks.
  61. # Installation
  62. See [Install MindInsight](https://www.mindspore.cn/install/en).
  63. # QuickStart
  64. See [guidance](https://www.mindspore.cn/tutorial/en/master/advanced_use/visualization_tutorials.html)
  65. # Docs
  66. See [API Reference](https://www.mindspore.cn/api/en/master/index.html)
  67. # Community
  68. - [MindSpore Slack](https://join.slack.com/t/mindspore/shared_invite/enQtOTcwMTIxMDI3NjM0LTNkMWM2MzI5NjIyZWU5ZWQ5M2EwMTQ5MWNiYzMxOGM4OWFhZjI4M2E5OGI2YTg3ODU1ODE2Njg1MThiNWI3YmQ) - Communication platform for developers.
  69. # Contributing
  70. Welcome contributions. See our [Contributor Wiki](https://gitee.com/mindspore/mindspore/blob/master/CONTRIBUTING.md) for more details.
  71. # Release Notes
  72. The release notes, see our [RELEASE](RELEASE.md).
  73. # License
  74. [Apache License 2.0](LICENSE)