You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source-pytorch/advanced/training_tricks.rst
+49-26Lines changed: 49 additions & 26 deletions
Original file line number
Diff line number
Diff line change
@@ -191,29 +191,52 @@ The algorithm in short works by:
191
191
Customizing Batch Size Finder
192
192
=============================
193
193
194
-
You can also customize the :class:`~pytorch_lightning.callbacks.batch_size_finder.BatchSizeFinder` callback to run at different epochs. This feature is useful while fine-tuning models since
195
-
you can't always use the same batch size after unfreezing the backbone.
194
+
1. You can also customize the :class:`~pytorch_lightning.callbacks.batch_size_finder.BatchSizeFinder` callback to run
195
+
at different epochs. This feature is useful while fine-tuning models since you can't always use the same batch size after
196
+
unfreezing the backbone.
196
197
197
198
.. code-block:: python
198
199
199
-
from pytorch_lightning.callbacks import BatchSizeFinder
200
+
from pytorch_lightning.callbacks import BatchSizeFinder
0 commit comments