Clarify logger flag (#7190)
* Clarify logger flag Clarify behavior of boolean values on the logger flag for Trainer. * Update docs/source/common/trainer.rst * doc Co-authored-by: Ethan Harris <ewah1g13@soton.ac.uk> Co-authored-by: Rohit Gupta <rohitgr1998@gmail.com>
This commit is contained in:
parent
6da747e775
commit
f135debb6a
|
@ -870,7 +870,7 @@ logger
|
|||
|
||||
|
|
||||
|
||||
:doc:`Logger <../common/loggers>` (or iterable collection of loggers) for experiment tracking.
|
||||
:doc:`Logger <../common/loggers>` (or iterable collection of loggers) for experiment tracking. A ``True`` value uses the default ``TensorBoardLogger`` shown below. ``False`` will disable logging.
|
||||
|
||||
.. testcode::
|
||||
|
||||
|
|
|
@ -212,7 +212,8 @@ class Trainer(
|
|||
|
||||
limit_predict_batches: How much of prediction dataset to check (float = fraction, int = num_batches)
|
||||
|
||||
logger: Logger (or iterable collection of loggers) for experiment tracking.
|
||||
logger: Logger (or iterable collection of loggers) for experiment tracking. A ``True`` value uses
|
||||
the default ``TensorBoardLogger``. ``False`` will disable logging.
|
||||
|
||||
log_gpu_memory: None, 'min_max', 'all'. Might slow performance
|
||||
|
||||
|
|
Loading…
Reference in New Issue