lightning
BatchSizeFinder(find_train_batch_size=True, find_validation_batch_size=False, find_test_batch_size=False, find_predict_batch_size=False, mode='power', steps_per_trial=3, init_val=2, max_trials=25, batch_arg_name='batch_size')
¶
Bases: BatchSizeFinder
Batch size finder setting the proper model training status as the current one from lightning seems bugged. It also allows to skip some batch size finding steps.
Parameters:
-
find_train_batch_size
(
bool
, default:True
) –Whether to find the training batch size.
-
find_validation_batch_size
(
bool
, default:False
) –Whether to find the validation batch size.
-
find_test_batch_size
(
bool
, default:False
) –Whether to find the test batch size.
-
find_predict_batch_size
(
bool
, default:False
) –Whether to find the predict batch size.
-
mode
(
str
, default:'power'
) –The mode to use for batch size finding. See
pytorch_lightning.callbacks.BatchSizeFinder
for more details. -
steps_per_trial
(
int
, default:3
) –The number of steps per trial. See
pytorch_lightning.callbacks.BatchSizeFinder
for more details. -
init_val
(
int
, default:2
) –The initial value for batch size. See
pytorch_lightning.callbacks.BatchSizeFinder
for more details. -
max_trials
(
int
, default:25
) –The maximum number of trials. See
pytorch_lightning.callbacks.BatchSizeFinder
for more details. -
batch_arg_name
(
str
, default:'batch_size'
) –The name of the batch size argument. See
pytorch_lightning.callbacks.BatchSizeFinder
for more details.
Source code in quadra/callbacks/lightning.py
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
|
LightningTrainerBaseSetup(log_every_n_steps=1)
¶
Bases: Callback
Custom callback used to setup a lightning trainer with default options.
Parameters:
-
log_every_n_steps
(
int
, default:1
) –Default value for trainer.log_every_n_steps if the dataloader is too small.
Source code in quadra/callbacks/lightning.py
19 20 |
|
on_fit_start(trainer, pl_module)
¶
Called on every stage.
Source code in quadra/callbacks/lightning.py
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
|