From d3afc8acd5306c7d2cb650ff81051bd34e1f82a3 Mon Sep 17 00:00:00 2001 From: William Falcon Date: Tue, 17 Sep 2019 09:53:31 -0400 Subject: [PATCH] updated docs --- docs/Trainer/Checkpointing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Trainer/Checkpointing.md b/docs/Trainer/Checkpointing.md index de99f958..be982334 100644 --- a/docs/Trainer/Checkpointing.md +++ b/docs/Trainer/Checkpointing.md @@ -8,7 +8,7 @@ To enable checkpointing, define the checkpoint callback and give it to the train from pytorch_lightning.callbacks import ModelCheckpoint checkpoint_callback = ModelCheckpoint( - filepath='/path/to/store/weights.ckpt', + filepath='/path/to/store/weights/', save_best_only=True, verbose=True, monitor='val_loss',