mirror of
https://github.com/wassname/pytorch-lightning.git
synced 2026-09-21 13:20:08 +08:00
* pylint * model API * update test * formatting * disable logger * fix checking overwrite * fix test * typo * deprecated model * fix for DDP * drop Flake8 in GH actions * Update pytorch_lightning/trainer/evaluation_loop.py * fix imports Co-authored-by: Nic Eggert <nic@eggert.io>
10 lines
330 B
Python
10 lines
330 B
Python
"""
|
|
.. warning:: `root_module` package has been renamed to `core` since v0.6.0.
|
|
The deprecated package name will be removed in v0.8.0.
|
|
"""
|
|
|
|
import warnings
|
|
|
|
warnings.warn("`root_module` package has been renamed to `core` since v0.6.0."
|
|
" The deprecated package name will be removed in v0.8.0.", DeprecationWarning)
|