TrainingBatchLoop¶
- class pytorch_lightning.loops.batch.TrainingBatchLoop[source]¶
Bases:
pytorch_lightning.loops.base.Loop
[List
[Union
[Dict
[int
,Dict
[str
,Any
]],Dict
[str
,Any
]]]]Runs over a single batch of data.
- advance(batch, batch_idx)[source]¶
Runs the train step together with optimization (if necessary) on the current batch split.
- connect(optimizer_loop=None, manual_loop=None)[source]¶
Optionally connect one or multiple loops to this one.
Linked loops should form a tree.
- Return type
- on_run_end()[source]¶
Hook to be called at the end of the run.
Its return argument is returned from
run
.
- property done: bool¶
Returns if all batch splits have been processed already.