From 5cd8001240bc879b67f9c3befb42832376f1de72 Mon Sep 17 00:00:00 2001 From: fabio fumarola Date: Tue, 8 Nov 2022 14:29:30 +0100 Subject: [PATCH] Update docs for `seed_everything` in LightningCLI (#15308) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Carlos MocholĂ­ --- src/pytorch_lightning/cli.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pytorch_lightning/cli.py b/src/pytorch_lightning/cli.py index 301dfb9021..ca4796413a 100644 --- a/src/pytorch_lightning/cli.py +++ b/src/pytorch_lightning/cli.py @@ -294,9 +294,9 @@ class LightningCLI: this argument will not be configurable from a configuration file and will always be present for this particular CLI. Alternatively, configurable callbacks can be added as explained in :ref:`the CLI docs `. - seed_everything_default: Value for the :func:`~lightning_lite.utilities.seed.seed_everything` - seed argument. Set to True to automatically choose a valid seed. - Setting it to False will not call seed_everything. + seed_everything_default: Number for the :func:`~lightning_lite.utilities.seed.seed_everything` + seed value. Set to True to automatically choose a seed value. + Setting it to False will avoid calling ``seed_everything``. description: Description of the tool shown when running ``--help``. env_prefix: Prefix for environment variables. env_parse: Whether environment variable parsing is enabled.