From c0d8b28bd71003e6696cdc4193e99b3348660c77 Mon Sep 17 00:00:00 2001 From: zhangyi Date: Fri, 19 Aug 2022 15:24:58 +0800 Subject: [PATCH] Fix English derivation typo --- tutorials/source_en/advanced/network/derivation.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tutorials/source_en/advanced/network/derivation.md b/tutorials/source_en/advanced/network/derivation.md index 30b8c521af..9f10b5a3d0 100644 --- a/tutorials/source_en/advanced/network/derivation.md +++ b/tutorials/source_en/advanced/network/derivation.md @@ -415,7 +415,7 @@ print(result) [-0.] ``` -The preceding print result shows that the value of `-sin(3.1415926)` is close to `0`. +The preceding print result shows that the value of $-sin(3.1415926)$ is close to $0$. ### Single-input Multi-output High-order Derivative @@ -493,7 +493,7 @@ print(result) [1.] ``` -The preceding print result shows that the value of `-sin(3.1415926) - cos(3.1415926)` is close to `1`. +The preceding print result shows that the value of $-sin(3.1415926) - cos(3.1415926)$ is close to $1$. ### Multiple-Input Multiple-Output High-Order Derivative @@ -587,6 +587,6 @@ print(np.around(output[1].asnumpy(), decimals=2)) [-1.] ``` -According to the preceding result, the value of the second derivative `-sin(3.1415926) - cos(3.1415926)` of the output to the input $x$ is close to `1`, and the value of the second derivative `sin(3.1415926) + cos(3.1415926)` of the output to the input $y$ is close to `-1`. +According to the preceding result, the value of the second derivative $-sin(3.1415926) - cos(3.1415926)$ of the output to the input $x$ is close to $1$, and the value of the second derivative $sin(3.1415926) + cos(3.1415926)$ of the output to the input $y$ is close to $-1$. > The accuracy may vary depending on the computing platform. Therefore, the execution results of the code in this section vary slightly on different platforms. -- Gitee