Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/lightning/pytorch/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -389,6 +389,7 @@ def __init__(
self._add_instantiators()
self.before_instantiate_classes()
self.instantiate_classes()
self.after_instantiate_classes()

if self.subcommand is not None:
self._run_subcommand(self.subcommand)
Expand Down Expand Up @@ -560,6 +561,9 @@ def instantiate_classes(self) -> None:
self._add_configure_optimizers_method_to_model(self.subcommand)
self.trainer = self.instantiate_trainer()

def after_instantiate_classes(self) -> None:
"""Implement to run some code after instantiating the classes."""

def instantiate_trainer(self, **kwargs: Any) -> Trainer:
"""Instantiates the trainer.

Expand Down
Loading