-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix doc of compare_accuracy #53661
fix doc of compare_accuracy #53661
Conversation
你的PR提交成功,感谢你对开源项目的贡献! |
❌ The PR is not created using PR's template. You can refer to this Demo. |
python/paddle/amp/debugging.py
Outdated
@@ -436,10 +436,10 @@ def compare_accuracy( | |||
This is a precision comparison tool that can be used to compare log data of float16 and float32. | |||
|
|||
Args: | |||
dump_path(str): The path of the running log, such as the log for execution using the fp32 type. | |||
dump_path(str): The path of the running log, such as the log for execution using the float32 data type. | |||
another_dump_path(str): the path of another running log ,such as the log for execution using the fp16 type. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这行的fp16 type
也和上一行一样,优化一下吧~
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
PR types
Others
PR changes
Others
Description
修复 #53430 中提到的英文文档问题。
中文文档:PaddlePaddle/docs#5874