We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
trainer
1 parent 038e72f commit c71970cCopy full SHA for c71970c
docs/source-pytorch/debug/debugging_basic.rst
@@ -51,13 +51,13 @@ The :paramref:`~lightning.pytorch.trainer.trainer.Trainer.fast_dev_run` argument
51
52
.. code:: python
53
54
- Trainer(fast_dev_run=True)
+ trainer = Trainer(fast_dev_run=True)
55
56
To change how many batches to use, change the argument to an integer. Here we run 7 batches of each:
57
58
59
60
- Trainer(fast_dev_run=7)
+ trainer = Trainer(fast_dev_run=7)
61
62
63
.. note::
@@ -142,7 +142,7 @@ To turn off the autosummary use:
142
143
144
145
- Trainer(enable_model_summary=False)
+ trainer = Trainer(enable_model_summary=False)
146
147
----
148
0 commit comments