11 lines
367 B
Python
11 lines
367 B
Python
"""
|
|
.. warning:: `pt_overrides` package has been renamed to `overrides` since v0.6.0 and will be removed in v0.8.0
|
|
"""
|
|
|
|
import warnings
|
|
|
|
warnings.warn("`pt_overrides` package has been renamed to `overrides` since v0.6.0"
|
|
" and will be removed in v0.8.0", DeprecationWarning)
|
|
|
|
from pytorch_lightning.overrides import override_data_parallel # noqa: E402
|