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

Move out sequential and replace save_dygraph and load_dygraph #48709

Merged
merged 23 commits into from
Jan 3, 2023
Merged
Show file tree
Hide file tree
Changes from 19 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
c3eb0d3
remove fluid.save_dygraph and fluid.load_dygraph use paddle.save and …
GGBond8488 Nov 30, 2022
61e792e
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
GGBond8488 Nov 30, 2022
6ad9150
fix conflicts
GGBond8488 Dec 1, 2022
f6d61c8
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
GGBond8488 Dec 1, 2022
29ccab2
move Sequential to paddle.nn
GGBond8488 Dec 5, 2022
3360943
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
GGBond8488 Dec 5, 2022
375fb00
modify convert_call_func.py Sequential reference
GGBond8488 Dec 5, 2022
997a661
merge remove save_dygraph
GGBond8488 Dec 5, 2022
b65539e
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
GGBond8488 Dec 5, 2022
62f29ba
remove related unitests
GGBond8488 Dec 6, 2022
c5d5346
merge develop
GGBond8488 Dec 28, 2022
58b7931
remove fluid.dynamic.Sequntial
GGBond8488 Dec 28, 2022
36907df
test remove conver_call_func
GGBond8488 Dec 28, 2022
397b900
fix conflicts
GGBond8488 Dec 28, 2022
9f38605
fix typro
GGBond8488 Dec 28, 2022
43a7606
fix unitests
GGBond8488 Dec 29, 2022
b76e100
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
GGBond8488 Dec 29, 2022
56b35c7
fix sample_code
GGBond8488 Dec 29, 2022
27f3888
fix unitest
GGBond8488 Dec 29, 2022
b85783d
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
GGBond8488 Dec 30, 2022
72c02e1
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
GGBond8488 Dec 30, 2022
0e6a699
fix __init__
GGBond8488 Dec 30, 2022
4c5fd75
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
GGBond8488 Dec 30, 2022
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
1 change: 0 additions & 1 deletion python/paddle/fluid/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@
from .dygraph.layers import *
from .dygraph.base import enable_dygraph, disable_dygraph
from .io import save, load, load_program_state, set_program_state
from .dygraph.checkpoint import save_dygraph, load_dygraph
from .dygraph.varbase_patch_methods import monkey_patch_varbase
from . import generator
from .core import _cuda_synchronize
Expand Down
7 changes: 0 additions & 7 deletions python/paddle/fluid/dygraph/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@
from . import layers
from .layers import *

from . import container
from .container import *

from . import nn
from .nn import *

Expand All @@ -30,8 +27,6 @@
from . import parallel
from .parallel import *

from . import checkpoint
from .checkpoint import *

from . import learning_rate_scheduler
from .learning_rate_scheduler import *
Expand All @@ -44,9 +39,7 @@
__all__ = []
__all__ += layers.__all__
__all__ += base.__all__
__all__ += container.__all__
__all__ += nn.__all__
__all__ += parallel.__all__
__all__ += checkpoint.__all__
__all__ += learning_rate_scheduler.__all__
__all__ += amp.__all__
320 changes: 0 additions & 320 deletions python/paddle/fluid/dygraph/checkpoint.py

This file was deleted.

Loading