From d0316ba1c4e3d213b4b081ffbaad0e47844a44a4 Mon Sep 17 00:00:00 2001 From: huanxiaoling <3174348550@qq.com> Date: Tue, 18 Oct 2022 17:41:48 +0800 Subject: [PATCH] add en FAQ file in 1.9 --- docs/mindspore/source_en/index.rst | 1 + .../source_en/migration_guide/faq.md | 27 +++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 docs/mindspore/source_en/migration_guide/faq.md diff --git a/docs/mindspore/source_en/index.rst b/docs/mindspore/source_en/index.rst index 2ba4065572..2206fcb274 100644 --- a/docs/mindspore/source_en/index.rst +++ b/docs/mindspore/source_en/index.rst @@ -79,6 +79,7 @@ MindSpore Documentation migration_guide/model_development/model_development migration_guide/debug_and_tune migration_guide/sample_code + migration_guide/faq migration_guide/use_third_party_op .. toctree:: diff --git a/docs/mindspore/source_en/migration_guide/faq.md b/docs/mindspore/source_en/migration_guide/faq.md new file mode 100644 index 0000000000..547fa5644d --- /dev/null +++ b/docs/mindspore/source_en/migration_guide/faq.md @@ -0,0 +1,27 @@ +# FAQs + + + +MindSpore provides a [FAQ](https://mindspore.cn/docs/en/r1.9/faq/installation.html) during using MindSpore. This chapter also collates the solutions to the set of common problems mentioned in the migration documentation. + +- Web Scripts + + [Typical Differences from PyTorch](https://www.mindspore.cn/docs/en/r1.9/migration_guide/typical_api_comparision.html) + + [API Mapping and Handling Strategy of Missing API](https://www.mindspore.cn/docs/en/r1.9/migration_guide/analysis_and_preparation.html#analyzing-API-Compliance) + + [Dynamic Shape Analysis](https://www.mindspore.cn/docs/en/r1.9/migration_guide/analysis_and_preparation.html#dynamic-shape) and [Mitigation Program](https://www.mindspore.cn/docs/zh-CN/r1.9/migration_guide/model_development/model_and_loss.html#dynamic-shape-mitigation-program) + + [Mitigation Program for Sparse Characteristic](https://www.mindspore.cn/docs/en/r1.9/migration_guide/analysis_and_preparation.html#sparse) + + [Common Syntax Restrictions and Handling Strategies for Static Graphs](https://www.mindspore.cn/docs/zh-CN/r1.9/migration_guide/model_development/model_and_loss.html#common-restrictions) + + [Notes for MindSpore Web Authoring](https://www.mindspore.cn/docs/zh-CN/r1.9/migration_guide/model_development/model_development.html#mindspore-web- authoring-note) + +- Network Debugging + + [Function Debugging](https://www.mindspore.cn/docs/zh-CN/r1.9/migration_guide/debug_and_tune.html#function-debugging) + + [Precision Debugging](https://www.mindspore.cn/docs/en/r1.9/migration_guide/debug_and_tune.html#precision-debugging) + + [Performance Debugging](https://www.mindspore.cn/docs/en/r1.9/migration_guide/debug_and_tune.html#performance-debugging) -- Gitee