Add _gpus_arg_default in argparse_utils for backward compatibility (#7402)
This commit is contained in:
parent
94f6c3e160
commit
d9bdc56b6a
|
@ -3,3 +3,7 @@ from pytorch_lightning.utilities import rank_zero_deprecation
|
|||
rank_zero_deprecation("`argparse_utils` package has been renamed to `argparse` since v1.2 and will be removed in v1.4")
|
||||
|
||||
from pytorch_lightning.utilities.argparse import * # noqa: F403 E402 F401
|
||||
|
||||
# for backward compatibility with old checkpoints (versions < 1.2.0)
|
||||
# that need to be able to unpickle the function from the checkpoint
|
||||
from pytorch_lightning.utilities.argparse import _gpus_arg_default # noqa: E402 F401 # isort: skip
|
||||
|
|
Loading…
Reference in New Issue