Merge pull request #1634 from PyTorchLightning/remove_warning

Remove warning
This commit is contained in:
William Falcon
2020-04-27 07:23:06 -04:00
committed by GitHub
2 changed files with 2 additions and 3 deletions
+2
View File
@@ -14,6 +14,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
### Removed
- Removed Warning from trainer loop ([#1634](https://github.com/PyTorchLightning/pytorch-lightning/pull/1634))
### Fixed
@@ -299,9 +299,6 @@ class TrainerTrainLoopMixin(ABC):
"""Warning: this is just empty shell for code implemented in other class."""
def train(self):
rank_zero_warn('Displayed epoch numbers in the progress bar start from "1" until v0.6.x,'
' but will start from "0" in v0.8.0.', RuntimeWarning)
# get model
model = self.get_model()