ManualOptimization¶
- class pytorch_lightning.loops.optimization.ManualOptimization[source]¶
Bases:
pytorch_lightning.loops.base.Loop
[Dict
[str
,Any
]]A special loop implementing what is known in Lightning as Manual Optimization where the optimization happens entirely in the
training_step()
and therefore the user is responsible for back-propagating gradients and making calls to the optimizers.This loop is a trivial case because it performs only a single iteration (calling directly into the module’s
training_step()
) and passing through the output(s).- output_result_cls¶
alias of
pytorch_lightning.loops.optimization.manual_loop.ManualResult
- on_run_end()[source]¶
Returns the result of this loop, i.e., the post-processed outputs from the training step.
- on_run_start(*_, **__)[source]¶
Hook to be called as the first thing after entering
run
(except the state reset).Accepts all arguments passed to
run
.- Return type