From a327596b79929dbb71d44e5690fca8a500b2d408 Mon Sep 17 00:00:00 2001 From: William Falcon Date: Sat, 31 Aug 2019 03:18:16 -0400 Subject: [PATCH] add training loop docs --- README.md | 2 ++ docs/Trainer/index.md | 4 ++++ docs/index.md | 2 ++ 3 files changed, 8 insertions(+) diff --git a/README.md b/README.md index 70e128b5..67fffd1c 100644 --- a/README.md +++ b/README.md @@ -332,6 +332,8 @@ tensorboard --logdir /some/path - [Set validation check frequency within 1 training epoch](https://williamfalcon.github.io/pytorch-lightning/Trainer/Validation%20loop/#set-validation-check-frequency-within-1-training-epoch) - [Set the number of validation sanity steps](https://williamfalcon.github.io/pytorch-lightning/Trainer/Validation%20loop/#set-the-number-of-validation-sanity-steps) +###### Testing loop +- [Run test set](https://williamfalcon.github.io/pytorch-lightning/Trainer/Testing%20loop/) ## Demo ```bash diff --git a/docs/Trainer/index.md b/docs/Trainer/index.md index fdc89b53..c106af67 100644 --- a/docs/Trainer/index.md +++ b/docs/Trainer/index.md @@ -78,3 +78,7 @@ But of course the fun is in all the advanced things it can do: - [Set how much of the test set to check](https://williamfalcon.github.io/pytorch-lightning/Trainer/Validation%20loop/#set-how-much-of-the-test-set-to-check) - [Set validation check frequency within 1 training epoch](https://williamfalcon.github.io/pytorch-lightning/Trainer/Validation%20loop/#set-validation-check-frequency-within-1-training-epoch) - [Set the number of validation sanity steps](https://williamfalcon.github.io/pytorch-lightning/Trainer/Validation%20loop/#set-the-number-of-validation-sanity-steps) + + +**Testing loop** +- [Run test set](https://williamfalcon.github.io/pytorch-lightning/Trainer/Testing%20loop/) \ No newline at end of file diff --git a/docs/index.md b/docs/index.md index 9aa3b161..c163b0f4 100644 --- a/docs/index.md +++ b/docs/index.md @@ -137,3 +137,5 @@ Notice a few things about this flow: - [Set validation check frequency within 1 training epoch](https://williamfalcon.github.io/pytorch-lightning/Trainer/Validation%20loop/#set-validation-check-frequency-within-1-training-epoch) - [Set the number of validation sanity steps](https://williamfalcon.github.io/pytorch-lightning/Trainer/Validation%20loop/#set-the-number-of-validation-sanity-steps) +###### Testing loop +- [Run test set](https://williamfalcon.github.io/pytorch-lightning/Trainer/Testing%20loop/)