fix(visualizer): expand user path in visualizer.py (#9467) - #9490
Open
R1212122 wants to merge 1 commit into
Open
fix(visualizer): expand user path in visualizer.py (#9467)#9490R1212122 wants to merge 1 commit into
R1212122 wants to merge 1 commit into
Conversation
Author
|
ping @CLAassistant |
Author
|
I have read and agree to the PaddlePaddle Contributor License Agreement. |
|
|
Author
|
CLA signed, please recheck |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
问题
修复 #9467:
ppdet/utils/visualizer.py第 112 行使用了未扩展的路径(如~),运行推理时会在当前目录生成~文件夹,影响用户使用。根因
download.py中WEIGHTS_HOME = osp.expanduser("~/.cache/paddle/weights")已正确展开,但
visualizer.py第 112 行传了未展开的"~/.cache/paddle/"给get_path()。修复
使用
os.path.expanduser()包裹路径变量,确保用户主目录路径被正确展开。测试
python -m py_compile ppdet/utils/visualizer.py通过影响
Checklist