From 1cf2e228ba4b78167787aafc843aeb502955cc51 Mon Sep 17 00:00:00 2001 From: Jon Tamir Date: Tue, 8 Oct 2019 04:40:14 -0700 Subject: [PATCH] fix CONTRIBUTING link and silence checkpoint callback message (#325) --- README.md | 2 +- pytorch_lightning/trainer/trainer.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 675dc578..6cabdc17 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ Lightning sets up all the boilerplate state-of-the-art training for you so you c - [Lightning features](https://github.com/williamFalcon/pytorch-lightning#lightning-automates-all-of-the-following-each-is-also-configurable) - [Examples](https://github.com/williamFalcon/pytorch-lightning#examples) - [Tutorials](https://github.com/williamFalcon/pytorch-lightning#tutorials) -- [Contributing](https://github.com/williamFalcon/pytorch-lightning/blob/master/CONTRIBUTING.md) +- [Contributing](https://github.com/williamFalcon/pytorch-lightning/blob/master/.github/CONTRIBUTING.md) - [Bleeding edge install](https://github.com/williamFalcon/pytorch-lightning#bleeding-edge) - [Lightning Design Principles](https://github.com/williamFalcon/pytorch-lightning#lightning-design-principles) - [Asking for help](https://github.com/williamFalcon/pytorch-lightning#asking-for-help) diff --git a/pytorch_lightning/trainer/trainer.py b/pytorch_lightning/trainer/trainer.py index 26f109a7..d36ed26f 100644 --- a/pytorch_lightning/trainer/trainer.py +++ b/pytorch_lightning/trainer/trainer.py @@ -1462,6 +1462,5 @@ class Trainer(TrainerIO): # model checkpointing if self.proc_rank == 0 and self.checkpoint_callback is not None and not test: - print('save callback...') self.checkpoint_callback.on_epoch_end(epoch=self.current_epoch, logs=self.__training_tqdm_dict)