From f91b131ba2f60d5c97a8a5e5f2bbf76ea5b35077 Mon Sep 17 00:00:00 2001 From: Justus Schock <12886177+justusschock@users.noreply.github.com> Date: Mon, 27 Apr 2020 11:41:03 +0200 Subject: [PATCH] Remove warning --- pytorch_lightning/trainer/training_loop.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/pytorch_lightning/trainer/training_loop.py b/pytorch_lightning/trainer/training_loop.py index 8697270cf3..37bac3d997 100644 --- a/pytorch_lightning/trainer/training_loop.py +++ b/pytorch_lightning/trainer/training_loop.py @@ -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()