2020-08-20 02:03:22 +00:00
|
|
|
# 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.
|
|
|
|
|
2019-12-04 12:32:47 +00:00
|
|
|
import inspect
|
2019-12-04 15:57:32 +00:00
|
|
|
from abc import ABC, abstractmethod
|
|
|
|
|
2020-07-24 15:42:15 +00:00
|
|
|
from pytorch_lightning.core.datamodule import LightningDataModule
|
2019-11-27 03:39:18 +00:00
|
|
|
from pytorch_lightning.core.lightning import LightningModule
|
2019-10-22 01:16:51 +00:00
|
|
|
|
|
|
|
|
2019-12-04 15:57:32 +00:00
|
|
|
class TrainerModelHooksMixin(ABC):
|
2020-06-19 01:45:09 +00:00
|
|
|
def is_function_implemented(self, f_name, model=None):
|
|
|
|
if model is None:
|
|
|
|
model = self.get_model()
|
2019-10-22 01:16:51 +00:00
|
|
|
f_op = getattr(model, f_name, None)
|
|
|
|
return callable(f_op)
|
|
|
|
|
2019-12-04 12:32:47 +00:00
|
|
|
def has_arg(self, f_name, arg_name):
|
|
|
|
model = self.get_model()
|
|
|
|
f_op = getattr(model, f_name, None)
|
|
|
|
return arg_name in inspect.signature(f_op).parameters
|
2019-12-04 15:57:32 +00:00
|
|
|
|
|
|
|
@abstractmethod
|
2020-06-12 15:23:18 +00:00
|
|
|
def get_model(self) -> LightningModule:
|
2020-02-27 21:21:14 +00:00
|
|
|
"""Warning: this is just empty shell for code implemented in other class."""
|