Skip to content

Commit 89877fe

Browse files
Merge pull request #1634 from PyTorchLightning/remove_warning
Remove warning
2 parents acfb054 + f38b29c commit 89877fe

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
1414

1515
### Removed
1616

17+
- Removed Warning from trainer loop ([#1634](https://github.com/PyTorchLightning/pytorch-lightning/pull/1634))
18+
1719
### Fixed
1820

1921

pytorch_lightning/trainer/training_loop.py

-3
Original file line numberDiff line numberDiff line change
@@ -299,9 +299,6 @@ def has_arg(self, *args):
299299
"""Warning: this is just empty shell for code implemented in other class."""
300300

301301
def train(self):
302-
rank_zero_warn('Displayed epoch numbers in the progress bar start from "1" until v0.6.x,'
303-
' but will start from "0" in v0.8.0.', RuntimeWarning)
304-
305302
# get model
306303
model = self.get_model()
307304

0 commit comments

Comments
 (0)