-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loop Refactor 1/N - Training Loop (#7871)
Co-authored-by: Carlos Mocholi <carlossmocholi@gmail.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: tchaton <thomas@grid.ai> Co-authored-by: Justus Schock <justus.schock@rwth-aachen.de> Co-authored-by: Justus Schock <justus.schock@posteo.de> Co-authored-by: Ethan Harris <ewah1g13@soton.ac.uk> Co-authored-by: Jirka Borovec <Borda@users.noreply.github.com> Co-authored-by: Justus Schock <12886177+justusschock@users.noreply.github.com>
- Loading branch information
1 parent
560b197
commit 971908a
Showing
20 changed files
with
1,641 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Copyright The PyTorch Lightning team. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
from pytorch_lightning.loops.base import Loop # noqa: F401 | ||
from pytorch_lightning.loops.fit_loop import FitLoop # noqa: F401 | ||
from pytorch_lightning.loops.training_batch_loop import TrainingBatchLoop # noqa: F401 | ||
from pytorch_lightning.loops.training_epoch_loop import TrainingEpochLoop # noqa: F401 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
# Copyright The PyTorch Lightning team. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
from abc import ABC, abstractmethod | ||
from typing import Any, Optional | ||
from weakref import proxy | ||
|
||
from deprecate import void | ||
|
||
import pytorch_lightning as pl | ||
|
||
|
||
class Loop(ABC): | ||
""" | ||
Basic Loops interface. All classes derived from this must implement the following properties and methods: | ||
* :attr:`done` (property): Condition to break the loop | ||
* :attr:`reset` (method): Resets the internal state between multiple calls of :attr:`run` | ||
* :attr:`advance` (method): Implements one step of the loop | ||
This class implements the following loop structure: | ||
.. codeblock:: python | ||
on_run_start() | ||
while not done: | ||
on_advance_start() | ||
advance() | ||
on_advance_end() | ||
on_run_end() | ||
""" | ||
|
||
def __init__(self) -> None: | ||
self.iteration_count: int = 0 | ||
self.trainer: Optional['pl.Trainer'] = None | ||
|
||
@property | ||
@abstractmethod | ||
def done(self) -> bool: | ||
"""Property indicating when loop is finished""" | ||
|
||
@property | ||
def skip(self) -> bool: | ||
"""Determine whether to return immediately from the call to :meth:`run`.""" | ||
return False | ||
|
||
def connect(self, trainer: 'pl.Trainer', *args: Any, **kwargs: Any) -> None: | ||
"""Connects Loop with all the necessary things like connectors and accelerators.""" | ||
self.trainer = proxy(trainer) | ||
|
||
@abstractmethod | ||
def reset(self) -> None: | ||
"""Resets the internal state of the loop at the beginning of each call to :attr:`run`.""" | ||
|
||
def run(self, *args: Any, **kwargs: Any) -> Optional[Any]: | ||
""" | ||
The main entry point to the loop. | ||
Will frequently check the :attr:`done` condition and calls :attr:`advance` | ||
until :attr:`done` evaluates to ``True``. | ||
Returns: | ||
the output of :attr`on_run_end` (often outputs collected from each step of the loop) | ||
""" | ||
if self.skip: | ||
return | ||
|
||
self.reset() | ||
self.on_run_start(*args, **kwargs) | ||
|
||
while not self.done: | ||
try: | ||
self.on_advance_start(*args, **kwargs) | ||
self.advance(*args, **kwargs) | ||
self.on_advance_end() | ||
self.iteration_count += 1 | ||
except StopIteration: | ||
break | ||
|
||
output = self.on_run_end() | ||
self.teardown() | ||
return output | ||
|
||
def on_run_start(self, *args: Any, **kwargs: Any) -> None: | ||
""" | ||
Hook to be called as the first thing after entering :attr:`run` (except the state reset). | ||
Accepts all arguments passed to :attr:`run`. | ||
""" | ||
void(*args, **kwargs) | ||
|
||
def on_advance_start(self, *args: Any, **kwargs: Any) -> None: | ||
""" | ||
Hook to be called each time before :attr:`advance` is called. Accepts all arguments passed to :attr`run`. | ||
""" | ||
void(*args, **kwargs) | ||
|
||
@abstractmethod | ||
def advance(self, *args: Any, **kwargs: Any) -> None: | ||
"""Performs a single step. Accepts all arguments passed to :attr:`run`.""" | ||
|
||
def on_advance_end(self) -> None: | ||
"""Hook to be called each time after :attr:`advance` is called.""" | ||
|
||
def on_run_end(self) -> Any: | ||
"""Hook to be called at the end of the run. Its return argument is returned from :attr:`run`.""" | ||
|
||
def teardown(self) -> None: | ||
"""The very last method called inside :meth:`run`. Use to release memory etc.""" |
Oops, something went wrong.