This repository has been archived by the owner on Oct 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 212
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
34 changed files
with
126 additions
and
52 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -168,3 +168,4 @@ timit/ | |
urban8k_images/ | ||
__MACOSX | ||
*-v2.0.json | ||
cifar-10* |
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
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
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
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
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,72 @@ | ||
# 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 typing import Optional | ||
|
||
from pytorch_lightning.utilities.enums import LightningEnum | ||
|
||
|
||
class RunningStage(LightningEnum): | ||
"""Enum for the current running stage. | ||
This stage complements :class:`TrainerFn` by specifying the current running stage for each function. | ||
More than one running stage value can be set while a :class:`TrainerFn` is running: | ||
- ``TrainerFn.FITTING`` - ``RunningStage.{SANITY_CHECKING,TRAINING,VALIDATING}`` | ||
- ``TrainerFn.VALIDATING`` - ``RunningStage.VALIDATING`` | ||
- ``TrainerFn.TESTING`` - ``RunningStage.TESTING`` | ||
- ``TrainerFn.PREDICTING`` - ``RunningStage.PREDICTING`` | ||
- ``TrainerFn.SERVING`` - ``RunningStage.SERVING`` | ||
- ``TrainerFn.TUNING`` - ``RunningStage.{TUNING,SANITY_CHECKING,TRAINING,VALIDATING}`` | ||
""" | ||
|
||
TRAINING = "train" | ||
SANITY_CHECKING = "sanity_check" | ||
VALIDATING = "validate" | ||
TESTING = "test" | ||
PREDICTING = "predict" | ||
SERVING = "serve" | ||
TUNING = "tune" | ||
|
||
@property | ||
def evaluating(self) -> bool: | ||
return self in (self.VALIDATING, self.TESTING) | ||
|
||
@property | ||
def dataloader_prefix(self) -> Optional[str]: | ||
if self in (self.SANITY_CHECKING, self.TUNING): | ||
return None | ||
if self == self.VALIDATING: | ||
return "val" | ||
return self.value | ||
|
||
|
||
_STAGES_PREFIX = { | ||
RunningStage.TRAINING: "train", | ||
RunningStage.TESTING: "test", | ||
RunningStage.VALIDATING: "val", | ||
RunningStage.PREDICTING: "predict", | ||
RunningStage.SERVING: "serve", | ||
} | ||
|
||
_STAGES_PREFIX_VALUES = {"train", "test", "val", "predict", "serve"} | ||
|
||
_RUNNING_STAGE_MAPPING = { | ||
RunningStage.TRAINING: RunningStage.TRAINING, | ||
RunningStage.SANITY_CHECKING: RunningStage.VALIDATING, | ||
RunningStage.VALIDATING: RunningStage.VALIDATING, | ||
RunningStage.TESTING: RunningStage.TESTING, | ||
RunningStage.PREDICTING: RunningStage.PREDICTING, | ||
RunningStage.SERVING: RunningStage.SERVING, | ||
RunningStage.TUNING: RunningStage.TUNING, | ||
} |
Oops, something went wrong.