File size: 2,556 Bytes
5ccd75a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | # Copyright 2020 MONAI Consortium
# 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 TYPE_CHECKING
from monai.engines.evaluator import Evaluator
from monai.utils import exact_version, optional_import
Events, _ = optional_import("ignite.engine", "0.3.0", exact_version, "Events")
if TYPE_CHECKING:
from ignite.engine import Engine
else:
Engine, _ = optional_import("ignite.engine", "0.3.0", exact_version, "Engine")
class ValidationHandler:
"""
Attach validator to the trainer engine in Ignite.
It can support to execute validation every N epochs or every N iterations.
"""
def __init__(self, validator: Evaluator, interval: int, epoch_level: bool = True) -> None:
"""
Args:
validator: run the validator when trigger validation, suppose to be Evaluator.
interval: do validation every N epochs or every N iterations during training.
epoch_level: execute validation every N epochs or N iterations.
`True` is epoch level, `False` is iteration level.
Raises:
TypeError: When ``validator`` is not a ``monai.engines.evaluator.Evaluator``.
"""
if not isinstance(validator, Evaluator):
raise TypeError(f"validator must be a monai.engines.evaluator.Evaluator but is {type(validator).__name__}.")
self.validator = validator
self.interval = interval
self.epoch_level = epoch_level
def attach(self, engine: Engine) -> None:
"""
Args:
engine: Ignite Engine, it can be a trainer, validator or evaluator.
"""
if self.epoch_level:
engine.add_event_handler(Events.EPOCH_COMPLETED(every=self.interval), self)
else:
engine.add_event_handler(Events.ITERATION_COMPLETED(every=self.interval), self)
def __call__(self, engine: Engine) -> None:
"""
Args:
engine: Ignite Engine, it can be a trainer, validator or evaluator.
"""
self.validator.run(engine.state.epoch)
|