mirror of
https://github.com/wassname/pytorch-lightning.git
synced 2026-09-22 13:30:11 +08:00
8 lines
280 B
Python
8 lines
280 B
Python
import warnings
|
|
|
|
warnings.warn("`root_module` package has been renamed to `core` since v0.5.3"
|
|
" and will be removed in v0.8.0", DeprecationWarning)
|
|
|
|
from pytorch_lightning.core import ( # noqa: E402
|
|
decorators, grads, hooks, root_module, memory, model_saving)
|