From f258e6ff129792d6373197deb3099bce31a029c4 Mon Sep 17 00:00:00 2001 From: caifubi Date: Thu, 30 Jul 2020 09:36:08 +0800 Subject: [PATCH] Modify Asynchronous Data Dump doc --- .../advanced_use/customized_debugging_information.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorials/source_en/advanced_use/customized_debugging_information.md b/tutorials/source_en/advanced_use/customized_debugging_information.md index 53b4d128df..b95984b851 100644 --- a/tutorials/source_en/advanced_use/customized_debugging_information.md +++ b/tutorials/source_en/advanced_use/customized_debugging_information.md @@ -246,8 +246,8 @@ When the training result deviates from the expectation on Ascend, the input and } ``` - > - Iteration should be set to 0 in non data sink mode and data of every iteration will be dumped. - > - Iteration should increase by 1 in data sink mode. For example, data of GetNext will be dumped in iteration 0 and data of compute graph will be dumped in iteration 1. + > - Iteration should be set to 0 when `dataset_sink_mode` is False and data of every iteration will be dumped. + > - Iteration should increase by 1 when `dataset_sink_mode` is True. For example, data of GetNext will be dumped in iteration 0 and data of compute graph will be dumped in iteration 1. 5. Set environment variables. -- Gitee