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_CN.md 991 B

1234567891011121314151617181920212223
  1. # Debugger 介绍
  2. [View English](./README.md)
  3. ## Debugger概述
  4. MindSpore Debugger是为图模式训练提供的调试工具,可以用来查看并分析计算图节点的中间结果。
  5. 在MindSpore图模式的训练过程中,用户无法从Python层获取到计算图中间节点的结果,使得训练调试变得很困难。使用MindSpore Debugger,用户可以:
  6. - 在MindInsight UI结合计算图,查看图节点的输出结果;
  7. - 设置条件断点,监测训练异常情况(比如Nan/Inf),在异常发生时追踪错误原因;
  8. - 查看权重等参数的变化情况。
  9. ## 操作流程
  10. - 以Debugger模式启动MindInsight,配置相关环境变量;
  11. - 训练开始,在MindInsight Debugger UI设置条件断点,监测节点的输出值;
  12. - 在MindInsight Debugger UI分析训练执行情况。
  13. ## Debugger使用方法
  14. MindSpore Debugger的使用方法,请参考<https://www.mindspore.cn/tutorial/training/zh-CN/master/advanced_use/debugger.html>。