-
Notifications
You must be signed in to change notification settings - Fork 42
[Feature Enhancement] Implement decompose method of "fixed-start" and refactor codes. #408
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
Open
Xreki
wants to merge
13
commits into
PaddlePaddle:develop
Choose a base branch
from
Xreki:opt_saved_results
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+380
−242
Conversation
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
c3e78da to
b26630f
Compare
b26630f to
3d30e86
Compare
|
Thanks for your contribution! |
1 similar comment
|
Thanks for your contribution! |
3301ecb to
ef92564
Compare
ef92564 to
864e7b3
Compare
0b7240a to
2867e71
Compare
2867e71 to
2ace973
Compare
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.
PR Category
Feature Enhancement
Description
ModelRecord、RunningState、DecomposeCofig三个类型,重构部分代码。其中:ModelRecord记录每一个样本每一步的分解信息,包括原始路径、分解位置参数、生成的子图样本路径、错误的子图编号。注意,fixed-start的方式因为始终只生成子图0,若评测结果子图0正确,则错误的应该就是子图1。RunningState记录一步所有模型的运行状态和评测结果。DecomposeConifg记录每一步执行配置和全部的运行状态,会直接保存到json。TODO:优化单步执行的提示和总结,添加最后嫌疑子图的单测生成部分。