Skip to content
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

pp 策略调整后,模型转换,以便模型热启 #52927

Merged
merged 32 commits into from
Apr 26, 2023
Merged
Show file tree
Hide file tree
Changes from 30 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
b368fb6
polish
liuzhenhai93 Apr 14, 2023
afe4350
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
liuzhenhai93 Apr 17, 2023
3b61a5f
polish
liuzhenhai93 Apr 17, 2023
fbe735a
polish
liuzhenhai93 Apr 18, 2023
2b99dbc
polish
liuzhenhai93 Apr 18, 2023
1379b72
polish
liuzhenhai93 Apr 18, 2023
35cff08
polish
liuzhenhai93 Apr 18, 2023
f09475f
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
liuzhenhai93 Apr 19, 2023
8e2e048
polish
liuzhenhai93 Apr 19, 2023
414c2f8
polish
liuzhenhai93 Apr 19, 2023
e641d1f
polish
liuzhenhai93 Apr 20, 2023
e78e5a5
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
liuzhenhai93 Apr 20, 2023
abbdf55
polish
liuzhenhai93 Apr 20, 2023
de295a8
polish
liuzhenhai93 Apr 20, 2023
144e90f
polish
liuzhenhai93 Apr 20, 2023
8d368bc
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
liuzhenhai93 Apr 20, 2023
c69c3ac
polish
liuzhenhai93 Apr 20, 2023
546c2e6
polish
liuzhenhai93 Apr 21, 2023
e0ce22c
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
liuzhenhai93 Apr 21, 2023
28dbfc8
polish
liuzhenhai93 Apr 21, 2023
28b8c04
polish
liuzhenhai93 Apr 21, 2023
fe206f4
polish
liuzhenhai93 Apr 21, 2023
7bd4bb5
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
liuzhenhai93 Apr 21, 2023
121fcc2
polish
liuzhenhai93 Apr 21, 2023
1c6550a
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
liuzhenhai93 Apr 21, 2023
2366709
polish
liuzhenhai93 Apr 23, 2023
982bfb6
polish
liuzhenhai93 Apr 23, 2023
f2574f3
Merge branch 'develop' into load_recover_tensor_name
liuzhenhai93 Apr 24, 2023
644e1d7
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
liuzhenhai93 Apr 24, 2023
a55972d
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
liuzhenhai93 Apr 24, 2023
623e6b3
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
liuzhenhai93 Apr 25, 2023
11cd1da
polish
liuzhenhai93 Apr 25, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ def _segment_network_for_interleave(self, seg_method):
self.segment_parts = seg.do_segment()

logger.info(
"segment result:"
f"segment with method: {seg_method}; result: "
+ ", ".join(str(arg) for arg in self.segment_parts)
)

Expand Down Expand Up @@ -562,7 +562,7 @@ def _segment_network(self, seg_method):
self.segment_parts = seg.do_segment()

logger.info(
"segment result:"
f"segment with method: {seg_method}; result: "
+ ", ".join(str(arg) for arg in self.segment_parts)
)

Expand Down
Loading