Files
pytorch-lightning/pytorch_lightning/root_module/__init__.py
T
Jirka BorovecandNic Eggert 3be81cb54e test deprecated - model (#1074)
* 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>
2020-03-20 20:51:14 +01:00

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)